@import url('https://fonts.googleapis.com/css2?family=Nunito+Sans:ital,opsz,wght@0,6..12,300;0,6..12,400;0,6..12,600;0,6..12,700;1,6..12,400&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Nunito:ital,wght@0,400;0,500;0,600;0,700;1,400&family=Nunito+Sans:ital,opsz,wght@0,6..12,300;0,6..12,400;0,6..12,600;0,6..12,700;1,6..12,400&display=swap');

:root{
  --bs-body-font-family:'Nunito Sans', sans-serif;
  --space-section:1.5rem;
  --space-block:24px;

  --radius-lg:20px;
  --radius-md:16px;
  --bg-primary:#00295C;
  --bg-secondary:#004E91;

}

body{
  overflow-x:hidden;
}
img{
  max-width:100%;
  height:auto;
  display:block;
}

section:not(.hero-section){
  overflow:hidden;
}
h1, h2, h3, h4, h5, p{
  word-break:break-word;
}
.top-bar{
  background-color:var(--bg-secondary);
  color:#fff;
  position:relative;
  z-index:1600;
}

.top-bar .container-fluid{
  position:relative;
  overflow:visible;
}
.social-icon-circle{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  width:30px;
  height:30px;
  background-color:#053F70;
  color:white !important;
  border-radius:50%;
  text-decoration:none;
  transition:all 0.2s ease;
  flex-shrink:0;
}

.social-icon-circle img{
  width:16px;
  height:16px;
  object-fit:contain;
  display:block;
  filter:brightness(0) invert(1);
}

.social-icon-circle:hover{
  background-color:#fff;
  color:#053F70 !important;
}

.social-icon-circle:hover img{
  filter:brightness(0) saturate(100%) invert(18%) sepia(70%) saturate(700%) hue-rotate(190deg) brightness(80%);
}

.social-icon-circle:hover svg path{
  fill:#053F70;
}

.social-icon-circle.no-hover:hover{
  background-color:#053F70 !important;
  color:white !important;
}
.social-icon-circle.no-hover:hover img{
  filter:brightness(0) invert(1) !important;
}
.social-icon-circle.no-hover:hover svg path{
  fill:white !important;
}

.sticky-nav-bar{
  background-color:var(--bg-primary) !important;
  position:sticky;
  top:0;
  z-index:1400;
}

.sticky-nav-bar .nav-link{
  color:#fff !important;
}

.sticky-nav-bar .navbar-nav .nav-link{
  font-family:'Nunito Sans', sans-serif;
  font-size:16px;
  font-weight:400;
  font-optical-sizing:auto;
  line-height:1;
  letter-spacing:0;
  padding-left:32px;
  padding-right:32px;
  display:inline-flex;
  align-items:center;
  gap:5px;
}

.nav-action-btn{
  overflow:visible;
}

.nav-action-btn .nav-action-icon{
  display:block;
  width:16px !important;
  height:16px !important;
  max-width:16px;
  max-height:16px;
  aspect-ratio:auto;
  object-fit:contain !important;
  border-radius:0 !important;
  flex:0 0 auto;
}

.top-mega-nav{
  position:static;
}

.top-mega-nav .top-mega-item{
  position:static;
}

.top-mega-nav .nav-link{
  position:relative;
  font-weight:800;
  letter-spacing:0;
}

.top-mega-nav .nav-link::after{
  content:"";
  position:absolute;
  left:1rem;
  right:1rem;
  bottom:.2rem;
  height:2px;
  border-radius:999px;
  background:#fff;
  opacity:0;
  transform:scaleX(.45);
  transition:opacity .18s ease, transform .18s ease;
}

.nav-dropdown-icon{
  font-size:13px;
  opacity:1;
  line-height:1;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  transition:transform .2s ease;
}

.top-mega-item.is-open > .nav-link .nav-dropdown-icon{
  transform:rotate(180deg);
}

.top-mega-nav .top-mega-item:hover > .nav-link::after,
.top-mega-nav .top-mega-item.is-open > .nav-link::after{
  opacity:1;
  transform:scaleX(1);
}

.top-mega-panel{
  position:fixed;
  left:0;
  right:0;
  top:calc(var(--top-mega-offset, 150px) - 1px);
  z-index:99990;
  background:#fff;
  color:#111827;
  border-top:1px solid rgba(255,255,255,.16);
  box-shadow:none;
  opacity:0;
  visibility:hidden;
  pointer-events:none;
  transform:translateY(14px);
  transition:opacity .2s ease, transform .2s ease, visibility .2s ease;
}

.top-mega-panel *{
  pointer-events:auto;
}

.top-mega-item.is-open > .top-mega-panel,
.top-mega-item:hover > .top-mega-panel{
  opacity:1;
  visibility:visible;
  pointer-events:auto;
  transform:translateY(0);
}

.top-mega-panel__inner{
  display:grid;
  grid-template-columns:repeat(4, minmax(0, 1fr));
  gap:clamp(28px, 4vw, 64px);
  width:min(1320px, 100%);
  margin:0 auto;
  padding:34px clamp(20px, 4vw, 56px) 42px;
}

.top-mega-panel--single{
  left:var(--top-mega-single-left, 16px);
  right:auto;
  width:220px;
  border-top:0;
  border:1px solid rgba(15,23,42,.08);
  border-radius:0 0 12px 12px;
  box-shadow:none;
}

.top-mega-panel--single .top-mega-panel__inner{
  display:block;
  width:100%;
  margin:0;
  padding:10px;
}

.top-mega-panel--single .top-mega-col a{
  min-height:38px;
  padding:9px 12px;
  border-radius:8px;
  color:#4b5563;
  font-size:14px;
  font-weight:500;
  line-height:1.25;
}

.top-mega-panel--single .top-mega-col a:hover,
.top-mega-panel--single .top-mega-col a:focus{
  background:#f3f6fa;
  color:var(--bg-primary);
  transform:none;
}

.top-mega-col h6{
  margin:0 0 18px;
  color:#111827;
  font-size:15px;
  font-weight:900;
  text-transform:uppercase;
}

.top-mega-col a{
  display:block;
  width:100%;
  max-width:100%;
  padding:7px 0;
  color:#6b7280;
  font-size:18px;
  font-weight:500;
  line-height:1.35;
  text-decoration:none;
  transition:color .16s ease, transform .16s ease;
}

.top-mega-col a:hover,
.top-mega-col a:focus{
  color:var(--bg-primary);
  transform:translateX(4px);
}

@media (max-width: 991.98px){
  .top-mega-nav{
    gap:4px;
    padding:10px 0;
  }

  .top-mega-nav .top-mega-item{
    width:100%;
  }

  .top-mega-nav .nav-link{
    display:flex;
    align-items:center;
    justify-content:center;
    min-height:44px;
    border-radius:12px;
  }

  .top-mega-nav .top-mega-item.is-open > .nav-link{
    background:rgba(255,255,255,.1);
  }

  .top-mega-nav .nav-link::after{
    display:none;
  }

  .top-mega-panel{
    position:static;
    display:none;
    margin:6px 12px 12px;
    border:1px solid rgba(255,255,255,.16);
    border-radius:16px;
    background:rgba(255,255,255,.08);
    box-shadow:none;
    color:#fff;
    opacity:1;
    visibility:visible;
    pointer-events:auto;
    transform:none;
    transition:none;
    overflow:hidden;
  }

  .top-mega-item.is-open > .top-mega-panel,
  .top-mega-item:hover > .top-mega-panel{
    display:block;
  }

  .top-mega-panel__inner{
    grid-template-columns:1fr;
    gap:14px;
    padding:16px;
  }

  .top-mega-panel--single{
    left:auto;
    width:auto;
    border-radius:16px;
  }

  .top-mega-panel--single .top-mega-panel__inner{
    padding:16px;
  }

  .top-mega-col{
    padding-bottom:12px;
    border-bottom:1px solid rgba(255,255,255,.12);
  }

  .top-mega-col:last-child{
    padding-bottom:0;
    border-bottom:0;
  }

  .top-mega-col h6{
    margin-bottom:8px;
    color:#fff;
    font-size:13px;
  }

  .top-mega-col a{
    width:100%;
    color:rgba(255,255,255,.78);
    font-size:15px;
  }

  .top-mega-panel--single .top-mega-col a{
    font-size:15px;
    font-weight:500;
  }

  .top-mega-col a:hover,
  .top-mega-col a:focus{
    color:#fff;
    transform:none;
  }
}

.sub-header{
  background-color:var(--bg-primary);
  color:#fff;
  position:relative;
  overflow:visible;
}

.search-input{
  border:1px solid #EEEEEE;
  border-radius:8px !important;
}

@media (max-width: 576px){

  .navbar-brand img{
    height:32px !important;
  }

  .navbar .d-flex a{
    width:30px !important;
    height:30px !important;
  }

  .navbar .d-flex img{
    width:14px !important;
  }

  .navbar .d-flex .dropdown button img,
  .navbar .d-flex .dropdown-menu img{
    width:21px !important;
    height:14px !important;
    border-radius:0 !important;
    object-fit:cover;
  }
}
.img-cover{
  width:100%;
  height:100%;
  object-fit:cover;
}
.ratio-hero{
  aspect-ratio:4 / 3;
}
@media (min-width: 576px){
  .ratio-hero{
    aspect-ratio:5 / 3;
  }
}
@media (min-width: 768px){
  .ratio-hero{
    aspect-ratio:16 / 9;
  }
}
@media (min-width: 992px){
  .ratio-hero{
    aspect-ratio:16 / 7;
  }
}
.hero-section h1{
  font-size:20px;
  line-height:1.3;
}

.hero-section p{
  font-size:13px;
}

.hero-section button{
  font-size:13px;
  padding:6px 14px;
}
@media (min-width: 576px){
  .hero-section h1{
    font-size:24px;
  }
}
@media (min-width: 768px){
  .hero-section h1{
    font-size:28px;
  }

  .hero-section p{
    font-size:14px;
  }
}
@media (min-width: 992px){
  .hero-section h1{
    font-size:34px;
  }
}
@media (min-width: 1200px){
  .hero-section h1{
    font-size:70px;
  }
}

.ratio-card{
  aspect-ratio:1 / 1;
}

.ratio-blog{
  aspect-ratio:4 / 3;
}
.hover-zoom{
  transition:transform .35s ease;
}

.hover-zoom:hover{
  transform:scale(1.04);
}
.hero-section .position-absolute{
  width:100%;
  padding:0 12px;
}
@media (max-width: 576px){
  .hero-section h1{
    font-size:18px !important;
  }

  .hero-section p{
    font-size:12px;
  }

  .hero-section button{
    font-size:12px;
    padding:5px 12px;
  }
}
@media (min-width: 768px){
  .hero-section .position-absolute{
    padding:0 40px;
  }
}
@media (max-width: 576px){
  .category-section small{
    font-size:11px;
  }
}
@media (max-width: 768px){
  .category-section .swiper-slide{
    justify-content:center;
  }
}
.card-clean{
  border:0;
  border-radius:var(--radius-md);
  overflow:hidden;
}

.swiper-button-prev::after,
.swiper-button-next::after{
  display:none;
}

.swiper-navigation-icon{
  display:none;
}
.category-prev::after,
.category-next::after{
  display:none;
}
.category-prev,
.category-next{
  position:absolute;
  z-index:30;
  /* resim aspect-ratio 4/5 → slide genişliğinin %62.5'i kadar yüksek;
     merkezi = %62.5 / 2 = %31.25 — swiper içinde width'e göre % çalışır */
  top:31.25%;

  width:32px;
  height:32px;

  background:#fff;
  border:1px solid #F2F2F2;
  border-radius:50%;

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

.category-prev{
  left:0;
  transform:translate(-50%, -50%);
}

.category-next{
  right:0;
  transform:translate(50%, -50%);
}
.category-prev i,
.category-next i{
  font-size:16px;
  color:#00295C;
}
.category-prev.swiper-button-disabled,
.category-next.swiper-button-disabled{
  opacity:0.5;
  cursor:auto;
  pointer-events:none;
}
@media (min-width: 576px){
  .category-prev,
  .category-next{
    width:36px;
    height:36px;
  }
}
@media (min-width: 768px){
  .category-prev,
  .category-next{
    width:40px;
    height:40px;
  }
  .category-prev i,
  .category-next i{
    font-size:18px;
  }
}
@media (min-width: 992px){
  .category-prev,
  .category-next{
    width:42px;
    height:42px;
  }
  .category-prev i,
  .category-next i{
    font-size:20px;
  }
}
@media (min-width: 1200px){
  .category-prev,
  .category-next{
    width:46px;
    height:46px;
  }
}
@media (min-width: 1400px){
  .category-prev,
  .category-next{
    width:50px;
    height:50px;
  }
}
@media (max-width: 768px){

  .category-prev,
  .category-next{
    display:none !important;
  }
}

.category-card{
  position:relative;
  border-radius:16px;
  overflow:hidden;
}

.category-card img{
  width:100%;
  height:260px;
  object-fit:cover;
  display:block;
}

.category-card span{
  position:absolute;
  bottom:10px;
  left:50%;
  transform:translateX(-50%);
  background:#ffffffcc;
  padding:6px 16px;
  border-radius:12px;
  font-size:14px;
}
.featuredCategorySwiper{
  position:relative;
  padding:0 2px 8px;
  overflow:hidden;
}

.featured-category-section .featuredCategorySwiper .swiper-slide{
  height:auto;
  display:flex;
  justify-content:center;
  min-width:0;
}

.featured-card{
  width:100%;
  aspect-ratio:2 / 3;
  border-radius:16px;
  overflow:hidden;
  position:relative;
  transition:transform 0.3s ease;
  cursor:pointer;
}
.category-list-section .featured-card{
  width:100%;
  height:100%;
  object-fit:cover;
}
.featured-card::after{
  content:"";
  position:absolute;
  inset:0;
  background:rgba(0, 0, 0, 0.20);
  transition:0.3s;
  z-index:1;
}

.featured-card img{
  width:100%;
  height:100%;
  object-fit:cover;
}
.featured-card:hover{
  transform:translateY(-6px);
}
.featured-card:hover::after{
  background:rgba(0, 0, 0, 0.3);
}

.featured-label{
  border:none;
  position:absolute;
  bottom:16px;
  left:50%;
  transform:translateX(-50%);
  background:rgba(255, 255, 255, 0.80);
  backdrop-filter:blur(6px);
  padding:0 24px;
  height:44px;
  line-height:44px;
  border-radius:12px;
  font-size:20px;
  font-weight:500;
  z-index:2;
  transition:0.3s;
  width:calc(100% - 32px);
  max-width:300px;
  display:block;
  text-align:center;
  text-decoration:none;
  color:#000000;
  white-space:nowrap;
  overflow:hidden;
  text-overflow:ellipsis;
}
.featured-card:hover .featured-label{
  background:#053F70;
  color:#fff;
}

.featured-category-section .featured-card{
  max-width:300px;
  aspect-ratio:3 / 4;
}

@media (min-width: 1200px){
  .featured-category-section .featured-card{
    width:100%;
    max-width:300px;
  }
}

@media (min-width: 1400px){
  .featured-category-section .featured-card{
    max-width:340px;
  }
}

@media (max-width: 1199.98px){
  .featured-category-section .featured-card{
    max-width:260px;
  }
}

@media (max-width: 991.98px){
  .featured-category-section .featured-card{
    max-width:240px;
  }
}

@media (max-width: 767.98px){
  .featured-category-section .featured-card{
    max-width:230px;
  }
}

@media (max-width: 575.98px){
  .featured-category-section{
    padding-top:28px !important;
    padding-bottom:30px !important;
  }

  .featured-category-section .section-title{
    margin-bottom:18px !important;
    font-size:24px;
    line-height:1.15;
  }

  .featuredCategorySwiper{
    padding-bottom:4px;
  }

  .featured-category-section .featured-card{
    max-width:none;
    aspect-ratio:3 / 4;
    border-radius:12px;
  }

  .featured-label{
    bottom:8px;
    height:36px;
    line-height:36px;
    padding:0 16px;
    border-radius:10px;
    font-size:15px;
  }

  .featured-nav{
    display:none;
  }

  .product-tabs{
    width:100%;
    max-width:100%;
    border-radius:50px;
    flex-wrap:nowrap;
    overflow-x:auto;
    justify-content:flex-start;
    scrollbar-width:none;
    -ms-overflow-style:none;
  }

  .product-tabs::-webkit-scrollbar{
    display:none;
  }

  .product-tabs .tab-btn{
    white-space:nowrap;
    flex-shrink:0;
    font-size:13px;
    padding:8px 14px;
  }
}
.featured-nav{
  display:flex;
  gap:8px;
}

.featured-prev,
.featured-next{
  width:36px;
  height:36px;
  background:#fff;
  border-radius:50%;
  display:flex;
  align-items:center;
  justify-content:center;
  cursor:pointer;
}

.section-title{
  font-size:36px;
}
.section-title,
.fw-semibold {
  font-family: 'Nunito Sans', sans-serif !important;
}
.blog-img {
    border-radius: 16px !important;
    overflow: hidden;
}
#testimonial-prev,
#testimonial-next {
    width: 56px !important;
    height: 56px !important;
    min-width: 56px !important;
    padding: 0 !important;
    border-radius: 50% !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
}
.product-tabs{
  gap:8px;
  background:#f3f3f3;
  padding:6px;
  border-radius:50px;
  width:fit-content;
  margin:0 auto;
}

.tab-btn{
  border:none;
  padding:8px 16px;
  border-radius:30px;
  background:transparent;
  font-size:14px;
  cursor:pointer;
  transition:0.2s;
}

.tab-btn.active{
  background:#fff;
  box-shadow:none;
}
.tab-content{
  display:none;
}

.tab-content.active{
  display:block;
}
.product-card{
  transition:all 0.35s ease;
  position:relative;
  overflow:hidden;
  border-radius:16px;
  cursor:pointer;
  padding:12px;
  color:#1F1F1F;
}

.product-card:hover{
  transform:translateY(-6px) scale(1.01);
  box-shadow:none;
}
.product-card::after{
  pointer-events:none;
}
.product-card::after{
  content:"";
  position:absolute;
  inset:0;
  background:linear-gradient(120deg,
      transparent 40%,
      rgba(0, 41, 92, 0.08),
      transparent 60%);
  opacity:0;
  transition:opacity 0.4s ease;
  pointer-events:none;
  z-index:1;
}
.product-card:hover::after{
  opacity:1;
}
@media (max-width: 576px){
  .product-card{
    padding:8px;
  }

  .product-title{
    font-size:12px;
  }
}
.product-image{
  border-radius:16px;
  overflow:hidden;
  aspect-ratio:1/1;
  position:relative;
  z-index:2;
}

.product-image img{
  width:100%;
  height:100%;
  object-fit:cover;
}
.color-swatches{
  display:flex;
  gap:6px;
  margin-bottom:10px;
  margin-top:10px;
  position:relative;
  z-index:8;
}

.swatch{
  width:40px;
  height:40px;
  border-radius:8px;
  overflow:hidden;
  border:2px solid transparent;
  outline:1.5px solid #ddd;
  cursor:pointer;
  transition:outline-color 0.2s, border-color 0.2s;
  flex-shrink:0;
  position:relative;
  z-index:9;
}

.swatch img{
  width:100%;
  height:100%;
  object-fit:cover;
  object-position:top center;
  display:block;
}

.swatch:hover, .swatch.active{
  outline-color:#888;
  border-color:#fff;
}
.product-title{
  font-size:18px;
  color:#1F1F1F;
  font-weight:400;
  margin-bottom:0px !important;
}
.product-rating{
  font-size:12px;
  color:#f5a623;
  margin-bottom:6px;
}
.product-bottom{
  display:flex;
  justify-content:space-between;
  align-items:center;
}

.product-bottom .price{
  font-size:14px;
  font-weight:400;
  color:#1F1F1F;
  display:flex;
  flex-direction:row;
  align-items:center;
  flex-wrap:nowrap;
  gap:4px;
  min-width:0;
}

.product-bottom .price .price-amounts{
  display:flex;
  flex-direction:column;
  align-items:flex-start;
  gap:0;
  flex-shrink:1;
  min-width:0;
}

.product-bottom .price .price-current{
  display:flex;
  align-items:center;
  gap:6px;
  flex-wrap:nowrap;
}

.product-bottom .price .price-amounts .price-label{
  white-space:nowrap;
  flex-shrink:0;
}

.product-bottom .price .price-amounts del{
  display:block;
  font-size:12px !important;
  line-height:1;
  padding:0;
  margin:0 0 -4px 0;
}

.product-bottom .price .price-amounts del.price-del-hidden{
  visibility:hidden;
}

.product-bottom .price .price-label{
  white-space:nowrap;
  flex-shrink:0;
}

.product-bottom .price strong{
  font-size:20px !important;
  font-weight:bold !important;
  color:#1F1F1F;
}

@media (max-width: 1199px){
  .product-bottom .price{
    font-size:11px;
    gap:3px;
  }
  .product-bottom .price strong{
    font-size:16px !important;
  }
  .product-bottom .price .price-amounts del{
    font-size:10px !important;
    margin-bottom:-1px;
  }
  .product-bottom .price .price-amounts{
    gap:0;
  }
  .product-bottom .price .price-current{
    gap:3px;
  }
  .product-bottom .price .price-label,
  .product-bottom .price .price-amounts .price-label{
    font-size:13px !important;
  }
}

@media (max-width: 767px){
  .product-bottom{
    flex-wrap:nowrap;
    gap:4px;
    align-items:center;
  }
  .product-bottom .price{
    font-size:9px;
    gap:2px;
    flex:1 1 0;
    min-width:0;
  }
  .product-bottom .price strong{
    font-size:16px !important;
  }
  .product-bottom .price .price-amounts del{
    font-size:9px !important;
    margin-bottom:-1px;
  }
  .product-bottom .price .price-amounts{
    gap:0;
    min-width:0;
  }
  .product-bottom .price .price-current{
    gap:2px;
    min-width:0;
  }
  .product-bottom .price .price-label,
  .product-bottom .price .price-amounts .price-label{
    font-size:11px !important;
  }
}
.actions{
  gap:6px;
}

.icon-btn{
  background:#fff;
  width:50px !important;
  height:50px !important;
  border-radius:12px !important;
  cursor:pointer;
  color:#374957;

  display:flex;
  align-items:center;
  justify-content:center;

  z-index:2;
  transition:all 0.25s ease;

  border:none;
  box-shadow:none;
}
.icon-btn:hover{
  background:#053F70 !important;
  border-color:#053F70 !important;
  color:#fff;
  transform:translateY(-2px) scale(1.1);
  box-shadow:none;
}

.icon-btn img{
  width:16px;
  height:16px;
  object-fit:contain;
  transition:0.25s;
}
.icon-btn:hover img{
  filter:brightness(0) invert(1);
}

@media (max-width: 767px){
  .actions{
    gap:4px;
  }

  .icon-btn{
    width:20px !important;
    height:20px !important;
    border-radius:6px !important;
  }

  .icon-btn img{
    width:8px;
    height:8px;
  }

  .icon-btn i{
    font-size:8px;
  }
}

@media (max-width: 768px){
  .section-title{
    font-size:20px;
  }

  .blog-section h2.fw-semibold{
    font-size:16px;
  }

  .product-title{
    font-size:13px;
  }

  .price{
    font-size:12px;
    margin-top: 0;
  }
}

@media (max-width: 768px){
  .products-section .product-tabs{
    width:100%;
    justify-content:flex-start;
    overflow-x:auto;
    flex-wrap:nowrap;
    border-radius:18px;
    -webkit-overflow-scrolling:touch;
    scrollbar-width:none;
    padding:6px 8px;
  }

  .products-section .product-tabs::-webkit-scrollbar{
    display:none;
  }

  .products-section .tab-btn{
    flex:0 0 auto;
    white-space:nowrap;
  }

  .products-section .product-card .product-bottom{
    gap:10px;
    align-items:center;
  }

  .products-section .product-card .actions{
    flex-direction:row !important;
    flex-wrap:nowrap;
    width:auto;
    gap:8px;
    margin-left:auto;
  }

  .products-section .product-card .actions > *{
    width:32px !important;
    height:32px !important;
    min-width:32px !important;
    min-height:32px !important;
    padding:0 !important;
    border-radius:50% !important;
    flex:0 0 32px;
  }

  .products-section .product-card .actions > * img{
    width:16px;
    height:16px;
  }
}

.koleksiyon-section{
  display:flex;
  align-items:center;
  padding-top:1.5rem !important;
  padding-bottom:1.5rem !important;
}
.main-card {
    background-color: #e7eff8;
    border-radius: 22px;
    overflow: hidden;
    position: relative;
    min-height: 374px;
    height: 100%;          /* ← bunu ekleyin */
    display: flex;
    align-items: center;
}

.main-card:hover{
  transform:translateY(-4px);
  box-shadow:none;
}

/* Sub-card görseli — negative margin ile kartın üst/altına taşır */
.sub-card-img {
    width: 160px;
    height: calc(100% + 40px);  /* padding'i (20px üst + 20px alt) telafi et */
    margin-top: -20px;
    margin-bottom: -20px;
    object-fit: cover;
    object-position: center center;
    flex-shrink: 0;
    align-self: stretch;        /* ← flex stretch */
}
.main-card-body{
  position:relative;
  z-index:2;
  padding:44px 36px;
  max-width:45%;
}

.main-card-title{
  font-family: 'Nunito Sans', sans-serif;
  font-size:clamp(2rem, 3vw, 2.35rem);
  font-weight:500;
  color:#111827;
  line-height:1.14;
  margin-bottom:12px;
  white-space:nowrap;
}

.main-card-desc{
  font-family: 'Nunito Sans', sans-serif;
  color:#000000;
  font-size:0.98rem;
  font-weight:400;
  line-height:1.45;
  margin-bottom:24px;
}

.sub-card{
  background-color:#e7eff8;
  border-radius:22px;
  overflow:hidden;
  display:flex;
  align-items:center;
  justify-content:space-between;
  min-height:172px;
  padding:20px 28px 20px 28px;
  gap:16px;
  flex:1;
  transition:transform var(--transition), box-shadow var(--transition);
  position: relative !important;
  overflow: hidden !important;


}

.sub-card:hover{
  transform:translateY(-3px);
  box-shadow:none;
}

.sub-card-content{
  flex:1;
  padding-right:8px;
}

.badge-pill{
  display:inline-block;
  background-color:var(--badge-bg);
  color:var(--badge-text);
  font-size:0.72rem;
  font-weight:500;
  letter-spacing:0.03em;
  padding:5px 12px;
  border-radius:999px;
  margin-bottom:12px;
}

.sub-card-title{
  font-family:var(--font-main);
  font-size:1.08rem;
  font-weight:500;
  color:#111827;
  margin-bottom:6px;
  line-height:1.3;
}

.sub-card-desc{
  color:#30343b;
  font-size:0.875rem;
  font-weight:400;
  margin-bottom:12px;
}
.sub-card-img {
    width: 160px;
    height: 100%;
    min-height: 172px;
    object-fit: cover;
    object-position: center center;
    flex-shrink: 0;
object-fit: cover;
}

.discover-link{
  display:inline-flex;
  align-items:center;
  gap:6px;
  color:#111827;
  font-size:0.95rem;
  font-weight:500;
  text-decoration:none;
  border-bottom:1px solid #111827;
  padding-bottom:2px;
  transition:gap var(--transition), opacity var(--transition);
}

.discover-link:hover{
  gap:10px;
  color: #053F70 !important;
}
.main-card-body:hover .discover-link {
  color: #053F70 !important;
}
.discover-icon{
  width:20px;
  height:20px;
  min-width:20px;
  display:block;
}

.discover-link:hover .discover-icon{
  transform:translateX(2px);
}

.right-col{
  display:flex;
  flex-direction:column;
  gap:22px;
}
@media (max-width: 768px){
  .main-card{
    min-height:auto;
    flex-direction:column;
    align-items:stretch;
  }

  .main-card-body{
    max-width:100%;
    padding:24px 20px 20px;
    order:1;
  }

  .main-card-img{
    position:relative;
    right:auto;
    bottom:auto;
    top:auto;
    width:100%;
    height:220px;
    object-fit:cover;
    object-position:center top;
    order:2;
    flex-shrink:0;
  }

  .main-card-title{
    font-size:1.6rem;
    white-space:normal;
  }

  .sub-card{
    min-height:auto;
    padding:20px 22px;
  }

  .sub-card-img{
    width:96px;
    height:120px;
    max-height:120px;
    object-fit:contain;
    object-position:center center;
  }
}

.badge-yaz-firsati {
    /* Layout */
    display: inline-flex;
    align-items: center;
    justify-content: center;

    /* Boyutlandırma */
    height: 32px; /* Figma görseline göre yükseklik düşürülmeli (52px çok büyük kalıyor) */
    padding: 0 12px;
    width: fit-content;

    /* Renkler (Figma tasarımına uygun daha açık/soft ton) */
    background: #DCE5EE;
    color: #23466D;    /* Metin rengini biraz daha yumuşattık */

    /* Tipografi */
    font-size: 14px;      /* Etiket olduğu için daha küçük olmalı */
    font-weight: 500;
    line-height: 1;
    letter-spacing: normal;

    /* Görünüm */
border-radius: 9999px;
    white-space: nowrap;
    /* Hizalama */
    margin-bottom: 8px;   /* Altındaki metinle arasına boşluk koymak için */
}

.badge-yaz-firsati:hover{
    background: #d4deea;
}

.features-section{
  background:#fff;
}

.feature-item{
  padding:8px 4px;
}

.feature-icon{
  font-size:22px;
  line-height:1;
  color:#000;
  min-width:24px;
}
@media (max-width: 1199px){
  .feature-item{
    justify-content:center;
    text-align:center;
  }
}

.blog-card .blog-img {
  height: 260px;
  border-radius: 16px;
  overflow: hidden;
}
.blog-card img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 0;
}

.blog-badge{
  position:absolute;
  top:12px;
  right:12px;
  padding:6px 12px;
  border-radius:999px;
  font-size:12px;
}
.blog-date {
    display: flex;
    align-items: center;
    gap: 6px;
    line-height: 1;
}
.blog-tag-pill {
    display: inline-block;
    padding: 6px 16px;
    border-radius: 999px;
    background: #fff;
    border: 1.5px solid #004E91;
    color: #004E91;
    font-size: 13px;
    font-weight: 600;
    text-decoration: none;
    transition: background .2s, color .2s;
}
.blog-tag-pill:hover {
    background: #004E91;
    color: #fff;
}

.blog-date::before {
    content: '';
    display: inline-block;
    width: 16px;
    height: 16px;
    background: url('../assets/icons/fi-rr-calendar.svg') no-repeat center;
    background-size: contain;
    flex-shrink: 0;
}
.blog-title{
  font-size:18px;
  font-weight:500;
  line-height:1.4;
  margin-bottom:12px;
}
.faq-btn:hover,
.faq-btn:focus,
.faq-btn:active {
    background-color: #053F70 !important;
    color: #ffffff !important;
    border-color: #053F70 !important;
    box-shadow:none;
}
.faq-main-title {
    font-family: 'Nunito Sans', sans-serif;
    font-weight: 500;
    font-size: 34px;
    line-height: 100%;
    letter-spacing: 0;
    text-align: center;
}
.faq-btn-white {
    background-color: #ffffff !important;
    color: #053F70 !important;
    border-color: #ffffff !important;
}
.faq-section {
    margin-bottom: 0 !important;
}
.mega-dropdown > .btn:focus,
.mega-dropdown > .btn:active,
.mega-dropdown > .btn:focus-visible {
    box-shadow:none;
    outline: none !important;
    border-color: transparent !important;
}

.mega-dropdown > .btn.show,
.mega-dropdown > .btn[aria-expanded="true"] {
    box-shadow:none;
    color: #004E91 !important;
    background-color: #CBE0F2 !important;
    border-radius: 8px !important;
    padding: 8px 16px !important;
}

.mega-item:hover,
.mega-item:focus,
.mega-item:active,
.mega-item:focus-visible {
    box-shadow: none;
    outline: none !important;
    border-color: transparent !important;
    color: var(--bg-primary) !important;
    background-color: transparent !important;
    border-radius: 0 !important;
    padding: 0 !important;
}
.blog-link{
  font-size:15px;
  font-weight:500;
  text-decoration:none;
  color:#000;
  display:inline-flex;
  align-items:center;
  gap:6px;
  border-bottom:1px solid #000;
  padding-bottom:2px;
  line-height:1;
  width:fit-content;
}
.faq-box{
  background:#114D87;
  border-radius:20px;
  padding:40px 20px;
}
.blog-arrow{
    width:20px;
    height:20px;
    display:inline-block;
    background:url('/website-templates/demo-1/assets/icons/fi-rr-arrow-small-right.svg') center center no-repeat;
    background-size:contain;
}
.blog-link{
  font-size:15px;
  font-weight:500;
  text-decoration:none;
  color:#000;
  display:inline-flex;
  align-items:center;
  gap:6px;
  border-bottom:1px solid #000;
  padding-bottom:2px;
  line-height:1;
  transition:all .3s ease;
}

.blog-arrow{
  font-size:16px;
  display:flex;
  align-items:center;
  transition:all .3s ease;
}

.blog-card:hover .blog-link{
  color:#053F70;
  border-bottom-color:#053F70;
}
.blog-link{
  font-size:15px;
  font-weight:500;
  text-decoration:none;
  color:#000;
  display:inline-flex;
  align-items:center;
  gap:6px;
  border-bottom:1px solid #000;
  padding-bottom:2px;
  line-height:1;
  transition:all .3s ease;
}

.blog-card:hover .blog-link{
  color:#053F70;
  border-bottom-color:#053F70;
}

.faq-box .accordion{
  border:none !important;
}

.faq-box .accordion-header{
  color:#fff !important;
}

.faq-box .accordion-item{
  border:none !important;
  border-bottom:1px solid rgba(255, 255, 255, 0.3) !important;
  border-radius:0 !important;
  background:transparent !important;

}

.faq-box .accordion-item:last-child{
  border-bottom:none !important;
}

.faq-box .accordion-button{
  background:transparent;
  color:#fff !important;
  box-shadow:none;
  padding-left:0;
}

.faq-box .accordion-button::after{
  display:none;
  filter:brightness(0) invert(1);
  opacity:1;
}
.accordion-button::after{
    display:none;
}

.faq-arrow{
    font-size:20px;
    transition:.3s ease;
}

.accordion-button:not(.collapsed) .faq-arrow{
    transform:rotate(180deg);
}
.customer-service-info .fw-bold{
    text-decoration: underline;
}

.customer-service-info + .d-flex a{
    transition: all .3s ease;
}

.customer-service-info + .d-flex a:hover{
    background-color: rgb(203, 224, 242) !important;
    border-color: rgb(203, 224, 242) !important;
}
.faq-box .accordion-body{
  color:#e0e0e0;
  padding-left:32px;
}

.faq-number{
  margin-right:10px;
  opacity:0.8;
  white-space:nowrap;
  flex-shrink:0;
}

.faq-btn{
  background:#e5e5e5;
  border-radius:12px;
  font-size:18px;
  color:#004E91;
}
.faq-btn:hover{
  background:#ffffff;
  color:#00295C;
  transform:translateY(-2px);
  box-shadow:none;
}

.newsletter-section{
  background-color:#D1DBE4;
  color:#000000;
}

.newsletter-form{
  width:100%;
}

.newsletter-box{
  padding:24px 0;
  border-radius:16px;
}

.newsletter-input-wrapper{
  position:relative;
  width:100%;
}
.newsletter-form .form-control{
  width:100%;
  border-radius:16px;
  padding:12px 130px 12px 16px;
  border:none;
  background:#fff;

  box-shadow:none;
}
.newsletter-btn{
  position:absolute;
  top:50%;
  right:6px;
  transform:translateY(-50%);

  background:var(--bg-primary);
  color:#fff;
  border-radius:16px;
  padding:8px 16px;
  border:2px solid var(--bg-primary);

  height:calc(100% - 12px);
  display:flex;
  align-items:center;
  justify-content:center;

  transition:all 0.25s ease;
}
.newsletter-btn:hover{
  background:var(--bg-secondary);
  color:#fff;
  border-color:var(--bg-secondary);
}
.category-cart-link{
  display:block;
  text-decoration:none;
  color:inherit;
  transition: transform .25s ease;
}

.category-cart-link:hover{
  transform: translateY(-4px);
}

.category-cart-link:hover .category-cart-item{
  border: 1px solid #F2F2F2;
}

.category-cart-link:hover small{
  color:var(--bg-secondary);
}

.category-cart-link small{
  display:block;
  font-family:'Nunito Sans', sans-serif;
  font-weight:500;
  color:#000;
  transition: color .2s ease;
}

.category-cart-item{
  display:flex;
  align-items:center;
  justify-content:center;
  overflow:hidden;
  transition: box-shadow .25s ease;
}

.category-cart-item img{
  width:75%;
  height:75%;
  object-fit:contain;
}
@media (min-width: 768px){
  .category-cart-item img{
    width:65%;
    height:65%;
  }
}
@media (min-width: 1200px){
  .category-cart-item img{
    width:60%;
    height:60%;
  }
}

@media (max-width: 768px){
  .category-prev,
  .category-next{
    display:none !important;
  }
  .featured-prev,
  .featured-next{
    display:none !important;
  }

}
.category-cart-item{
  width:110px;
  height:110px;
}
@media (min-width: 576px){
  .category-cart-item{
    width:140px;
    height:140px;
  }
}
@media (min-width: 768px){
  .category-cart-item{
    width:160px;
    height:160px;
  }
}
@media (min-width: 992px){
  .category-cart-item{
    width:180px;
    height:180px;
  }
}
@media (min-width: 1200px){
  .category-cart-item{
    width:200px;
    height:200px;
  }
}
@media (min-width: 1400px){
  .category-cart-item{
    width:220px;
    height:220px;
  }
}

.categorySwiper{
  overflow:hidden;
  padding:0;
}


.category-section .swiper-wrapper{
  align-items:flex-start;
}

.category-section .swiper-slide{
  display:flex;
  justify-content:center;
  overflow:hidden;
}

.category-section .category-cart-link{
  display:flex !important;
  flex-direction:column;
  align-items:center;
  width:100%;
  min-width:0;
}

.category-section small{
  display:block;
  margin-top:24px;
  font-family:'Nunito Sans', sans-serif;
  font-size:20px;
  color:#000;
  white-space:nowrap;
  overflow:hidden;
  text-overflow:ellipsis;
  width:100%;
  min-width:0;
  cursor:default;
}
@media (max-width: 576px){
  .category-section small{
    font-size:14px;
  }
}

footer{
  background-color:#F3F5F6;
  color:#000;
  font-size:14px;
}

footer .container-fluid{

  margin:0 auto;
}
.category-prev,
.category-next{
    width:48px;
    height:48px;
    border:none;
    z-index:10;
    top:110px; /* görsellerin tam ortası */
    transform:translateY(-50%);
}
.category-prev,
.category-next{
    width:56px;
    height:56px;
    border:none;
    display:flex;
    align-items:center;
    justify-content:center;
    top:110px; /* dairelerin ortası */
    transform:translateY(-50%);
    z-index:10;
}

.category-prev{
    left:0;
    transform:translate(-50%, -50%);
}
.heroSwiper {
    overflow: visible;
}

.heroSwiper .swiper-wrapper {
    overflow: visible;
}

.hero-section {
    overflow: hidden;
}

.hero-section .container-fluid {
    overflow: visible;
}
.category-next{
    right:0;
    transform:translate(50%, -50%);
}

.category-prev i,
.category-next i{
    font-size:24px;
}

footer .col{
  display:flex;
  flex-direction:column;
  justify-content:flex-start;
  align-items:flex-start;
}

@media (max-width: 768px){
  footer .col{
    align-items:flex-start;
    text-align:left;
  }
}

footer h5{
  font-size:16px;
  margin-bottom:15px;
  font-weight:600;
}

footer ul{
  list-style:none;
  padding:0;
}

footer ul li{
  margin-bottom:8px;
}

footer ul li a{
  text-decoration:none;
  color:#555;
  transition:0.3s;
}

footer ul li a:hover{
  color:#000;
}
footer .d-flex{
  gap:10px;
  margin-bottom:12px;
}

.footer-contact-icon{
  height:24px;
  width:auto;
}
.footer-contact{
  gap:12px;
  margin-bottom:15px;
}
footer .d-flex.gap-2{
  margin-bottom:20px;
}
footer .d-flex a{
  margin-right:10px;
}
footer img[alt="logo"]{
  max-width:120px;
  margin-bottom:15px;
}

.footer-social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-right: 0 !important;
}
.footer-social-link img,
.footer-social-link i {
  display: block;
  width: 24px;
  height: 24px;
}
.footer-social-icon {
  display: block;
  width: auto !important;
  height: 22px !important;
  object-fit: contain;
}

.footer-payment-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 36px;
  border-radius: 4px;
  background: #fff;
  border: 1px solid #e0e0e0;
  box-shadow:none;
  padding: 0;
  margin-right: 0 !important;
  flex-shrink: 0;
}
.footer-payment-badge img {
  display: block;
  width: 28px;
  height: 28px;
  object-fit: contain;
}

.footer-contact span b{
  font-size:14px;
  margin-bottom:2px;
}

.footer-contact span{
  font-size:14px;
  line-height:1.2;
}

.btn-hero{
  background-color:#004E91;
  color:#fff;
  border-radius:12px;
}

.btn-hero:hover{
  background-color:#053F70;
  color:#fff;
}

.hero-overlay{
  position:absolute;
  inset:0;
  background:rgba(0, 0, 0, 0.4);
  z-index:1;
}

.ratio-hero img,
.ratio-hero video{
  position:absolute;
  inset:0;
  z-index:0;
}

.ratio-hero video{
  display:block;
  width:100%;
  height:100%;
  object-fit:cover;
}

.ratio-hero.has-hero-video > img.img-cover{
  display:none;
}

.ratio-hero .position-absolute{
  z-index:2;
}

.testimonial-box{
  background-color:#004E911A;
  border-radius:16px;
}
.testimonialSwiper .swiper-slide{
  display:flex;
  flex-direction:column;
  justify-content:center;
  align-items:center;
  text-align:center;
}
.testimonialSwiper p{
  max-width:700px;
  margin:0 auto;
}
.testimonialSwiper img{
  display:block;
  margin:0 auto;
}
.accordion-button:not(.collapsed){
  background:linear-gradient(90deg, #114D87, #14528C);
  color:#fff;
  box-shadow:none;
}
.accordion-button:not(.collapsed)::after{
  filter:brightness(0) invert(1);
}
.breadcrumb-bar{
  background:#00295C0D !important;
  padding:16px;
  gap:10px;
  align-items:center;
}

.breadcrumb-bar .breadcrumb{
  margin:0;
  font-size:14px;
  font-weight:400;
  font-style:regular;
}

.breadcrumb-item a{
  color:#696C70;
  text-decoration:none;
  font-size:14px;
  font-weight:400;
}

.breadcrumb-item.active{
  color:#000;
  font-weight:500;
  font-style:bold;
}

.bc-chevron{
  font-size:18px;
  width:18px;
  height:18px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  color:#696C70;
  vertical-align:middle;
  line-height:1;
}

#filterPanel{
  width:100%;
  max-width:300px;
  border:none;
  padding:0;
  border-radius:6px;
  background:#fff;
  font-family:Arial, sans-serif;
}

.accordion-item{
  border:1px solid #e5e7eb !important;
  border-radius:16px !important;
  margin-bottom:12px;
  overflow:hidden;
}

.accordion-item:last-child{
  border-bottom:1px solid #e5e7eb !important;
}

.accordion-button{
  font-size:15px;
  font-weight:500;
  padding:14px 16px;
  background:transparent !important;
  color:#111 !important;
  box-shadow:none;
  border-radius:0 !important;
}

.accordion-button::after{
  display:none;
}

.acc-arrow{
  font-size:18px;
  color:#6b7280;
  transition:transform 0.2s ease;
  flex-shrink:0;
  display:inline-flex;
  align-items:center;
  justify-content:center;
}

.accordion-button.collapsed .acc-arrow{
  transform:rotate(180deg);
}

.accordion-button:not(.collapsed) .acc-arrow{
  transform:rotate(0deg);
}

.accordion-body{
  padding:2px 16px 14px;
}

.filter-options-scroll{
  max-height:220px;
  overflow-y:auto;
  overflow-x:hidden;
  padding-right:4px;
}

.filter-options-scroll::-webkit-scrollbar{
  width:5px;
}

.filter-options-scroll::-webkit-scrollbar-track{
  background:transparent;
}

.filter-options-scroll::-webkit-scrollbar-thumb{
  background:#ccc;
  border-radius:5px;
}

.filter-options-scroll::-webkit-scrollbar-thumb:hover{
  background:#999;
}
.cat-row{
  display:flex;
  justify-content:space-between;
  align-items:center;
  margin-bottom:8px;
}
.cat-count{
  font-size:12px;
  color:#999;
}
.form-check{
  display:flex;
  align-items:center;
  gap:8px;
}

.form-check-input{
  width:16px;
  height:16px;
  cursor:pointer;
  box-shadow:none;
}
.form-check-input:checked{
  background-color:#1a73e8;
  border-color:#1a73e8;
}
.form-check-label{
  font-size:14px;
  color:#222;
  cursor:pointer;
}
.size-grid{
  display:grid;
  grid-template-columns:repeat(3, 1fr);
  gap:8px;
}
.form-range{
  width:100%;
}

.range-labels{
  display:flex;
  justify-content:space-between;
  font-size:12px;
  margin-top:5px;
  color:#777;
}
.form-check-label:hover{
  color:#000;
}

.view-switch{
  display:flex;
  gap:10px;
}

.listing-toolbar-actions .nx-select{
  min-width:165px;
}
.view-btn{
  width:44px;
  height:44px;
  border-radius:10px;
  border:1px solid transparent;
  background:transparent;
  display:flex;
  align-items:center;
  justify-content:center;
  cursor:pointer;
  transition:all 0.25s ease;
}
.view-btn:hover{
  background:#053F70 !important;
}
.view-btn.active,
.view-btn.active:hover,
.view-btn.active:focus{
  border-color:transparent !important;
}
.view-btn.active img{
  filter:brightness(0) invert(1);
}
.view-btn img{
  width:22px;
  height:22px;
  object-fit:contain;
  transition:0.25s;
}

.mobile-filter-btn-compact{
  display:inline-flex;
  align-items:center;
  gap:8px;
  height:40px;
  padding:0 14px;
  border:1px solid #E5E7EB;
  border-radius:16px;
  background:#fff;
  color:#1F1F1F;
  font-size:14px;
  font-weight:600;
  line-height:1;
  cursor:pointer;
  transition:all 0.2s ease;
  white-space:nowrap;
}
.mobile-filter-btn-compact i{
  font-size:16px;
  line-height:1;
}
.mobile-filter-btn-compact:hover{
  border-color:#00295C;
  color:#00295C;
}
.mobile-filter-btn-compact[aria-expanded="true"]{
  background:#00295C;
  border-color:#00295C;
  color:#fff;
}

@media (max-width: 991.98px){
  #filterPanel.show,
  #filterPanel.collapsing{
    position:fixed !important;
    top:50% !important;
    left:50% !important;
    transform:translate(-50%, -50%) !important;
    width:calc(100% - 32px) !important;
    max-width:420px !important;
    max-height:85vh !important;
    height:auto !important;
    overflow-y:auto !important;
    z-index:1055;
    padding:16px;
    background:#fff;
    border-radius:16px;
    box-shadow:none;
    margin:0 !important;
  }
  body:has(#filterPanel.show)::before{
    content:"";
    position:fixed;
    inset:0;
    background:rgba(15, 23, 42, 0.5);
    z-index:1050;
    animation:filter-backdrop-in 0.2s ease-out;
  }
  body:has(#filterPanel.show){
    overflow:hidden;
  }
  .filter-panel-header{
    justify-content:space-between;
    align-items:center;
    padding-bottom:12px;
    margin-bottom:8px;
    border-bottom:1px solid #f1f2f4;
    position:sticky;
    top:-16px;
    margin-top:-16px;
    padding-top:16px;
    background:#fff;
    z-index:2;
  }
  .filter-panel-header h6{
    font-size:16px;
    color:#111827;
  }
  .filter-panel-close{
    width:32px;
    height:32px;
    border:none;
    background:#f3f5f7;
    border-radius:50%;
    display:inline-flex;
    align-items:center;
    justify-content:center;
    color:#111827;
    font-size:14px;
    cursor:pointer;
    transition:background 0.2s ease;
  }
  .filter-panel-close:hover{
    background:#e5e7eb;
  }
}
@keyframes filter-backdrop-in{
  from{ opacity:0; }
  to{ opacity:1; }
}

.products-wrapper.list-view{
  --bs-gutter-x:0;
}
.products-wrapper.list-view > [class*="col-"]{
  flex:0 0 100%;
  max-width:100%;
  margin-bottom:12px;
}
.products-wrapper.list-view .product-card{
  display:grid;
  grid-template-columns:140px 1fr;
  gap:16px;
  align-items:center;
}
.products-wrapper.list-view .product-image{
  width:140px;
  aspect-ratio:1 / 1;
}
.products-wrapper.list-view .color-swatches,
.products-wrapper.list-view .product-title,
.products-wrapper.list-view .product-rating,
.products-wrapper.list-view .product-bottom{
  grid-column:2;
}
.products-wrapper.list-view .color-swatches{
  margin-top:0;
}

@media (max-width: 576px){
  .products-wrapper.list-view .product-card{
    display:block;
    grid-template-columns:none;
  }
  .products-wrapper.list-view .product-image{
    width:100%;
    aspect-ratio:1 / 1;
    margin-bottom:10px;
  }
  .products-wrapper.list-view .color-swatches,
  .products-wrapper.list-view .product-title,
  .products-wrapper.list-view .product-rating,
  .products-wrapper.list-view .product-bottom{
    grid-column:auto;
  }
  .products-wrapper.list-view .color-swatches{
    margin-top:6px;
  }
}

#perPageSelect{
  color:#868585;
  padding:0.5rem;
  border:1px solid #F2F2F2;
  border-radius:8px;
  cursor:pointer;
}

#sortSelect{
  color:#868585;
  padding:0.5rem;
  border:1px solid #F2F2F2;
  border-radius:8px;
  cursor:pointer;
}

.product-grid-text{
  color:#696C70;
}
.pagination{
  gap:8px;
}
.page-link{
  width:40px;
  height:40px;
  border-radius:16px !important;
  border:1px solid #e5e7eb;
  display:flex;
  align-items:center;
  justify-content:center;

  color:#374957;
  background:#fff;
  transition:all 0.25s ease;
}
.page-link:hover{
  background:#053F70;
  border-color:#053F70;
  color:#fff !important;
}
.page-item.active .page-link,
.page-link.active{
  background:#053F70;
  color:#fff;
  border-color:#053F70;
  box-shadow:none;
}
.page-link span{
  font-size:18px;
}

.product-list-section-title{
  color:#1F1F1F;
  font-size:36px;
  font-weight:500;
}

.see-all-link{
  text-decoration:none;
  color:#666666;
  font-size:16px;
  font-weight:400;
}

@media (max-width: 768px){

  .product-list-section-title{
    font-size:20px;
  }

  .see-all-link{
    font-size:14px;
    white-space:nowrap;
  }

}

.nx-select{
  position:relative;
  width:220px;
}
.nx-select__head{
  height:34px;
  border-radius:16px;
  padding:0 13.6px;
  box-shadow:none;
  background:#fff;
  color:#868585;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:8.5px;
  cursor:pointer;
  user-select:none;
  transition:all 0.25s ease;
  border:1px solid #F2F2F2;
}
.nx-select__head:hover{
  box-shadow:none;
}
.nx-select__value{
  font-family:'Nunito Sans', sans-serif;
  font-size:11.9px;
  font-weight:300;
  line-height:1;
  color:#868585;
}
.nx-select__icon{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  line-height:1;
  font-size:18px;
  color:#868585;
  flex-shrink:0;
  transition:transform 0.25s ease;
}
.nx-select__icon .fi{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  line-height:1;
}
.nx-select__list{
  position:absolute;
  top:calc(100% + 6px);
  left:0;
  min-width:100%;
  width:max-content;
  max-width:320px;
  background:#fff;
  border-radius:16px;
  box-shadow:none;
  padding:6px;
  list-style:none;
  opacity:0;
  pointer-events:none;
  transform:translateY(10px);
  transition:all 0.25s ease;
  z-index:50;
}
.nx-select.is-open .nx-select__list{
  opacity:1;
  pointer-events:auto;
  transform:translateY(0);
}
.nx-select__list li{
  padding:10px 12px;
  border-radius:8px;
  font-family:'Nunito Sans', sans-serif;
  font-size:11.9px;
  font-weight:300;
  color:#868585;
  cursor:pointer;
  user-select:none;
  white-space:nowrap;
  overflow:hidden;
  text-overflow:ellipsis;
}
.nx-select__list li:hover{
  background:#f7f7f7;
}
.nx-select__list li.is-selected{
  background:#f2f2f2;
  color:#333;
}
.nx-select.is-open .nx-select__icon{
  transform:rotate(180deg);
}

.mobile-filter-btn{
  background:none !important;
  border:none;
}

.product-detail{
  background:#fff;
}
.product-detail.section-py{
  padding-top:calc(var(--space-section) * 2) !important;
}
.product-gallery .main-image{
  overflow:hidden;
  border-radius:16px;
  display:inline-flex;
  line-height:0;
}

.product-gallery .main-image img{
  width:100%;
  height:auto;
  display:block;
  border-radius:16px;
  transition:transform 0.35s ease;
  cursor:zoom-in;
}

.product-gallery .main-image:hover img{
  transform:scale(1.07);
}

.thumbs{
  display:flex;
  gap:10px;
  margin-top:12px;
}

.thumbs img{
  width:70px;
  height:70px;
  min-width:70px;
  max-width:70px;
  flex:0 0 70px;
  object-fit:contain;
  background:#f7f7f7;
  border-radius:16px;
  border:2px solid transparent;
  cursor:pointer;
}

.thumbs img.active{
  border-color:#1a3c6d;
}
.product-info-text{
  border-bottom:1px solid #F2F2F2;
  margin-bottom:2rem;
}

.product-code{
  font-size:12px;
  color:#868585;
  font-weight:400;
  white-space:nowrap;
  flex-shrink:0;
  display:inline-block;
  background:#EEEEEE;
  padding:4px 12px;
}

.product-info .product-info-text .product-title{
  font-family:'Nunito Sans', sans-serif;
  font-size:30px;
  font-weight:500;
  line-height:30px;
  color:#1F1F1F;
  margin-top:8px;
  margin-bottom:12px;
}

.rating{
  color:#f5a623;
  font-size:14px;
  margin-bottom:12px;
}

.rating span{
  font-size:14px;
  font-weight:400;
  color:#1F1F1F;
  margin-left:8px;
}

.price{
  font-family:'Nunito Sans', sans-serif;
  font-size:30px;
  font-weight:500;
  line-height:30px;
  color:#1F1F1F;
  margin-top:0;
  margin-bottom:16px;
}

.desc{
  font-family:'Nunito Sans', sans-serif;
  font-size:16px;
  font-weight:400;
  line-height:100%;
  letter-spacing:0%;
  color:#696C70;
  margin-top:20px;
  margin-bottom:20px;
}

.price-box{
  background:#F2F2F2;
  padding:24px 12px;
  display:flex;
  justify-content:space-between;
  margin-bottom:20px;
  color:#004E91;
  border:1px solid #F3F5F6;
}

.price-box span{
  font-family:'Nunito Sans', sans-serif;
  font-size:14px;
  color:#004E91;
}

.price-box span b{
  font-family:'Nunito Sans', sans-serif;
  font-weight:500;
  font-size:18px;
  line-height:100%;
  letter-spacing:0%;
  color:#004E91;
}
.form-row{
  display:flex;
  gap:12px;
  align-items:stretch;
}

.select-box,
.qty-box{
  flex:1;
  display:flex;
  flex-direction:column;
}

.qty-box{
  justify-content:flex-end;
}

.qty-box > label{
  color:#1F1F1F;
  font-size:15px;
  font-weight:500;
  margin-bottom:8px;
}

.form-row .nx-select.mt-3{
  margin-top:0 !important;
}
.asorti-badge{
  padding:2px 10px !important;
  background-color:#F2F2F2;
  color:#000 !important;
  font-size:12px !important;
  font-weight:400;
  border-radius:100px;
}

.select-box .d-flex{
  margin-bottom:8px;
}
.asorti-label{
  color:#1F1F1F !important;
  font-weight:500;
  font-style:bold;
  font-size:15px;
}

.asorti-badge{
  padding:5px 20px;
  background-color:#F2F2F2;
  color:#000 !important;
  font-size:14px;
  font-weight:400;
  border-radius:100px;
}

.select-box,
.qty-box{
  flex:1;
}

.qty-box label{
  color:#1F1F1F;
  font-size:15px;
  font-weight:500;
}
.form-row .nx-select{
  position:relative;
  width:100%;
}
.form-row .nx-select__head{
  display:flex;
  align-items:center;
  justify-content:space-between;

  height:52px;
  padding:0 16px;

  border:1px solid #e5e7eb;
  border-radius:14px;
  background:#fff;

  cursor:pointer;
  transition:all 0.2s ease;
}
.form-row .nx-select__head:hover{
  border-color:#d1d5db;
}
.form-row .nx-select__value{
  font-size:14px;
  color:#111827;
}
.form-row .nx-select.is-open .nx-select__icon{
  transform:rotate(180deg);
}
.form-row .nx-select__list{
  position:absolute;
  top:calc(100% + 6px);
  left:0;
  width:100%;

  background:#fff;
  border:1px solid #e5e7eb;
  border-radius:12px;

  padding:6px 0;
  display:none;
  z-index:20;

  box-shadow:none;
}

.form-row .nx-select.is-open .nx-select__list{
  display:block;
  opacity:1;
  pointer-events:auto;
  transform:translateY(0);
}

.form-row .nx-select__list li{
  padding:10px 14px;
  font-size:14px;
  cursor:pointer;
}

.form-row .nx-select__list li:hover{
  background:#f9fafb;
}

.form-row .nx-select__list li.is-selected{
  font-weight:500;
}
.nx-qty .nx-select__head{
  justify-content:space-between;
  padding:0 10px;
}
.qty-btn{
  width:36px;
  height:36px;

  border:none;
  background:transparent !important;
  border-radius:10px;

  font-size:18px;
  cursor:pointer;

  display:flex;
  align-items:center;
  justify-content:center;

  transition:all 0.2s ease;
}

.qty-btn:hover{
  background:#e5e7eb;
}

.nx-qty .nx-select__value{
  font-weight:600;
  font-size:15px;
}
@media (max-width: 768px){
  .form-row{
    flex-direction:column;
  }
}

.set-items{
  display:flex;
  flex-direction:row;
  gap:16px;
  justify-content:space-between;
}

.set-card{
  width:100%;
  display:flex;
  gap:16px;
  border:1px solid #eee;
  padding:12px;
  border-radius:8px;
  align-items:center;
}

.set-card img{
  width:80px;
  height:90px;
  min-width:80px;
  max-width:80px;
  flex:0 0 80px;
  object-fit:contain;
  border-radius:16px;
}

.set-info{
  flex:1;
}
.color-row{
  display:flex;
  align-items:center;
  gap:8px;
  margin:6px 0 10px;
}

.color-dot{
  width:14px;
  height:14px;
  border-radius:50%;
  border:1px solid #ccc;
}
.set-actions{
  display:flex;
  justify-content:space-between;
  align-items:center;
}
.qty{
  display:flex;
  align-items:center;
  border:1px solid #eee;
  border-radius:12px;
  overflow:hidden;
}

.qty button{
  width:28px;
  height:28px;
  border:none;
  background:transparent;
  cursor:pointer;
  font-size:16px;
}

.qty span{
  padding:0 10px;
  font-size:14px;
}
.add-cart{
  background:#fff;
  width:40px;
  height:40px;
  border-radius:12px;
  cursor:pointer;
  color:#374957;

  display:flex;
  align-items:center;
  justify-content:center;

  z-index:2;
  transition:all 0.25s ease;

  border:none;
  box-shadow:none;
}

.add-cart img{
  width:16px;
  height:16px;
  object-fit:contain;
  transition:0.25s;
}

.add-cart:hover{
  background:#053F70 !important;
  border-color:#053F70 !important;
  box-shadow:none;
  transform:translateY(-2px) scale(1.1);
}

.add-cart:hover img,
.add-cart:hover img.fit-contain-image,
.product-detail .add-cart:hover img,
.product-detail .set-card .add-cart:hover img{
  filter:brightness(0) invert(1) !important;
  background:transparent !important;
}
.actions{
  gap:12px;
}

.actions button{
  flex:1;
}

.btn-cart{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  padding:14px;
  border-radius:16px;
  border:1px solid #e4e8ef;
  background:#fff;
  font-size:14px;
  font-weight:600;
  color:#4b5563;
  cursor:pointer;
  transition:all .2s ease;
}
.btn-cart img{
  width:18px;
  height:18px;
  object-fit:contain;
  transition:0.25s;
}
.btn-cart:hover{
  background:#f4f7fb;
  border-color:#cfd8e6;
  color:#4b5563;
}

.btn-cart:hover img{
  filter:none;
}

.btn-buy{
  padding:14px !important;
  color:#fff !important;
  border-radius:16px;
  border:1px solid transparent !important;
  background:var(--bg-primary) !important;
  font-weight:600;
  cursor:pointer;
  transition:all .2s ease !important;
  text-decoration:none !important;
  display:inline-flex;
  align-items:center;
  justify-content:center;
}
.btn-buy:hover{
  background:var(--bg-secondary) !important;
  border-color:transparent !important;
  color:#fff !important;
  transform:translateY(-1px);
  box-shadow:none !important;
  text-decoration:none !important;
}
.delivery{
  gap:20px;
  justify-content:space-between;
  background:#F7F5F0;
  padding:15px;
  border-radius:16px;
  border:1px solid #EEEEEE;
  font-size:13px;
  color:#000;
}

.delivery{
  display:flex;
  align-items:center;
  flex-wrap:wrap;
  gap:8px;

  background:#F3F1EB;
  padding:12px 14px;
  border-radius:20px;
  border:1px solid #EAEAEA;

  margin-top:15px;
  overflow:hidden;
}

.delivery-item{
  display:flex;
  align-items:center;
  gap:12px;
  flex:1;
}
.delivery-item .icon{
  width:24px;
  height:24px;
  display:flex;
  align-items:center;
  justify-content:center;
  flex-shrink:0;
}

.delivery-item .icon img{
  width:100%;
  height:100%;
  object-fit:contain;
}
.delivery-item .text{
  display:flex;
  flex-direction:column;
}

.delivery-item .title{
  font-size:14px;
  font-weight:600;
  color:#000;
}

.delivery-item .desc{
  font-size:14px;
  color:#000;
  margin-top:2px;

}
@media (max-width: 768px){
  .delivery{
    display:grid;
    grid-template-columns:repeat(3, 1fr);
    gap:8px;
  }
  .delivery .action-btn{
    width:100%;
    flex:unset;
  }
  .delivery .action-btn:last-child:nth-child(3n+1){
    grid-column:span 3;
  }
  .delivery .action-btn:last-child:nth-child(3n+2){
    grid-column:span 1;
  }
}
@media (max-width: 576px){
  .delivery{
    grid-template-columns:repeat(2, 1fr);
  }
  .delivery .action-btn:last-child:nth-child(odd){
    grid-column:span 2;
  }
  .delivery .action-btn:last-child:nth-child(3n+1){
    grid-column:unset;
  }
}
@media (max-width: 768px){
  .form-row{
    flex-direction:column;
  }

  .actions{
    flex-direction:column;
  }

  .price-box{
    flex-direction:column;
    gap:8px;
    align-items:flex-start;
  }
  .price-box span{
    width:100%;
    margin-left:0 !important;
    display:flex;
    justify-content:space-between;
    align-items:center;
  }
}
@media (max-width: 575.98px){
  .product-info .product-info-text .product-title{
    font-size:20px !important;
    line-height:26px !important;
    margin-bottom:8px !important;
  }
  .product-info-text > div.d-flex.justify-content-between{
    flex-direction:column !important;
    align-items:flex-start !important;
    gap:6px !important;
  }
  .product-info .price{
    font-size:22px !important;
    line-height:28px !important;
    margin-bottom:12px !important;
  }
  .product-info .desc{
    font-size:14px !important;
    margin-top:12px !important;
    margin-bottom:12px !important;
  }
  .price-box span b{
    font-size:15px !important;
  }
  .price-box{
    padding:14px 12px !important;
  }
}
.product-detail .row{
  align-items:stretch;
}
.product-detail .col-lg-6{
  display:flex;
}
.product-gallery,
.product-info{
  flex:1;
  display:flex;
  flex-direction:column;
}

.tabs-clean{
  display:flex;
  justify-content:flex-start;
  gap:32px;
  position:relative;
  color:#A0A0A0;
  padding:1rem;
}
.tab-link{
  padding:15px 0;
  font-size:15px;
  color:#A0A0A0;
  transition:0.2s;
  text-decoration:none;
  position:relative;
  cursor:pointer;
}

.tab-link.active{
  color:#000 !important;
  font-weight:600;
}
.tab-indicator{
  position:absolute;
  bottom:-1px;
  height:2px;
  background:#000;
  transition:all 0.3s ease;
}

.tabs-clean li{
  list-style:none;
}

.action-buttons{
  display:flex;
  width:100%;
  margin-top:20px;
  justify-content:space-between;
}

.action-btn{
  display:flex;
  align-items:center;
  justify-content:center;
  gap:5px;
  padding:8px 10px;
  background:#fff;
  border:1.5px solid #dde2e8;
  border-radius:16px;
  white-space:nowrap;
  flex:1;
  min-width:0;
  cursor:pointer;
  transition:all 0.25s ease;
  color:#000;
  font-size:13px;
  font-weight:500;
}

.action-btn img{
  width:18px;
  height:18px;
  transition:filter 0.25s ease;
}
.action-btn i{
  font-size:18px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  line-height:1;
  flex-shrink:0;
}

.action-btn span{
  font-family:'Nunito Sans', sans-serif;
  font-size:13px;
  font-weight:500;
  line-height:20px;
  color:#000;
  transition:color 0.25s ease;
}
.action-btn:hover{
  background:#053F70;
  border-color:#053F70;
  color:#fff;
}
.action-btn:hover span{
  color:#fff;
}
.action-btn:hover img{
  filter:brightness(0) invert(1);
}
.action-btn[data-type="favorite"].is-active{
  border-color:#e53935;
  background:#fff5f5;
}
.action-btn[data-type="favorite"].is-active span{
  color:#e53935;
}
.action-btn[data-type="favorite"].is-active img{
  filter: invert(27%) sepia(90%) saturate(1500%) hue-rotate(330deg) brightness(95%);
}
.sticky-bottom-bar{
  position:fixed;
  bottom:0;
  left:0;
  right:0;
  background:#fff;
  border-top:1px solid var(--border);
  padding-top:12px;
  padding-bottom:12px;
  z-index:9999;
  box-shadow:0 -2px 12px rgba(0,0,0,0.06);
}

.product-info-small .code{
  font-size:16px;
  color:#7a7a7a;
  margin-bottom:6px;
}

.product-info-small .code strong,
.product-info-small .name{
  color:#1F1F1F;
}

.product-info-small .name{
  font-size:17px;
  font-weight:500;
  line-height:1.3;
}

.sticky-summary-title{
  font-size:13px;
  color:#888;
  letter-spacing:0.2px;
  display:flex;
  align-items:center;
  justify-content:center;
  gap:5px;
}

.receipt-icon{
  width:20px;
  height:20px;
  opacity:0.5;
}
.price-sticky{
  font-size:28px;
  font-weight:600;
  line-height:1.1;
  margin-top:2px;
  color:#0F4C81;
}

.price-sticky span{
  font-size:15px;
  font-weight:400;
  color:#555;
}
.sticky-summary-sub{
  font-size:13px;
  color:#888;
  margin-top:2px;
}
.btn-detail-favorite{
  flex-shrink:0;
  width:52px;
  height:52px;
  border-radius:16px;
  border:1.5px solid #dde2e8;
  background:#fff;
  color:#999;
  font-size:20px;
  line-height:1;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  cursor:pointer;
  transition:border-color 0.2s, background 0.2s, color 0.2s;
  align-self:center;
}
.btn-detail-favorite i{
  line-height:1;
  display:flex;
  align-items:center;
  justify-content:center;
  margin:0;
  padding:0;
}
.btn-detail-favorite i::before{
  margin-top:0 !important;
  line-height:1;
}
.btn-detail-favorite:hover{
  border-color:#053F70 !important;
  background:#053F70 !important;
  color:#fff !important;
}
.btn-detail-favorite.is-active{
  background:#053F70;
  border-color:#053F70;
  color:#fff;
}
.btn-detail-favorite.is-active i{
  color:#fff !important;
}

.receipt-btn{
  background:#fff;
  border:1px solid #e4e8ef;
  border-radius:16px;
  padding:0;
  cursor:pointer;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  width:52px;
  height:52px;
  flex-shrink:0;
  transition:all .2s ease;
  color:#4b5563;
  font-size:14px;
  font-weight:600;
}
.receipt-btn:hover{
  background:#f4f7fb;
  border-color:#cfd8e6;
  color:#4b5563;
}
.receipt-btn:hover .receipt-icon{
  opacity:1;
}

.sticky-summary{
  position:relative;
}

.price-breakdown-popup{
  display:none;
  position:absolute;
  bottom:calc(100% + 12px);
  left:50%;
  transform:translateX(-50%);
  background:#fff;
  border:2px solid #f2f2f2;
  border-radius:12px;
  box-shadow:0 8px 32px rgba(0,0,0,.14), 0 2px 8px rgba(0,0,0,.08);
  width:300px;
  z-index:99999;
  overflow:hidden;
}
.price-breakdown-popup.is-open{
  display:block;
}
.price-breakdown-header{
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding:16px 20px 12px;
  font-size:17px;
  font-weight:600;
  color:#1F1F1F;
}
.price-breakdown-close{
  background:#ffffff;
  border:1px solid #f2f2f2;
  border-radius:50%;
  width:28px;
  height:28px;
  min-width:28px;
  padding:0;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  cursor:pointer;
  color:#374957;
  transition:all .2s ease;
}
.price-breakdown-close i{
  font-size:12px;
  line-height:1;
  display:flex;
  align-items:center;
  justify-content:center;
  width:12px;
  height:12px;
  color:#374957;
}
.price-breakdown-close:hover{
  background:#053F70;
  border-color:#053F70;
}
.price-breakdown-close:hover i{
  color:#fff;
}
.price-breakdown-body{
  padding:0 20px 16px;
}
.pb-row{
  display:flex;
  justify-content:space-between;
  font-size:14px;
  padding:6px 0;
  color:#333;
}
.pb-row--bold{
  font-weight:500;
  color:#1F1F1F;
}
.pb-divider{
  border-top:1px solid #eee;
  margin-top:4px;
  padding-top:10px;
}

.btn-notify{
  width:100%;
  height:48px;
  border-radius:12px;
  border:1px solid #EEEEEE;
  background:#fff;
  color:#000;
  font-weight:500;
  font-size:15px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:8px;
  cursor:pointer;
  transition:all 0.25s ease;
}
.btn-notify:hover{
  background:#00295C;
  color:#fff;
  border-color:#00295C;
}

.sticky-right-group{
  display:flex;
  align-items:center;
  justify-content:flex-end;
  gap:24px;
}
.sticky-summary-group{
  display:flex;
  align-items:center;
  gap:12px;
}
.sticky-actions{
  display:flex;
  gap:12px;
  justify-content:flex-end;
}

.bottom-bar-action-btn-outline{
  height:52px;
  padding:0 24px;
  border-radius:16px;
  border:1px solid #e4e8ef !important;
  background:#fff;
  color:#4b5563 !important;
  font-weight:600;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  cursor:pointer;
  transition:all .2s ease;
}

.bottom-bar-action-btn{
  height:52px;
  padding:0 28px;
  border-radius:16px;
  background:var(--bg-primary);
  border:1px solid transparent !important;
  color:#fff;
  font-weight:600;
  cursor:pointer;
  transition:all .2s ease;
  display:inline-flex;
  align-items:center;
  justify-content:center;
}
.bottom-bar-action-btn-outline i{
  margin-left:6px;
}

.btn-add-cart{
  min-width:0;
  height:50px;
  padding:0 28px;
  border-radius:16px;
  font-size:15px;
  font-weight:500;

}

.btn-add-cart-outline{
  border:1.5px solid #dde2e8;
  background:#fff;
  color:#1F1F1F;
  width:100%;
}

.btn-add-cart-outline:hover{
  background:#fff;
  border-color:#cfd6df;
  color:#1F1F1F;
}

.btn-buy-now{
  width:100%;
  background:#0f5a9d;
  color:#fff;
}

.btn-buy-now:hover{
  background:#0a4a82;
}
@media (max-width: 768px){
  .set-items{
    flex-direction:column !important;
  }
  .actions{
    flex-direction:column !important;
  }
  .delivery{
    gap:8px;
  }

}

@media (min-width: 769px) and (max-width: 1199.98px){
  .delivery{
    display:grid !important;
    grid-template-columns:repeat(3, 1fr);
    flex-direction:unset;
    gap:8px;
  }
  .delivery .action-btn{
    width:100%;
    flex:unset;
  }
  .delivery .action-btn:last-child:nth-child(3n+1){
    grid-column:span 3;
  }
}

@media (min-width: 769px) and (max-width: 991.98px){
  .product-detail .set-items{
    display:grid;
    grid-auto-flow:column;
    grid-auto-columns:minmax(300px, 72vw);
    justify-content:start;
    gap:14px;
    overflow-x:auto;
    overflow-y:hidden;
    padding:0 4px 12px;
    scroll-snap-type:x proximity;
    -webkit-overflow-scrolling:touch;
  }

  .product-detail .set-card{
    min-width:0;
    width:auto;
    scroll-snap-align:start;
    gap:12px;
    padding:12px;
  }

  .product-detail .set-card > img{
    width:96px;
    height:120px;
    flex:0 0 96px;
  }

  .product-detail .set-info{
    min-width:0;
  }

  .product-detail .set-info p{
    margin-bottom:8px;
    font-size:18px;
    line-height:1.25;
  }

  .product-detail .color-row{
    gap:8px;
    margin:6px 0 12px;
  }

  .product-detail .color-dot{
    flex:0 0 18px;
    width:18px;
    height:18px;
  }

  .product-detail .color-row span:last-child{
    font-size:18px;
    line-height:1.25;
  }

  .product-detail .set-info p,
  .product-detail .color-row span:last-child{
    overflow-wrap:anywhere;
  }

  .product-detail .set-actions{
    gap:10px;
    justify-content:flex-start;
  }

  .product-detail .qty{
    flex:0 0 auto;
  }

  .product-detail .add-cart{
    flex:0 0 40px;
  }
}

@media (max-width: 768px){

  .form-row{
    display:flex;
    flex-direction:column !important;
    gap:16px;
  }

  .select-box,
  .qty-box{
    width:100% !important;
  }
  .qty-box .nx-select__head{
    justify-content:space-between;
  }

}
@media (max-width: 768px){

  .product-detail-action-bar .action-buttons{
    display:grid !important;
    grid-template-columns:repeat(2, 1fr);
    gap:10px;
  }

  .product-detail-action-bar .action-btn{
    width:100%;
    height:60px;
    justify-content:center;
  }
  .product-detail-action-bar .action-btn:last-child:nth-child(odd){
    grid-column:span 2;
  }

}

.modal{
  z-index:99999;
}

.modal-backdrop{
  z-index:99998;
}

.modal-backdrop.show{
  opacity:0.5;
}

#actionModal{
  z-index:99999;
}

#actionModal .modal-dialog{
  max-width:720px;
}

#actionModal .modal-content{
  background-color:#fff;

}

.bottom-bar-action-btn-outline{
  background-color:#fff;
  color:#4b5563;
  border:1px solid #e4e8ef;
  border-radius:16px;
  padding:10px 28px;
  width:100%;
  white-space:nowrap;
  font-weight:600;
  transition:all .2s ease;
}

.bottom-bar-action-btn-outline:hover{
  background-color:#f4f7fb !important;
  border-color:#cfd8e6 !important;
  color:#4b5563 !important;
}

.bottom-bar-action-btn{
  background-color:var(--bg-primary);
  color:#fff;
  border-radius:16px;
  padding:10px 28px;
  width:100%;
  white-space:nowrap;
  border:1px solid transparent;
  font-weight:600;
  transition:all .2s ease;
}

.bottom-bar-action-btn:hover{
  background-color:var(--bg-secondary) !important;
  color:#fff !important;
  border-color:transparent !important;
  transform:translateY(-1px);
  box-shadow:none !important;
}

.link-input-wrapper{
  position:relative;
  width:100%;
}

.link-input-wrapper input{
  width:100%;
  padding:16px 140px 16px 20px;
  border-radius:16px;
  border:none;
  background:#EDEDED;
  font-size:14px;
  outline:none;
  color:#696C70;
}

.link-copy-btn{
  position:absolute;
  right:6px;
  top:50%;
  transform:translateY(-50%);

  padding:10px 20px;
  border-radius:16px;
  border:none;

  background:#0F4C81;
  color:#fff;
  font-size:14px;
  cursor:pointer;
}

.note-form-wrapper{
  width:100%;
}

.note-label{
  font-weight:600;
  font-size:14px;
  margin-bottom:6px;
  display:block;
}

.note-label span{
  font-weight:400;
  font-size:12px;
  color:#8A8A8A;
  margin-left:6px;
}

.note-input{
  width:100%;
  height:40px;
  border:1px solid #ddd;
  border-radius:6px;
  padding:0 10px;
  outline:none;
}

.note-textarea{
  width:100%;
  height:140px;
  border:1px solid #ddd;
  border-radius:6px;
  padding:10px;
  resize:none;
  outline:none;
}

.note-actions{
  display:flex;
  justify-content:flex-end;
  margin-top:16px;
}

.basket-block{
  display:block;
}

.basket-select-wrap{
  position:relative;
  width:100%;
}
.basket-select-arrow{
  position:absolute;
  right:12px;
  top:50%;
  transform:translateY(-50%);
  font-size:18px;
  color:#696C70;
  pointer-events:none;
  display:flex;
  align-items:center;
}
.basket-input{
  width:100%;
  height:48px;
  border:1px solid #ddd;
  border-radius:8px;
  padding:0 40px 0 14px;
  outline:none;
  appearance:none;
  -webkit-appearance:none;
  cursor:pointer;
}

.basket-action{
  display:flex;
  justify-content:flex-end;
  margin-top:10px;
}
.feedback-submit-btn{
  border-radius:16px !important;
  padding:10px 22px !important;
  font-size:14px !important;
  font-weight:600 !important;
  border:1px solid #e4e8ef !important;
  cursor:pointer;
  transition:all .2s ease !important;
  display:inline-flex !important;
  align-items:center !important;
  justify-content:center !important;
  background:#fff !important;
  color:#4b5563 !important;
  height:auto !important;
  min-height:unset !important;
  box-shadow:none !important;
}
.feedback-submit-btn:hover{
  background:#f4f7fb !important;
  border-color:#cfd8e6 !important;
  color:#4b5563 !important;
}

.basket-btn{
  border-radius:16px;
  padding:10px 22px;
  font-size:14px;
  font-weight:600;
  border:1px solid transparent;
  cursor:pointer;
  transition:all .2s ease;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  background:var(--bg-primary);
  color:#fff;
  height:auto;
  min-height:44px;
}
.basket-btn:hover{
  background:var(--bg-secondary);
  border-color:transparent;
  transform:translateY(-1px);
  box-shadow:none;
  color:#fff;
}
.nx-select--basket .nx-select__head{
  height:56px;
  border-radius:14px;
  background:#FAFAFA;
  border:1px solid #EAEAEA;
  padding:0 18px;
}
.nx-select--basket .nx-select__value{
  font-size:15px;
  color:#222;
}
.nx-select--basket .nx-select__icon{
  opacity:0.7;
}
.nx-select--basket .nx-select__list{
  border-radius:14px;
  border:1px solid #EAEAEA;
}
.nx-select--basket .nx-select__list li{
  padding:12px 18px;
}
.nx-select--basket .nx-select__list li:hover{
  background:#F5F5F5;
}

.anvogue-cart-section{
  background:#fff;
  padding-top:3rem !important;
  padding-bottom:1.5rem !important;
}
.cart-expire-alert{
  display:flex;
  align-items:center;
  justify-content:center;
  gap:8px;
  min-height:54px;
  margin-bottom:14px;
  padding:12px 16px;
  border:1px solid #F1D4D4;
  border-radius:8px;
  background:#FFF6F6;
  color:#1f2937;
  font-size:14px;
  text-align:center;
}
.cart-expire-alert i{
  color:#D63031;
  font-size:17px;
}
.cart-shipping-progress{
  min-height:88px;
  margin-bottom:16px;
  padding:16px 20px;
  border:1px solid #E8E8E8;
  border-radius:8px;
  background:#fff;
}
.cart-shipping-progress span{
  color:#111;
  font-size:15px;
}
.cart-shipping-progress__label{
  color:#696C70 !important;
}
.cart-shipping-progress__track{
  height:7px;
  margin-top:12px;
  border-radius:999px;
  background:#EFEFEF;
  overflow:hidden;
}
.cart-shipping-progress__track span{
  display:block;
  height:100%;
  border-radius:inherit;
  background:linear-gradient(90deg, var(--bg-primary), var(--bg-secondary));
}
.cart-table-card{
  border:1px solid #E7E7E7;
  border-radius:8px;
  overflow-x:auto;
  -webkit-overflow-scrolling:touch;
  background:#fff;
}
.cart-table-card .cart-table-head,
.cart-table-card .cart-items-list{
  min-width:780px;
}
.cart-table-head{
  display:grid;
  grid-template-columns:2fr 1fr 1fr 1fr 1fr 1fr 88px;
  gap:12px;
  padding:14px 18px;
  background:#F7F7F7;
  color:var(--bg-primary);
  font-size:14px;
  font-weight:800;
}
.cart-table-head span:nth-child(n+2){
  text-align:center;
}
.cart-item{
  background:#fff;
  border-bottom:1px solid #EDEDED;
}
.cart-item:last-child{
  border-bottom:0;
}
.cart-item__inner{
  display:grid;
  grid-template-columns:2fr 1fr 1fr 1fr 1fr 1fr 88px;
  align-items:center;
  gap:12px;
  padding:16px 18px;
}
.cart-item__inner > *{
  min-width:0;
}
.cart-item__product,
.cart-item__unit,
.cart-item__seri,
.cart-item__discount,
.cart-item__price{
  overflow:hidden;
}
.cart-item__qty,
.cart-item__remove{
  overflow:visible;
}
.cart-item__product{
  display:flex;
  align-items:center;
  gap:18px;
  min-width:0;
  overflow:hidden;
}
.cart-item__img{
  width:92px;
  height:112px;
  flex:0 0 auto;
  overflow:hidden;
  border-radius:8px;
  background:#F5F5F5;
}
.cart-item__img img{
  width:100%;
  height:100%;
  object-fit:cover;
}
.cart-item__title{
  margin:0 0 8px;
  color:var(--bg-primary);
  font-size:15px;
  font-weight:800;
  line-height:1.35;
  overflow:hidden;
  text-overflow:ellipsis;
  display:-webkit-box;
  -webkit-line-clamp:2;
  line-clamp:2;
  -webkit-box-orient:vertical;
}
.cart-item__variant{
  color:#696C70;
  font-size:13px;
  white-space:normal;
  word-break:break-word;
}
.cart-item__unit,
.cart-item__price,
.cart-item__seri,
.cart-item__discount{
  color:var(--bg-primary);
  font-size:14px;
  font-weight:800;
  text-align:center;
  white-space:nowrap;
  overflow:hidden;
  text-overflow:ellipsis;
}
.cart-item__qty{
  display:flex;
  justify-content:center;
}
.cart-item__qty .mini-cart-v2__qty{
  width:106px;
  height:38px;
  border:1px solid #E5E7EB;
  border-radius:999px;
  background:#fff;
}
.cart-item__remove{
  display:flex;
  justify-content:center;
  align-items:center;
  gap:8px;
}

.cart-item__remove a{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  width:36px;
  height:36px;
  border:1px solid #F2F2F2;
  border-radius:50%;
  background:#fff;
  color:#374957;
  font-size:14px;
  cursor:pointer;
  text-decoration:none;
  transition:all .25s ease;
  flex-shrink:0;
}

.cart-item__remove a i{
  font-size:14px;
  line-height:1;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  color:#374957;
  pointer-events:none;
}

.cart-item__remove a:hover{
  border-color:#053F70;
  background:#053F70;
  color:#fff;
}

.cart-item__remove a:hover i{
  color:#fff;
}

.cart-item__remove a[onclick*="remove"] i{
  color:#FF0B0F;
}

.cart-item__remove a[onclick*="remove"]:hover i{
  color:#fff;
}

.cart-item__remove a[id*="favorite"].is-active,
.cart-item__remove a[data-is-favorite="1"]{
  background:#053F70;
  border-color:#053F70;
}

.cart-item__remove a[id*="favorite"].is-active i,
.cart-item__remove a[data-is-favorite="1"] i{
  color:#fff;
}

.cart-item__remove button{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  width:36px;
  height:36px;
  border:1px solid #F2F2F2;
  border-radius:50%;
  background:#fff;
  color:#374957;
  cursor:pointer;
  transition:all .25s ease;
}

.cart-item__remove button:hover{
  border-color:#053F70;
  background:#053F70;
  color:#fff;
}
.cart-icon-btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  width:36px;
  min-width:36px;
  height:36px;
  flex-shrink:0;
  border-radius:50%;
  background:#fff;
  border:1.5px solid #EEEEEE;
  color:#6B7280;
  cursor:pointer;
  transition:background .2s ease, color .2s ease, border-color .2s ease;
  text-decoration:none;
  line-height:1;
}
.cart-icon-btn i{
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:18px !important;
  line-height:1;
  color:inherit;
}
.cart-icon-btn:hover{
  background:#053F70;
  border-color:#053F70;
  color:#fff;
}
.cart-icon-btn.is-active{
  background:#053F70;
  border-color:#053F70;
  color:#fff;
}
.cart-icon-btn.is-active i{
  color:#fff;
}
.cart-coupon-grid{
  display:grid;
  grid-template-columns:repeat(3, minmax(0, 1fr));
  gap:16px;
  margin-top:28px;
}
.cart-promo-card{
  display:flex;
  min-height:150px;
  flex-direction:column;
  justify-content:space-between;
  padding:20px;
  border:1px solid rgba(0,41,92,.16);
  border-radius:8px;
  background:#fff;
}
.cart-promo-card span{
  display:block;
  color:#696C70;
  font-size:13px;
  font-weight:500;
  text-transform:uppercase;
}
.cart-promo-card strong{
  display:block;
  margin:6px 0;
  color:var(--bg-primary);
  font-size:24px;
  line-height:1.15;
}
.cart-promo-card small{
  color:#696C70;
  font-size:14px;
}
.cart-promo-card button{
  align-self:flex-start;
  margin-top:16px;
  padding:9px 16px;
  border:1px solid var(--bg-primary);
  border-radius:999px;
  background:#fff;
  color:var(--bg-primary);
  font-size:14px;
  font-weight:800;
}
.cart-promo-card button:hover{
  background:var(--bg-primary);
  color:#fff;
}
.cart-promo-card button.is-applied{
  background:var(--bg-primary);
  color:#fff;
}
.cart-summary-card{
  position:sticky;
  top:118px;
  padding:28px;
  border:1px solid rgba(0,41,92,.16);
  border-radius:8px;
  background:#fff;
}
.cart-summary-card h2{
  margin:0 0 22px;
  color:var(--bg-primary);
  font-size:24px;
  font-weight:800;
}
.cart-summary-row,
.cart-summary-total{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:16px;
}
.cart-summary-row{
  margin-bottom:14px;
  color:#696C70;
  font-size:15px;
}
.cart-summary-row strong{
  color:var(--bg-primary);
}
.cart-summary-shipping{
  padding:18px 0;
  border-top:1px solid #E7E7E7;
  border-bottom:1px solid #E7E7E7;
}
.cart-summary-shipping label{
  display:grid;
  grid-template-columns:18px 1fr auto;
  align-items:center;
  gap:10px;
  margin-top:12px;
  color:#3f4650;
  font-size:14px;
}
.cart-summary-shipping input{
  accent-color:var(--bg-primary);
}
.cart-summary-total{
  margin:20px 0;
  color:var(--bg-primary);
  font-size:18px;
  font-weight:800;
}
.cart-coupon-box{
  position:relative;
  width:100%;
  margin-bottom:14px;
}
.cart-coupon-box input{
  width:100%;
  height:50px;
  border-radius:8px;
  border:1px solid #E3E3E3;
  background:#fff;
  padding:0 104px 0 16px;
  font-size:14px;
  outline:none;
  color:var(--bg-primary);
}
.cart-coupon-box button{
  position:absolute;
  top:50%;
  right:5px;
  transform:translateY(-50%);
  height:40px;
  padding:0 16px;
  border-radius:6px;
  border:none;
  background:var(--bg-primary);
  color:#fff;
  font-size:13px;
  font-weight:800;
  cursor:pointer;
}
.cart-coupon-box button:hover{
  background:var(--bg-secondary);
}
.cart-summary-note-wrap{
  margin-bottom:14px;
}
.cart-summary-note-btn{
  width:100%;
  border:1px solid #E3E3E3;
  border-radius:8px;
  background:transparent;
  color:#000;
  padding:13px 8px;
  display:flex;
  align-items:center;
  justify-content:center;
  gap:8px;
  font-family:'Nunito', sans-serif;
  font-weight:600;
  font-size:14px;
  cursor:pointer;
}
.cart-summary-note-btn.is-active,
.cart-summary-note-btn:hover{
  color:#004E91;
  background:#F3F5F6;
}
.cart-btn-primary{
  width:100%;
  height:50px;
  border-radius:8px;
  border:none;
  background:var(--bg-primary);
  color:#fff;
  font-weight:800;
  transition:0.25s;
  text-decoration:none;
  display:flex !important;
  align-items:center;
  justify-content:center;
  text-align:center;
  line-height:1;
  padding:0 16px;
}

.cart-btn-primary:hover{
  background:var(--bg-secondary);
  color:#fff;
}

.cart-btn-outline{
  width:100%;
  height:50px;
  margin-top:10px;
  border-radius:8px;
  border:1px solid var(--bg-primary);
  background:#fff;
  color:var(--bg-primary);
  font-weight:800;
  display:flex !important;
  align-items:center;
  justify-content:center;
  text-align:center;
  line-height:1;
  padding:0 16px;
  text-decoration:none;
  transition:0.25s;
}

.cart-btn-outline:hover{
  background:var(--bg-primary);
  color:#fff;
}
@media (max-width: 1199.98px){
  .cart-table-head,
  .cart-item__inner{
    grid-template-columns:2fr 1fr 1fr 1fr 1fr 1fr 88px;
    gap:10px;
  }
  .cart-coupon-grid{
    grid-template-columns:1fr;
  }
}
@media (max-width: 991.98px){
  .cart-summary-card{
    position:static;
  }
}
@media (max-width: 767.98px){
  .cart-expire-alert{
    align-items:flex-start;
    text-align:left;
  }
  .cart-summary-card{
    padding:22px;
  }
}
.mini-cart{
  width:380px;
}

@media (max-width:576px){
  .mini-cart{
    width:100%;
  }
}
.mini-cart-v2{
  position:relative;
  display:flex;
  gap:12px;
  padding-bottom:16px;
  margin-bottom:16px;
  border-bottom:1px solid #eee;
}
.mini-cart-v2__remove{
  position:absolute;
  top:-4px;
  right:-4px;

  width:22px;
  height:22px;

  border-radius:50%;
  border:1px solid #eee;
  background:#fff;

  display:flex;
  align-items:center;
  justify-content:center;

  font-size:14px;
  cursor:pointer;
}
.mini-cart-v2__img img{
  width:75px;
  height:90px;
  object-fit:cover;
  border-radius:12px;
}
.mini-cart-v2__content{
  flex:1;
}
.mini-cart-v2__title{
  font-size:14px;
  font-weight:600;
  margin-bottom:4px;
}
.mini-cart-v2__meta{
  font-size:12px;
  color:#777;
  margin-bottom:10px;
}
.mini-cart-v2__bottom{
  display:flex;
  justify-content:space-between;
  align-items:center;
}
.mini-cart-v2__qty{
  display:flex;
  align-items:center;
  background:#F3F4F6;
  border-radius:10px;
  overflow:hidden;
  justify-content: center;
  text-align: center;
  align-items: center;
}

.mini-cart-v2__qty button{
  width:28px;
  height:28px;
  border:none;
  background:transparent;
  cursor:pointer;
  align-items: center;
}

.mini-cart-v2__qty span{
  padding:0 10px;
  font-size:13px;
}
.mini-cart-v2__price{
  font-weight:600;
  font-size:14px;
  color:#004E91;
}
.mini-cart-total{
  display:flex;
  justify-content:space-between;
  font-weight:500;
  margin-bottom:12px;
}
.mini-cart-btn-outline{
  display:block;
  width:100%;
  text-align:center;

  height:48px;
  line-height:48px;

  border-radius:24px;
  border:1px solid #004E91;
  color:#000;

  margin-bottom:10px;
  text-decoration:none;
}

.mini-cart-btn-primary{
  display:block;
  width:100%;
  text-align:center;

  height:52px;
  line-height:52px;

  border-radius:26px;
  background:#053F70;
  color:#fff;
  text-decoration:none;
}

.contact-icon img{
  width:22px;
  height:22px;
  object-fit:contain;
}

.contact-item p{
  font-size:14px;
}

.contact-item a{
  font-size:14px;
}

.contact-section{
  background:#ffffff;
  padding-bottom:0rem !important;
  padding-top:3rem !important;
}
.contact-info{
  background:#00295C;
  color:#fff;
  padding:40px;
  border-radius:16px;
  font-size:0.9rem;
}

.contact-info h2{
  font-weight:500;
}

.contact-info a{
  color:#fff;
  text-decoration:none;
}

.contact-item{
  display:flex;
  align-items:center;
  gap:10px;
}

.contact-item i{
  font-size:18px;
  color:#fff;
  margin:0;
}
.social-icons a{
  display:inline-block;
  width:40px;
  height:40px;
  background:#053F70;
  color:#fff;
  border-radius:50%;
  text-align:center;
  line-height:40px;
  margin-right:10px;
  transition:.3s;
}

.social-icons a:hover{
  background:#fff;
  color:#00295C;
}
.contact-form{
  background:#fff;
  padding:40px;          
  border-radius:16px;
  margin-top:0 !important;
}


.contact-form-label{
  display:block;
  color:#1F1F1F;
  font-family:'Nunito', sans-serif;
  font-weight:500;
  font-size:15px;
  line-height:1;
  letter-spacing:0;
  margin-bottom:6px;
}
.contact-form h3{
  font-weight:600;
}

.contact-form .form-control{
  height:50px;
  border-radius:10px;
  border:1px solid #ddd;
  color:#1F1F1F;
  font-size:14px;
}

.contact-form .form-control::placeholder{
  color:#c6c6c6;
  font-size:14px;
  font-weight:400;
}

.contact-form textarea.form-control{
  height:130px;
  padding:10px 10px !important;
  resize:none;
}

.contact-btn{
  border-radius:16px;
  padding:10px 22px;
  font-size:14px;
  font-weight:600;
  border:1px solid transparent;
  cursor:pointer;
  transition:all .2s ease;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  background:var(--bg-primary);
  color:#fff;
}

.contact-btn:hover{
  background:var(--bg-secondary);
  border-color:transparent;
  transform:translateY(-1px);
  box-shadow:none;
  color:#fff;
}
.map-area{
  margin-top:3rem;
  margin-bottom:1.5rem;
}

.map-area iframe{
  width:100%;
  height:350px;
  border-radius:16px;
}
@media (max-width: 768px){

  .contact-info,
  .contact-form{
    padding:25px;
  }
}

.contact-section .contact-item i{
  color:#fff;
  font-size:18px;
  margin-right:10px;
}

.social-icons-contact-us{
  margin-top:40px;
}

.social-icons-contact-us a{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  width:50px;
  height:50px;
  background:#053F70;
  border-radius:50%;
  margin-right:10px;
  transition:.3s;
}

.social-icons-contact-us a img{
  width:22px;
}

.social-icons-contact-us a:hover{
  background:#fff;
}

.contact-check{
  font-size:14px;
  color:#555;
}

.contact-check input{
  margin-top:3px;
}

.contact-check label{
  cursor:pointer;
}

@media (max-width: 768px){

  .contact-info,
  .contact-form{
    padding:20px;
  }

  .contact-item{
    font-size:14px;
  }

  .social-icons-contact-us{
    text-align:center;
  }
}

.account-page.section-py {
  padding-top: 3rem;
}
.account-sidebar{
  padding:20px;
  box-shadow:none;
}

.account-user{
  margin-bottom:20px;
}

.account-user img{
  width:80px;
  height:80px;
  border-radius:50%;
  margin-bottom:10px;
}

.account-user h6{
  margin:0;
  font-weight:600;
}

.account-user p{
  font-size:13px;
  color:#888;
}
.account-menu{
  display:flex;
  flex-direction:column;

}

.account-menu li{
  list-style:none;
  border:none;
}
.account-menu li a{
  display:flex;
  align-items:center;
  gap:12px;
  padding:7px 14px;
  border-radius:12px;
  text-decoration:none;
  color:#000000;
  font-size:14px;
  border:none !important;
  transition:all .2s ease;
}
.account-menu li a img{
  width:20px;
  height:20px;
  opacity:0.7;
}
.account-menu li:not(.active) a:hover{
  background:transparent;
}
.account-card{
  border-radius:16px;
  padding:24px;
  box-shadow:none;
}

.account-title{
  font-weight:600;
  margin-bottom:20px;
}
.account-page h5:not(.modal-title):not(.announcement-detail-modal__title){
  font-family:'Nunito',sans-serif;
  font-weight:600;
  font-style:normal;
  font-size:20px;
  line-height:24px;
  letter-spacing:0%;
  color:#000000;
}
.account-input{
  color:#1F1F1F;

  outline:none;
  transition:0.2s;
}
.account-input:focus{
  border-color:#00295C;
}
select.account-input{
  appearance:none;
  padding-right:36px;
  cursor:pointer;
}
.account-input-select-wrapper{
  position:relative;
}
.account-input-select-wrapper .account-select-icon{
  position:absolute;
  right:12px;
  top:0;
  bottom:0;
  display:flex;
  align-items:center;
  justify-content:center;
  pointer-events:none;
  font-size:14px;
  line-height:1;
  color:#888;
}
.account-input-select-wrapper .account-select-icon .fi{
  display:flex;
  align-items:center;
  line-height:1;
}
.account-select{
  width:100%;
  height:52px;

  background-color:#fff;
  border:1px solid #F2F2F2;
  border-radius:12px;

  padding:0 40px 0 14px;

  font-size:14px;
  color:#1F1F1F;

  outline:none;
  appearance:none;
  background:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M19.92 8.95l-6.52 6.52c-.77.77-2.03.77-2.8 0L4.08 8.95' stroke='%23888' stroke-width='1.5' stroke-miterlimit='10' stroke-linecap='round' stroke-linejoin='round' fill='none'/%3E%3C/svg%3E") no-repeat center;
  background-repeat:no-repeat;
  background-position:right 12px center;
  background-size:16px;
}
.account-select:focus{
  border-color:#00295C;
}
.account-social-row{
  display:flex;
  gap:10px;
  margin-bottom:10px;
}

.account-remove{
  width:48px;
  height:48px;
  border-radius:12px;
  border:none;
  background:#ffe5e5;
  color:red;
}

.account-add{
  border-radius:16px;
  padding:10px 22px;
  font-size:14px;
  font-weight:600;
  border:1px solid #e4e8ef;
  cursor:pointer;
  transition:all .2s ease;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  background:#fff;
  color:#4b5563;
}

.account-add:hover{
  background:#f4f7fb;
  border-color:#cfd8e6;
}

@media (max-width: 992px){
  .account-sidebar{
    margin-bottom:20px;
  }
}

@media (max-width: 576px){

  .account-card{
    padding:16px;
  }

  .account-title{
    font-size:16px;
  }

  .account-input{
    height:44px;
  }

}
.account-acc-item{
  background:#fff;
  border-radius:16px;
  margin-bottom:16px;
  box-shadow:none;
}

.account-acc-head{
  background:none;
  padding:18px 20px;
  color:#000000;
  font-weight:500;
}
.account-acc-head span{
  font-family:'Nunito',sans-serif;
  font-weight:600;
  font-style:normal;
  font-size:20px;
  line-height:24px;
  letter-spacing:0%;
  color:#000000;
}
.account-acc-head i{
  transition:.25s;
}
.account-acc-body{
  padding:20px;
}
.account-input{
  height:40px;
  border-radius:16px;
  border:1px solid #F2F2F2;
  padding:10px 16px;
  font-size:14px;
  background-color:#fff;
  box-shadow:none;
  box-sizing:border-box;
}

.account-input:focus{
  outline:none;
  box-shadow:none;
}

.account-password input{
  padding-right:40px;
}

.account-password img{
  right:12px;
}
.account-social{
  gap:10px;
  margin-bottom:10px;
}
.account-table{
  border-top:1px solid #eee;
}

.account-table-row{
  display:flex;
  justify-content:space-between;
  padding:12px 0;
  border-bottom:1px solid #eee;
}

.account-table-row.head{
  font-weight:600;
}
.account-table .actions{
  display:flex;
  gap:10px;
}

.account-table img{
  width:16px;
  cursor:pointer;
}
.account-btn{
  padding:14px 40px;
}
@media (max-width: 768px){

  .account-acc-body{
    padding:16px;
  }

  .account-input,
  .account-password input{
    height:48px;
  }

}

.account-create-btn{
  border-radius:16px;
  padding:10px 22px;
  font-size:14px;
  font-weight:600;
  border:1px solid transparent;
  cursor:pointer;
  transition:all .2s ease;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  background:var(--bg-primary);
  color:#fff;
}

.account-create-btn:hover{
  background:var(--bg-secondary);
  border-color:transparent;
  transform:translateY(-1px);
  box-shadow:none;
}
.account-table{

  border-radius:16px;
}
.account-table-header{
  background:#f7f7f7;
  padding:14px;
  border-bottom:1px solid #eee;
}
.account-table-item{

  padding:16px;
  border-bottom:1px solid #eee;
}
.account-table-item:last-child{
  border-bottom:none;
}
.account-table-user{
  color:#666;
  font-size:14px;
}
.account-table-actions img{
  width:16px;
}

.account-form-group label{
  color:#1F1F1F;
  font-weight:500;
  font-size:14px;
  display:block;
  margin-bottom:6px;
}
.account-page{
  overflow-x:hidden;
}
.account-sidebar{
  border-radius:16px;
  padding:16px;
  background:#fff;
  height:100%;
}
@media (max-width: 991px){
  .account-sidebar{
    margin-bottom:20px;
  }

  .account-menu{
    display:flex;
    overflow-x:auto;
    gap:10px;
    padding-bottom:10px;
  }

  .account-menu li{
    flex:0 0 auto;
  }

  .account-menu a{
    white-space:nowrap;
    padding:10px 14px;
    border-radius:10px;
    background:#f5f5f5;
    font-size:13px;
  }
}
.account-acc-head{
  padding:14px 16px;
  border-radius:12px;
  font-size:14px;
}

.account-input,
.account-select{
  width:100%;
  height:44px;
}
@media (max-width: 768px){
  .account-accordion .row > div{
    width:100%;
  }
}
.account-table{
  overflow-x:auto;
}

.account-table-header,
.account-table-item{
  min-width:500px;
}

.account-social .account-input{
  flex:1;
}
@media (max-width: 768px){
  .account-create-btn{
    width:100%;
  }
}
@media (max-width: 768px){
  .newsletter-box{
    text-align:center;
  }

  .newsletter-input-wrapper{
    width:100%;
  }

  .newsletter-input-wrapper input{
    width:100%;
  }
}
@media (max-width: 768px){
  .navbar-brand img{
    max-height:32px;
  }
}

.account-user{
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:center;
  text-align:center;
  width:100%;
}
.account-user img{
  display:block;
  margin-bottom:12px;
}
.account-user h6{
  width:100%;
  text-align:center;
  margin-bottom:4px;
}
.account-user p{
  width:100%;
  text-align:center;
  margin:0;
}
.account-menu{
  list-style:none;
  padding:0;
  margin:0;
}

.account-menu li{
  padding:10px 12px;
  border-radius:10px;
  cursor:pointer;
  font-size:14px;
  color:#374957;
  transition:all .2s ease;
}

.account-menu li:not(:has(a.active)):hover{
  background:#f2f2f2;
}

.account-menu li.active{
  background:#00295C;
  color:#fff;
}
.account-acc-item{
  border:1px solid #F2F2F2;
  border-radius:14px;
  margin-bottom:14px;
  overflow:hidden;
}

.account-acc-head{
  width:100%;
  padding:16px;
  background:#fff;
  border:none;
  display:flex;
  justify-content:space-between;
  align-items:center;
  font-weight:600;
}

.account-acc-head i{
  transition:.2s;
}

.account-acc-head:not(.collapsed) i{
  transform:rotate(180deg);
}

.account-acc-body{
  padding:16px;
  border-top:1px solid #F2F2F2;
}
.account-form-group{
  display:flex;
  flex-direction:column;
  gap:6px;
}

.account-form-group label{
  font-size:13px;
  color:#374957;
}
.account-input,
.account-select{
  height:46px;
  border-radius:10px;
  padding:0 14px;
  border:1px solid #F2F2F2;
  font-size:14px;

}

.account-password img{
  position:absolute;
  right:10px;
  top:50%;
  transform:translateY(-50%);
  width:18px;
  cursor:pointer;
}
.account-social{
  display:flex;
  gap:8px;
}
.account-add{
  margin-top:10px;
}
.account-table{
  border-radius:12px;
}

.account-table-header,
.account-table-item{
  display:flex;
  justify-content:space-between;
  padding:12px 16px;
}

.account-table-header{
  background:#F9FAFB;
  font-weight:600;
}

.account-btn{
  background:#00295C;
  color:#fff;
  border-radius:12px;
  padding:10px 24px;
  border:none;
}
.account-box{
  padding:20px;
}
.account-box-header{
  margin-bottom:15px;
}

.account-search i{
  color:#999;
}
.account-table-header{
  font-weight:500;
}
.account-table-item .actions{
  display:flex;
  gap:10px;
}

.account-table-item button{
  width:32px;
  height:32px;
  border:1px solid #F2F2F2;
  border-radius:6px;
  background:#fff;
}

.account-table-item button.danger{
  color:red;
}
.account-add-btn{
  margin-top:15px;
  border-radius:16px;
  padding:10px 22px;
  font-size:14px;
  font-weight:600;
  border:1px solid #e4e8ef;
  cursor:pointer;
  transition:all .2s ease;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  background:#fff;
  color:#4b5563;
}

.account-add-btn:hover{
  background:#f4f7fb;
  border-color:#cfd8e6;
}
@media (max-width: 768px){
  .account-table-item{
    flex-direction:column;
    align-items:flex-start;
    gap:10px;
  }

  .account-table-header{
    display:none;
  }
}

.account-box{
  border:1px solid #F2F2F2;
  overflow:hidden;
}
.account-box-header{
  width:100%;
  border:none;
  background:transparent;
  padding:18px 20px;
  display:flex;
  justify-content:space-between;
  align-items:center;
  cursor:pointer;
}

/* Akordiyon: alttaki 15px boşluk metni yukarı iter; dikey denge için kaldır */
.account-box > .account-box-header[data-bs-toggle="collapse"]{
  margin-bottom:0;
}

.account-box-header h6{
  margin:0;
  padding:0;
  font-family:'Nunito',sans-serif;
  font-weight:600;
  font-style:normal;
  font-size:20px;
  line-height:24px;
  letter-spacing:0%;
  color:#000000;
}
.account-box-header i{
  line-height:1;
  transition:0.3s;
}

.account-box-header[aria-expanded="true"] i{
  transform:rotate(180deg);
}
.account-box-body{
  padding:0 20px 20px;
}
.account-search{
  position:relative;
  margin-bottom:15px;
}

.account-search input{
  width:100%;
  height:40px;
  border:1px solid #F2F2F2;
  border-radius:8px;
  padding:0 40px 0 12px;
}

.account-search i{
  position:absolute;
  right:12px;
  top:50%;
  transform:translateY(-50%);
}
.account-table{
  border:1px solid #F2F2F2;
  border-radius:10px;
  overflow:hidden;
}

.account-table-header{
  display:flex;
  justify-content:space-between;
  background:#F7F7F7;
  padding:12px 15px;
}

.account-table-item{
  display:flex;
  justify-content:space-between;
  padding:14px 15px;
  border-top:1px solid #F2F2F2;
  align-items:center;
}
.actions{
  display:flex;
  gap:10px;
}

.actions button{
  width:32px;
  height:32px;
  border:1px solid #F2F2F2;
  background:#fff;
  border-radius:6px;
}

.actions .danger{
  color:red;
}
@media (max-width: 768px){
  .account-table-item{
    flex-direction:column;
    align-items:flex-start;
  }

  .account-table-header{
    display:none;
  }
}
.account-input{
  width:100%;
  height:45px;
  border:1px solid #F2F2F2;
  border-radius:8px;
  padding:0 12px;
}
.account-password{
  position:relative;
}

.account-password i{
  position:absolute;
  right:0;
  top:50%;
  transform:translateY(-50%);
  display:inline-flex;
  align-items:center;
  justify-content:center;
  width:36px;
  height:36px;
  border:1px solid #F2F2F2;
  border-radius:50%;
  background:#fff;
  color:#374957;
  font-size:14px;
  line-height:1;
  cursor:pointer;
  transition:all 0.25s ease;
}

.account-password i:hover{
  border-color:#053F70;
  background:#053F70;
  color:#fff;
}
.password-info{
  margin-top:15px;
  background:#F7F7F7;
  border-left:3px solid #004E91;
  padding:12px;
  border-radius:8px;
  font-size:13px;
}
.security-item{
  display:flex;
  justify-content:space-between;
  align-items:center;
  padding:15px 0;
  border-bottom:1px solid #F2F2F2;
}

.security-item p{
  margin:0;
  color:#000;
  font-size:14px;
}
.switch{
  width:45px;
  height:24px;
}

.switch span{
  width:100%;
  height:100%;
  border-radius:20px;
  transition:0.3s;
}

.switch span::before{
  top:3px;
  left:3px;
  transition:0.3s;
}
.account-save-btn{
  background:#053F70;
  color:#fff;
  border:none;
  padding:12px 30px;
  border-radius:8px;
  width:100%;
}
@media (max-width: 768px){
  .security-item{
    flex-direction:column;
    align-items:flex-start;
    gap:10px;
  }
}

.account-card{
  background:#fff;
  border-radius:12px;
  border:1px solid #F2F2F2;
}
.notification-table{
  border-radius:16px;
  overflow:hidden;
  border:1px solid #eee;
  background:#fff;
}

.notification-table table{
  width:100%;
  border-collapse:collapse;
}
.notification-table thead{
  background:#f7f7f7;
}

.notification-table th{
  text-align:left;
  padding:18px 20px;
  font-weight:600;
  color:#000;
}

.notification-table th:not(:first-child){
  text-align:center;
}
.notification-table td{
  padding:18px 20px;
  border-top:1px solid #f1f1f1;
  vertical-align:middle;
}

.notification-table td:not(:first-child){
  text-align:center;
}
.notification-table strong{
  display:block;
  font-size:15px;
  margin-bottom:4px;
}

.notification-table p{
  font-size:13px;
  color:#777;
  margin:0;
}
.switch{
  position:relative;
  width:42px;
  height:22px;
  display:inline-block;
}

.switch input{
  display:none;
}

.switch span{
  position:absolute;
  cursor:pointer;
  background:#ddd;
  border-radius:50px;
  inset:0;
  transition:.3s;
}

.switch span::before{
  content:"";
  position:absolute;
  width:18px;
  height:18px;
  background:#fff;
  border-radius:50%;
  top:2px;
  left:2px;
  transition:.3s;
}

.switch input:checked+span{
  background:#053F70;
}

.switch input:checked+span::before{
  transform:translateX(20px);
}
@media (max-width: 768px){
  .notification-row{
    grid-template-columns:1fr;
    gap:10px;
  }
}

.account-box{
  background:#fff;
  border:1px solid #eee;
  border-radius:12px;
  padding:24px;
}

.account-menu li.active a{
  background:#f4f7fb;
  border:1px solid #cfd8e6 !important;
}
.account-table-v2{
  border-radius:16px;
  overflow:hidden;
  border:1px solid #eee;
  background:#fff;
}
.account-table-v2 th:not(:last-child),
.account-table-v2 td:not(:last-child){
  border-right:1px solid #eee;
}

.account-table-v2 table{
  width:100%;
  border-collapse:collapse;
}
.account-table-v2 thead{
  background:#f7f7f7;
}

.account-table-v2 th{
  text-align:left;
  padding:18px 20px;
  font-weight:600;
  color:#000;
}

.account-table-v2 th:not(:first-child){
  text-align:center;
}
.account-table-v2 td{
  padding:18px 20px;
  border-top:1px solid #f1f1f1;
  vertical-align:middle;
}

.account-table-v2 td:not(:first-child){
  text-align:center;
}
.account-table-v2 strong{
  display:block;
  font-size:15px;
  margin-bottom:4px;
}

.account-table-v2 p{
  font-size:13px;
  color:#777;
  margin:0;
}
.copy-icon-btn{
  cursor:pointer;
  color:#888;
  font-size:16px;
  padding:4px;
  border-radius:6px;
  transition:background 0.2s ease;
  vertical-align:middle;
}
.copy-icon-btn:hover{
  background:rgba(0,0,0,0.07);
}
@media (max-width: 991.98px){
  .notification-table,
  .account-table-v2{
    overflow-x:auto;
    overflow-y:hidden;
    -webkit-overflow-scrolling:touch;
    scrollbar-width:none;
    -ms-overflow-style:none;
  }

  .notification-table::-webkit-scrollbar,
  .account-table-v2::-webkit-scrollbar{
    display:none;
  }

  .notification-table table{
    min-width:560px;
  }

  .account-table-v2 table{
    min-width:720px;
  }
}

@media (max-width: 768px){
  .account-table-v2 th,
  .account-table-v2 td{
    padding:10px 8px;
    font-size:12px;
  }

  .fav-img img{
    max-width:44px !important;
    max-height:44px !important;
  }
}

.custom-progress{
  height:6px;
  background:#eee;
  border-radius:999px;
  overflow:hidden;
  display:none;
}

.custom-progress.is-visible{
  display:block;
}

.custom-progress-bar{
  width:0;
  height:100%;
  background:var(--bg-primary);
  border-radius:inherit;
  transition:width 0.2s ease, transform 0.2s ease;
}

.iade-btn{
  background:#f5f5f5;
  border:none;
  padding:10px 18px;
  border-radius:10px;
  font-size:14px;
}

.search-icon{
  position:absolute;
  right:15px;
  top:50%;
  transform:translateY(-50%);
  color:#999;
}

.fav-img{
  display:flex;
  flex-direction:column;
  align-items:center;
  font-size:12px;
  color:#777;
}

.fav-img i{
  font-size:20px;
  margin-bottom:4px;
}

.notify-img{
  width:50px;
  height:60px;
  object-fit:cover;
  border-radius:6px;
}

.account-menu li.active a{
  background:#f4f7fb;
  color:#4b5563;
  border-radius:8px;
  border:1px solid #cfd8e6 !important;
}

.account-menu li.active img{
  filter:brightness(0) saturate(100%) invert(38%) sepia(8%) saturate(567%) hue-rotate(182deg) brightness(93%) contrast(92%);
}

.bank-item{
  border:1px solid #eee;
  padding:20px;
  border-radius:12px;
  margin-bottom:20px;
}

.bank-logo{
  width:180px;
}

.iban-box{
  background:#f5f5f5;
  padding:10px;
  border-radius:8px;
  margin-top:10px;
  display:flex;
  justify-content:space-between;
}

.bank-alert{
  border:1px solid #0d3b66;
  padding:20px;
  border-radius:10px;
  background:#f7fbff;
}

.bank-row{
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding:0 14px;
  border-radius:0;
  margin-bottom:0;
  background:#F7F7F7;
  height:52px;
  box-sizing:border-box;
  border-bottom:1px solid #EBEBEB;
}

.bank-row:nth-child(even){
  background:#ffffff;
}

.bank-row span{
  font-weight:500;
  color:#666;
  min-width:140px;
}

.bank-row p{
  margin:0;
  color:#333;
}

.iban-row{
  position:relative;
}

.iban-row i{
  position:absolute;
  right:12px;
  cursor:pointer;
  color:#888;
}

.bank-form{
  border:1px solid #eee;
  border-radius:12px;
}
.eft-info-list{
  list-style:none;
  padding:0;
}

.eft-info-list li{
  position:relative;
  padding-left:28px;
  margin-bottom:15px;
  color:#666;
}

.eft-info-list li::before{
  position:absolute;
  left:0;
  top:0;
  color:#0d3b66;
  font-weight:bold;
}
.bank-form label{
  margin-bottom:5px;
  display:block;
}
.file-input-wrapper{
  border:1px solid #eee;
  padding:12px;
  background:#fafafa;
}

.file-input-wrapper input{
  position:absolute;
  inset:0;
  opacity:0;
  cursor:pointer;
}

.file-input-wrapper span{
  color:#999;
}

.file-input-wrapper i{
  position:absolute;
  right:12px;
  top:50%;
  transform:translateY(-50%);
}
.captcha-box{
  height:45px;
  background:#eee;
}
.submit-btn{
  background:#0d3b66;
  padding:12px;
  border-radius:12px;
}

@media (max-width: 992px){

  .account-sidebar{
    margin-bottom:20px;
  }

  .account-menu{
    display:flex;
    overflow-x:auto;
    gap:10px;
    padding:10px;
  }

  .account-menu li{
    flex:0 0 auto;
  }

  .account-menu li {
    white-space:nowrap;
    padding:10px 14px;
    background:#fff;
    border-radius:16px;
  }
  .account-user{
    display:none;
  }
}
.account-menu::-webkit-scrollbar{
  display:none;
}
.account-menu li a.active{
  background:#f4f7fb !important;
  color:#4b5563 !important;
  font-weight:600;
  border:1px solid #cfd8e6 !important;
}
.account-menu li a.active img{
  filter:brightness(0) saturate(100%) invert(38%) sepia(8%) saturate(567%) hue-rotate(182deg) brightness(93%) contrast(92%) !important;
}
.profile-social-trash{
  background-color:#F2F2F2;
  border-radius:12px;
  text-align:center;
  align-items:center;
  border:none;
  padding:1rem;
  cursor:pointer;

  transition:all 0.25s ease;
}
.profile-social-trash:hover{
  background-color:#ffffff;
  transform:translateY(-3px);
  box-shadow:none;
}
.account-sidebar-collapse{
  display:block;
}

.account-sidebar-toggle{
  display:none;
  width:100%;
  align-items:center;
  justify-content:space-between;
  gap:12px;
  border:1px solid #E9EEF4;
  background:#F8FAFC;
  border-radius:14px;
  padding:12px 14px;
  margin-bottom:12px;
  font-weight:500;
  color:#1F1F1F;
}

.account-sidebar-toggle i{
  transition:transform 0.2s ease;
}

.account-sidebar.is-open .account-sidebar-toggle i{
  transform:rotate(180deg);
}

@media (max-width: 1199.98px){
  .account-sidebar{
    margin-bottom:20px;
    padding:14px;
    border:1px solid #EEF2F7;
    box-shadow:none;
  }

  .account-sidebar-toggle{
    display:flex;
  }

  .account-sidebar-collapse{
    display:none;
  }

  .account-sidebar.is-open .account-sidebar-collapse{
    display:block;
  }

  .account-user{
    display:flex !important;
    flex-direction:column !important;
    align-items:center;
    justify-content:center;
    gap:8px;
    text-align:center !important;
    margin-bottom:12px;
  }

  .account-user img{
    width:64px;
    height:64px;
    margin-bottom:0;
    border-radius:50%;
    object-fit:cover;
    flex-shrink:0;
  }

  .account-user h6,
  .account-user p{
    text-align:center;
  }

  .account-menu{
    display:flex;
    flex-direction:column;
    overflow:visible;
    gap:8px;
    padding:0;
  }

  .account-menu li{
    flex:none;
    padding:0;
  }

  .account-menu li a{
    display:flex;
    align-items:center;
    gap:10px;
    white-space:normal;
    padding:12px 14px;
    border:1px solid #EEF2F7;
    background:#F8FAFC;
    border-radius:12px;
  }

  .account-menu li a img{
    width:18px;
    flex-shrink:0;
  }
  .account-page .row.g-4{
    flex-direction:column;
  }

  .account-page .col-lg-2,
  .account-page .col-lg-10{
    width:100%;
    max-width:100%;
    flex:0 0 100%;
  }

  .account-sidebar{
    width:100%;
  }
}

@media (min-width: 1200px){
  .account-sidebar-collapse{
    display:block !important;
  }

  .account-sidebar-toggle{
    display:none !important;
  }

  .account-page .row.g-4{
    flex-wrap:nowrap;
  }

  .account-page .col-lg-2{
    flex:0 0 280px;
    max-width:280px;
    width:280px;
  }

  .account-page .col-lg-10{
    flex:1 1 auto;
    max-width:calc(100% - 280px);
  }

  .account-menu li a{
    white-space:nowrap;
  }
}
.profile-social-trash:active{
  transform:scale(0.97);
  box-shadow:none;
}

.account-input[type="date"]::-webkit-calendar-picker-indicator{
  opacity:0;
  position:absolute;
  right:10px;
  width:100%;
  height:100%;
  cursor:pointer;
}

.date-input-wrapper{
  position:relative;
}

.date-icon{
  position:absolute;
  right:12px;
  top:50%;
  transform:translateY(-50%);
  font-size:16px;
  color:#888;
  pointer-events:none;
  display:flex;
  align-items:center;
}
.product-list-section.section-py{
  padding-top:3rem;
}
.products-section .product-card,
.products-section .products-wrapper .product-card,
.product-list-section .products-wrapper .product-card{
  height:100%;
}

.products-section .product-card .product-image,
.products-section .products-wrapper .product-image,
.product-list-section .products-wrapper .product-image{
  aspect-ratio:4 / 5;
}

/* fluid product-bottom: buton ve yazı birlikte ölçeklenir */
.products-section .product-card,
.products-section .products-wrapper .product-card,
.product-list-section .product-card,
.product-list-section .products-wrapper .product-card{
  --btn-size: clamp(28px, 3.2vw, 44px);
  --btn-icon: clamp(11px, 1.1vw, 14px);
  --price-fs: clamp(11px, 1.2vw, 14px);
  --price-strong-fs: clamp(13px, 1.5vw, 17px);
  --price-label-fs: clamp(11px, 1.1vw, 14px);
  --price-del-fs: clamp(10px, 1vw, 13px);
}

.products-section .product-card .product-bottom,
.products-section .products-wrapper .product-bottom,
.product-list-section .product-card .product-bottom,
.product-list-section .products-wrapper .product-bottom{
  display:flex !important;
  align-items:center;
  justify-content:space-between;
  gap:clamp(4px, 0.5vw, 8px);
  flex-wrap:nowrap !important;
}

.products-section .product-card .price,
.products-section .products-wrapper .price,
.product-list-section .product-card .price,
.product-list-section .products-wrapper .price{
  font-size:var(--price-fs) !important;
  white-space:nowrap !important;
  flex-shrink:1 !important;
  min-width:0 !important;
  margin-top:0 !important;
  line-height:1;
  overflow:hidden;
  text-overflow:ellipsis;
}

.products-section .product-card .price strong,
.products-section .products-wrapper .price strong,
.product-list-section .product-card .price strong,
.product-list-section .products-wrapper .price strong{
  font-size:var(--price-strong-fs) !important;
}

.products-section .product-card .price .price-label,
.products-section .product-card .price .price-amounts .price-label,
.products-section .products-wrapper .price .price-label,
.products-section .products-wrapper .price .price-amounts .price-label,
.product-list-section .product-card .price .price-label,
.product-list-section .product-card .price .price-amounts .price-label,
.product-list-section .products-wrapper .price .price-label,
.product-list-section .products-wrapper .price .price-amounts .price-label{
  font-size:clamp(11px, 1.1vw, 14px) !important;
}

.products-section .product-card .price .price-amounts del,
.products-section .products-wrapper .price .price-amounts del,
.product-list-section .product-card .price .price-amounts del,
.product-list-section .products-wrapper .price .price-amounts del{
  font-size:var(--price-del-fs) !important;
}

.products-section .product-card .actions,
.products-section .products-wrapper .actions,
.product-list-section .product-card .actions,
.product-list-section .products-wrapper .actions{
  display:flex !important;
  flex-direction:row !important;
  flex-wrap:nowrap !important;
  flex-shrink:0 !important;
  gap:clamp(4px, 0.4vw, 6px);
  width:auto !important;
  margin-left:auto;
}

.products-section .product-card .actions button,
.products-section .product-card .actions a,
.products-section .products-wrapper .actions button,
.products-section .products-wrapper .actions a,
.product-list-section .product-card .actions button,
.product-list-section .product-card .actions a,
.product-list-section .products-wrapper .actions button,
.product-list-section .products-wrapper .actions a{
  flex:0 0 var(--btn-size) !important;
  width:var(--btn-size) !important;
  height:var(--btn-size) !important;
  min-width:var(--btn-size) !important;
  min-height:var(--btn-size) !important;
  padding:0 !important;
  border-radius:50% !important;
  border:1.31px solid #EEEEEE !important;
  background:#FFFFFF !important;
}

.products-section .product-card .actions img,
.products-section .products-wrapper .actions img,
.product-list-section .product-card .actions img,
.product-list-section .products-wrapper .actions img{
  width:var(--btn-icon);
  height:var(--btn-icon);
}

.products-section .product-card .actions button:hover,
.products-section .product-card .actions a:hover,
.products-section .products-wrapper .actions button:hover,
.products-section .products-wrapper .actions a:hover,
.product-list-section .products-wrapper .actions button:hover,
.product-list-section .products-wrapper .actions a:hover{
  background:#053F70 !important;
  border-color:#053F70 !important;
  color:#fff !important;
}

.products-section .product-card .actions button:hover i,
.products-section .product-card .actions a:hover i,
.products-section .products-wrapper .actions button:hover i,
.products-section .products-wrapper .actions a:hover i,
.product-list-section .products-wrapper .actions button:hover i,
.product-list-section .products-wrapper .actions a:hover i{
  color:#fff !important;
}

@media (max-width: 768px){
  .products-section .product-tabs{
    width:100%;
    justify-content:center !important;
    flex-wrap:nowrap;
    gap:4px;
    padding:6px 8px;
    border-radius:18px;
    overflow-x:auto;
    -webkit-overflow-scrolling:touch;
    scrollbar-width:none;
  }

  .products-section .product-tabs::-webkit-scrollbar{
    display:none;
  }

  .products-section .tab-btn{
    flex:0 0 auto;
    white-space:nowrap;
    font-size:11px;
    padding:6px 10px;
  }

  .products-section .product-card,
  .products-section .products-wrapper .product-card,
  .product-list-section .products-wrapper .product-card{
    padding:8px;
  }

  .products-section .product-card .color-swatches,
  .products-section .products-wrapper .color-swatches,
  .product-list-section .products-wrapper .color-swatches{
    margin-top:8px;
    margin-bottom:8px;
    gap:4px;
  }

  .products-section .product-card .swatch,
  .products-section .products-wrapper .swatch,
  .product-list-section .products-wrapper .swatch{
    width:28px;
    height:28px;
    border-radius:7px;
  }

  .products-section .product-card .product-title,
  .products-section .products-wrapper .product-title,
  .product-list-section .products-wrapper .product-title{
    font-size:12px;
    line-height:1.2;
    margin-bottom:2px;
  }

  .products-section .product-card .product-rating,
  .products-section .products-wrapper .product-rating,
  .product-list-section .products-wrapper .product-rating{
    font-size:11px;
    margin-bottom:4px;
  }

  .products-section .product-card .product-bottom,
  .products-section .products-wrapper .product-bottom,
  .product-list-section .products-wrapper .product-bottom{
    gap:6px;
  }

  .products-section .product-card .price,
  .products-section .products-wrapper .price,
  .product-list-section .products-wrapper .price{
    font-size:11px;
    white-space:nowrap;
  }

  .products-section .product-card .actions,
  .products-section .products-wrapper .actions,
  .product-list-section .products-wrapper .actions{
    gap:4px;
  }

  .products-section .product-card .actions button,
  .products-section .product-card .actions a,
  .products-section .products-wrapper .actions button,
  .products-section .products-wrapper .actions a,
  .product-list-section .products-wrapper .actions button,
  .product-list-section .products-wrapper .actions a{
    flex-basis:30px !important;
    width:30px !important;
    height:30px !important;
    min-width:30px !important;
    min-height:30px !important;
  }

  .products-section .product-card .actions img,
  .products-section .products-wrapper .actions img,
  .product-list-section .products-wrapper .actions img{
    width:14px;
    height:14px;
  }
}

@media (max-width: 575.98px){
  .products-section .tab-content .row > [class*="col-"],
  .products-section .products-wrapper > [class*="col-"],
  .product-list-section #productGrid > [class*="col-"],
  .product-list-section .products-wrapper > [class*="col-"]{
    flex:0 0 50%;
    max-width:50%;
  }

  .products-section .product-card,
  .products-section .products-wrapper .product-card,
  .product-list-section .products-wrapper .product-card{
    padding:8px;
  }

  .products-section .product-card .product-bottom,
  .products-section .products-wrapper .product-bottom,
  .product-list-section .products-wrapper .product-bottom{
    flex-wrap:wrap;
    align-items:flex-start;
    gap:8px;
  }

  .products-section .product-card .price,
  .products-section .products-wrapper .price,
  .product-list-section .products-wrapper .price{
    white-space:normal;
    min-width:0;
  }

  .products-section .product-card .actions,
  .products-section .products-wrapper .actions,
  .product-list-section .products-wrapper .actions{
    margin-left:0;
  }

  .product-list-section .nx-select{
    width:100%;
    min-width:0;
  }

  .product-list-section .listing-toolbar-actions{
    flex-direction:row !important;
    flex-wrap:wrap;
    gap:8px;
  }

  .product-list-section .listing-toolbar-actions .nx-select{
    flex:1 1 calc(50% - 4px);
    min-width:0;
  }

  .product-list-section .listing-toolbar-actions .view-switch{
    width:100%;
    justify-content:flex-end;
  }
}

.about-hero h1{
  font-size:clamp(28px, 5vw, 42px);
}

.about-section h3{
  font-size:26px;
}

.feature-box{
  background:#fff;
  border-radius:16px;
  transition:0.3s;
}

.feature-box:hover{
  transform:translateY(-5px);
  box-shadow:none;
}

.text-brand{
  color:#004E91;
}
.about-modern .about-card{
  aspect-ratio:1 / 1;
  border-radius:12px;
  background:#f3f3f3;
}

.about-modern .about-card img{
  height:100%;
}
.nx-blog-card{
  transition:0.3s ease;
  display:block;
  text-decoration:none;
  color:inherit;
  cursor:pointer;
}

.nx-blog-card:hover{
  color:inherit;
}

.nx-blog-card:hover .nx-blog-title{
  color:#004E91;
}

.blog-list-section .nx-blog-title{
  font-size:16px;
}
.blog-list-section .nx-blog-link{
  font-size:14px;
}

.blog-list-section > .container-fluid > .row > [class*="col-"]{
  display:flex;
}

.blog-list-section .nx-blog-card{
  display:flex;
  flex-direction:column;
  flex:1;
  width:100%;
}

.blog-list-section .nx-blog-card > .pt-3{
  display:flex;
  flex:1;
  flex-direction:column;
}

.blog-list-section .nx-blog-title{
  display:-webkit-box;
  -webkit-box-orient:vertical;
  -webkit-line-clamp:3;
  overflow:hidden;
  flex:1;
}

.nx-blog-img{
  overflow:hidden;
  border-radius:16px;
  aspect-ratio:4 / 3;
}

.nx-blog-img img,
.nx-blog-img.adaptive-image-frame > img,
.nx-blog-img > img.fit-frame-image{
  display:block;
  width:100%;
  height:100%;
  max-width:none;
  border-radius:inherit;
  object-fit:cover;
  object-position:center;
  transition:0.4s ease;
}
.nx-blog-card:hover img{
  transform:scale(1.06);
}

.nx-blog-card:hover{
  transform:translateY(-6px);
}
.nx-blog-badge{
  position:absolute;
  top:14px;
  left:14px;
  font-size:12px;
  padding:6px 10px;
  border-radius:20px;
  background:#053F70;
}
.nx-blog-date{
  font-size:13px;
  color:#999;
}
.nx-blog-title{
  font-size:18px;
  margin-bottom:10px;
}
.nx-blog-link{
  font-weight:600;
  color:#000;
  text-decoration:none;
  display:inline-flex;
  gap:6px;
  align-items:center;
  transition:0.2s;
}

.nx-blog-link span{
  transition:0.2s;
}

.nx-blog-link:hover{
  color:#004E91;
}

.nx-blog-link:hover span{
  transform:translateX(4px);
}
.blog-section .row{
  row-gap:40px;
}
.blog-list-section .row {
  align-items: stretch;
}
.blog-list-section [class*="col-"] {
  display: flex;
}
.blog-list-section .blog-card {
  width: 100%;
  display: flex;
  flex-direction: column;
}
.blog-list-section .blog-card > .pt-3 {
  flex: 1;
  display: flex;
  flex-direction: column;
}
.blog-list-section .blog-card .blog-title {
  flex: 1;
}
.blog-list-section .blog-card .blog-link {
  margin-top: auto;
}
.store-box{
  background:#fff;
  border-radius:var(--radius-md);
  border:1px solid #eee;
  box-shadow:none;
  transition:transform 0.3s ease, box-shadow 0.3s ease;
}

.store-box:hover{
  transform:translateY(-4px);
  box-shadow:none;
}
.store-img{
  position:relative;
  aspect-ratio:16 / 9;
  overflow:hidden;
  background:#e9eef5;
}

.store-img img{
  position:absolute;
  inset:0;
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;
}
.store-content{
  padding:36px;
  background:linear-gradient(180deg, #fff 0%, #fbfcfe 100%);
  display:flex;
  flex-direction:column;
  justify-content:center;
  width:100%;
  height:100%;
}

.store-content h3{
  font-weight:500;
  font-size:28px;
  color:var(--bg-primary);
  margin-bottom:0;
}
.store-content h6{
  font-weight:600;
  margin-bottom:6px;
  color:#1f1f1f;
  font-size:14px;
}

.store-content p,
.store-content a,
.store-content b{
  color:#1F1F1F;
  font-size:14px;
  margin:0;
  font-family:'Nunito Sans', sans-serif;
  font-weight:400;
  text-decoration:none;
}
.store-social{
  display:flex;
  gap:10px;
  flex-wrap:wrap;
}

.store-social a{
  text-decoration:none;
  color:inherit;
  display:inline-flex;
}

.store-social i{
  width:36px;
  height:36px;
  background:rgba(0, 41, 92, 0.08);
  color:var(--bg-primary);
  border-radius:50%;
  display:flex;
  align-items:center;
  justify-content:center;
  transition:0.3s;
  font-size:15px;
}

.store-social-fb-circle{
  width:36px;
  height:36px;
  background:rgba(0, 41, 92, 0.08);
  border-radius:50%;
  display:flex;
  align-items:center;
  justify-content:center;
  transition:0.3s;
}
.store-social-fb:hover .store-social-fb-circle{
  background:var(--bg-primary);
  transform:translateY(-2px);
}
.store-social-fb:hover .store-social-fb-circle path{
  fill:#fff;
}

.store-social i:hover{
  background:var(--bg-primary);
  color:#fff;
  transform:translateY(-2px);
}

.store-directions-btn{
  display:inline-flex;
  align-items:center;
  gap:6px;
  padding:7px 16px;
  background:rgba(0, 41, 92, 0.08);
  color:rgb(0, 41, 92) !important;
  border-radius:16px;
  font-size:13px;
  font-weight:500;
  text-decoration:none;
  transition:0.3s;
  margin-top:18px !important;
}
.store-directions-btn:hover,
.store-content .store-directions-btn:hover{
  background:var(--bg-primary);
  color:#fff !important;
  transform:translateY(-2px);
}
.store-directions-btn:hover i{
  color:#fff !important;
}
@media (max-width: 991px){
  .store-content{
    padding:24px;
  }
}

@media (max-width: 768px){
  .store-content{
    padding:20px;
  }

  .store-content h3{
    font-size:22px;
  }
}
.support-section{
  background:#f8f9fb;
  padding-top:3rem !important;
}
.support-group{
  scroll-margin-top:120px;
  margin-top:2rem;
}
.support-group:first-child{
  margin-top:0;
}
.support-menu{
  background:#fff;
  border-radius:16px;
  padding:18px;
  border:1px solid #eee;
  display:flex;
  flex-direction:column;
  gap:8px;
}

.support-menu__item{
  padding:12px 14px;
  border-radius:16px;
  color:#666;
  font-weight:500;
  text-decoration:none;
  transition:0.2s ease;
}

.support-menu__item:hover{
  background:#f1f3f7;
  color:#000;
}

.support-menu__item.active{
  background:rgba(0, 78, 145, 0.1);
  color:#004E91;
  font-weight:600;
}
.support-box{
  background:rgb(17, 77, 135);
  border-radius:16px;
  padding:30px;
  color:#fff;
}
.support-title{
  font-size:26px;
  font-weight:600;
  margin-bottom:25px;
}
.support-list{
  display:flex;
  flex-direction:column;
  gap:12px;
}
.support-item{
  background:#114D87;
  color:#fff;
  border-radius:16px;
  overflow:hidden;
}
.support-question{
  padding:16px 18px;
  display:flex;
  align-items:center;
  gap:10px;
  cursor:pointer;
  font-size:15px;
  color:#333;
}

.support-question span{
  font-size:13px;
  color:#999;
}
.support-question i{
  margin-left:auto;
  font-size:14px;
  color:#999;
  transition:0.3s;
}
.support-answer{
  padding:0 18px;
  font-size:14px;
  color:#555;
  overflow-wrap:break-word;
}
.support-item.active .support-answer,
.support-answer.collapse.show{
  padding:0 18px 15px;
}

.support-item.active i{
  transform:rotate(180deg);
}
.support-item{
  background:transparent;
  border-bottom:1px solid rgba(255,255,255,0.2);
  border-radius:0;
}
.support-question{
  color:#fff;
}
.support-question span{
  color:rgba(255,255,255,0.6);
}
.support-question i{
  color:rgba(255,255,255,0.7);
}
.support-answer{
  color:rgba(255,255,255,0.85);
}
.support-more-btn{
  display:inline-block;
  margin-top:20px;
  background:#fff;
  color:#355f8c;
  padding:10px 20px;
  border-radius:12px;
  font-weight:500;
  text-decoration:none;
  transition:0.2s;
}

.support-more-btn:hover{
  background:#eaeaea;
}
@media (max-width: 991px){
  .support-box{
    padding:25px;
  }
}
@media (max-width: 768px){

  .support-menu{
    flex-direction:row;
    overflow-x:auto;
    white-space:nowrap;
  }

  .support-menu__item{
    flex:0 0 auto;
  }

  .support-title{
    font-size:20px;
  }

  .support-question{
    font-size:14px;
  }
}
.login-wrapper{
  display:grid;
  grid-template-columns:minmax(0, 1fr) minmax(0, 1fr);
  gap:60px;
  width:100%;
  margin:0 auto;
  background:#fff;
  border-radius:var(--radius-md);
  padding:40px;
  border:1px solid #eee;
  box-shadow:none;
}
.login-left,
.login-right{
  min-width:0;
}
.login-right{
  border-left:1px solid #e5e5e5;
  padding-left:60px;
  display:flex;
  flex-direction:column;
  justify-content:center;
  align-items:flex-start;
}
.login-title{
  font-size: 28px;
  font-weight:600;
  margin-bottom:25px;
  color:#000;
}

.login-field .account-input{
  background:#fff;
  border:1px solid #e9edf2;
  box-shadow:none;
}

.login-field .account-input:focus{
  border-color:var(--bg-primary);
}
.login-field--password{
  position:relative;
}
.login-field--password .account-input{
  padding-right:44px;
}
.password-toggle-btn{
  position:absolute;
  right:12px;
  top:50%;
  transform:translateY(-50%);
  background:none;
  border:none;
  padding:0;
  cursor:pointer;
  color:#9ca3af;
  display:flex;
  align-items:center;
  font-size:16px;
  line-height:1;
}
.password-toggle-btn:hover{
  color:#6b7280;
}
.login-options{
  display:flex;
  justify-content:space-between;
  align-items:center;
  margin-bottom:20px;
  gap:12px;
}
.login-forgot{
  font-size:14px;
  font-weight:600;
  color:#4b5563;
  text-decoration:none;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:10px 22px;
  border-radius:16px;
  border:1px solid #e4e8ef;
  background:#fff;
  cursor:pointer;
  transition:all .2s ease;
  white-space:nowrap;
}
.login-forgot:hover{
  background:#f4f7fb;
  border-color:#cfd8e6;
  color:#4b5563;
}
.login-desc{
  color:#666;
  max-width:400px;
  margin-bottom:25px;
}
.login-btn{
  width:auto;
  min-width:160px;
  height:46px;
  border:none;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  transition:all 0.25s ease;
  text-decoration:none;
}

.login-btn--primary{
  background:var(--bg-primary);
  color:#fff;
}

.login-btn--primary:hover{
  background:var(--bg-secondary);
  transform:translateY(-2px);
  box-shadow:none;
}

.login-btn--secondary{
  background:#fff;
  color:#4b5563;
  border:1px solid #e4e8ef;
  border-radius:16px;
}

.login-btn--secondary:hover{
  background:#f4f7fb;
  border-color:#cfd8e6;
  color:#4b5563;
}
@media (max-width: 992px){
  .login-wrapper{
    grid-template-columns:1fr;
    padding:28px;
  }

  .login-right{
    border-left:none;
    border-top:1px solid #e5e5e5;
    padding-left:0;
    padding-top:30px;
  }
}

@media (max-width: 576px){
  .login-wrapper{
    padding:20px;
  }

  .login-options{
    flex-direction:column;
    align-items:flex-start;
    gap:10px;
  }

  .login-left .btn,
  .login-right .btn{
    width:100%;
  }

  .login-btn{
    height:48px;
  }
}
.auth-wrapper{
  display:grid;
  grid-template-columns:minmax(0, 1fr) minmax(0, 1fr);
  gap:48px;
  justify-content:space-between;
  width:100%;
  margin:0 auto;
  background:#fff;
  border:1px solid #eee;
  border-radius:var(--radius-md);
  padding:40px;
  box-shadow:none;
}
.auth-left{
  min-width:0;
}
.auth-right{
  border-left:1px solid #e5e5e5;
  padding-left:60px;
  display:flex;
  flex-direction:column;
  justify-content:center;
  align-items:flex-start;
}
.auth-title{
  font-size:28px;
  font-weight:600;
  margin-bottom:16px;
  color:#000;
}
.auth-desc{
  color:#000;
  margin-bottom:24px;
  max-width:400px;
}
.auth-eyebrow{
  display:inline-block;
  margin-bottom:10px;
  font-size:12px;
  letter-spacing:0.08em;
  text-transform:uppercase;
  font-weight:500;
  color:#000;
}
.auth-field .account-input{
  background:#fff;
  border:1px solid #e9edf2;
  box-shadow:none;
}

.auth-field .account-input:focus{
  border-color:var(--bg-primary);
}
.auth-checkbox{
  display:flex;
  align-items:center;
  gap:8px;
  font-size:14px;
  color:#666;
}
.auth-benefits{
  display:grid;
  gap:12px;
  margin-bottom:24px;
}

.auth-benefit{
  display:flex;
  align-items:center;
  gap:10px;
  padding:12px 14px;
  border-radius:12px;
  background:rgba(0, 41, 92, 0.05);
  color:#000;
  font-size:14px;
}

.auth-benefit i{
  color:var(--bg-primary);
  font-size:16px;
}
.login-btn{
  padding:0 22px;
  border-radius:12px;
  font-weight:600;
}
@media (max-width: 992px){
  .auth-wrapper{
    grid-template-columns:1fr;
    gap:32px;
    padding:28px;
  }

  .auth-right{
    border-left:none;
    padding-left:0;
    border-top:1px solid #e5e5e5;
    padding-top:30px;
  }
}

@media (max-width: 576px){
  .auth-wrapper{
    padding:20px;
  }

  .auth-title{
    font-size:22px;
  }

  .auth-benefit{
    font-size:13px;
  }

  .login-btn{
    width:100%;
    min-width:0;
  }
}
.anvogue-checkout-section{
  background:#fff;
  padding-top:3rem !important;
  padding-bottom:1.5rem !important;
}
.checkout-login-note{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:16px;
  margin-bottom:24px;
  padding:16px 20px;
  border:1px solid rgba(0,41,92,.14);
  border-radius:8px;
  background:#F8FAFC;
  color:#3f4650;
  font-size:15px;
}
.checkout-login-note a{
  color:var(--bg-primary);
  font-weight:800;
  text-decoration:none;
}
.checkout-box,
.checkout-summary{
  background:#fff;
  border:1px solid rgba(0,41,92,.14);
  border-radius:8px;
  padding:26px;
}
.checkout-summary{
  position:sticky;
  top:118px;
}
.checkout-box-head{
  display:flex;
  align-items:center;
  gap:12px;
  margin-bottom:22px;
}
.checkout-box-head span{
  width:32px;
  height:32px;
  border-radius:50%;
  display:flex;
  align-items:center;
  justify-content:center;
  background:var(--bg-primary);
  color:#fff;
  font-size:14px;
  font-weight:900;
}
.checkout-title{
  margin:0 0 20px;
  color:var(--bg-primary);
  font-size:24px;
  font-weight:800;
}
.checkout-box-head .checkout-title{
  margin:0;
}
.checkout-section .account-input{
  height:50px;
  border:1px solid #f2f2f2 !important;
  border-radius:8px !important;
  background-color:#fff;
  color:#111827;
  font-size:14px;
  box-shadow:none;
}
.checkout-section select.account-input{
  color:#696C70;
}
.checkout-section .account-input:focus{
  border-color:var(--bg-primary) !important;
  box-shadow:none;
}
.checkout-field-label{
  display:flex;
  align-items:center;
  gap:4px;
  margin-bottom:8px;
  color:#696C70;
  font-size:14px;
  font-weight:800;
}
.checkout-field-label span{
  color:#dc2f4f;
}
.checkout-textarea{
  min-height:118px;
  height:auto !important;
  resize:vertical;
  padding-top:14px;
}
.checkout-checks,
.checkout-radio-stack{
  display:grid;
  gap:10px;
  color:#696C70;
  font-weight:500;
}
.checkout-checks label,
.checkout-radio-stack label{
  display:flex;
  align-items:center;
  gap:8px;
  margin:0;
}
.checkout-checks input,
.checkout-radio-stack input,
.checkout-cargo-table input{
  accent-color:#0d6efd;
}
.checkout-cargo-table{
  overflow:hidden;
  border:1px solid #E5E7EB;
  border-radius:8px;
  overflow-x:auto;
  margin:0 20px 16px;
}
.checkout-cargo-head,
.checkout-cargo-table label{
  display:grid;
  grid-template-columns:2fr 1fr 2fr;
  align-items:center;
  min-width:620px;
}
.checkout-store-table .checkout-cargo-head,
.checkout-store-table label{
  grid-template-columns:minmax(0,1.5fr) minmax(0,2.5fr) minmax(0,1.2fr) minmax(0,0.8fr);
  min-width:760px;
}
.checkout-cargo-head{
  min-height:64px;
  background:#fff;
  color:#dc2f4f;
}
.checkout-cargo-head strong{
  display:flex;
  align-items:center;
  justify-content:center;
  gap:8px;
  min-height:64px;
  padding:14px;
  border-right:1px solid #E5E7EB;
  font-size:16px;
  font-weight:900;
  text-align:center;
  white-space:nowrap;
}
.checkout-cargo-head strong:last-child{
  border-right:0;
}
.checkout-cargo-head strong i{
  display:inline-flex;
  align-items:center;
  line-height:1;
}
.checkout-cargo-table label{
  min-height:56px;
  border-top:1px solid #E5E7EB;
  cursor:pointer;
}
.checkout-cargo-table label > span{
  min-height:56px;
  padding:12px 14px;
  display:flex;
  align-items:center;
  justify-content:center;
  gap:8px;
  border-right:1px solid #E5E7EB;
  color:#696C70;
  font-weight:500;
  overflow:hidden;
}
.checkout-cargo-table label > span:last-child{
  border-right:0;
}
.checkout-store-table label > span:last-child{
  justify-content:center !important;
  width:100%;
}
.checkout-store-action{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  width:36px;
  height:36px;
  min-width:36px;
  padding:0;
  border:1px solid #EEEEEE;
  border-radius:50%;
  background:#FFFFFF;
  color:#374957;
  font-size:0;
  cursor:pointer;
  text-decoration:none;
  transition:all .2s ease;
}
.checkout-store-action i{
  color:#374957;
  font-size:12px;
  line-height:1;
  display:flex;
  align-items:center;
  justify-content:center;
  width:12px;
  height:12px;
}
.checkout-store-action:hover{
  background:#053F70;
  border-color:#053F70;
}
.checkout-store-action:hover i{
  color:#FFFFFF;
}
@media (max-width: 767.98px){
  .checkout-cargo-table{
    border-radius:8px;
  }

  .checkout-cargo-head strong,
  .checkout-cargo-table label > span{
    padding:10px 12px;
    font-size:13px;
  }
}
.checkout-payment{
  display:grid;
  gap:12px;
}
.payment-option{
  display:block;
  border:1px solid #E5E7EB;
  padding:0;
  border-radius:8px;
  cursor:pointer;
  background:#fff;
  color:#111827;
  overflow:hidden;
  transition:background .2s ease, border-color .2s ease;
}
.payment-option__head{
  display:grid;
  grid-template-columns:20px 1fr;
  align-items:center;
  gap:12px;
  padding:16px;
}
.payment-option strong{
  display:block;
  color:#2f3033;
  font-size:15px;
  font-weight:800;
}
.payment-option small{
  display:block;
  margin-top:4px;
  color:#696C70;
  font-size:13px;
  line-height:1.4;
}
.payment-option.active{
  border-color:var(--bg-primary);
  background:rgba(0,41,92,.05);
}
.payment-option.is-active{
  border-color:var(--bg-primary);
  background:rgba(0,41,92,.05);
}
.checkout-payment-box .payment-option{
  border-color:#d8d8d8;
  border-radius:8px;
}
.checkout-payment-box .payment-option__head{
  min-height:58px;
}
.checkout-payment-box .payment-option.is-active,
.checkout-payment-box .payment-option.active{
  border-color:rgb(0, 41, 92);
  background:#fff;
}
.checkout-payment-box .payment-option.is-active strong,
.checkout-payment-box .payment-option.active strong{
  color:#2f3033;
}
.checkout-payment-box .payment-option__body{
  display:none !important;
}
.payment-option__body{
  display:none;
  margin:0;
  padding:0 16px 18px 48px;
  border-top:1px solid rgb(0,41,92);
  cursor:default;
}
.payment-option.active .payment-option__body{
  display:block;
}
.payment-option.is-active .payment-option__body,
.payment-option:has(input[name="payment"]:checked) .payment-option__body{
  display:block;
}
.payment-option:not(.is-active):not(.active) .payment-option__body{
  display:none !important;
}
.payment-option__text{
  display:block;
  color:#3f4650;
  font-size:14px;
  line-height:1.55;
}
.payment-option input,
.checkout-save-card input{
  accent-color:var(--bg-primary);
}
.checkout-payment-badge{
  display:inline-flex;
  margin-top:12px;
  padding:8px 12px;
  border-radius:999px;
  background:rgba(0,41,92,.08);
  color:var(--bg-primary);
  font-size:13px;
  font-weight:800;
}
.checkout-wallet-btn{
  margin-top:14px;
  height:44px;
  padding:0 18px;
  border:0;
  border-radius:8px;
  background:var(--bg-primary);
  color:#fff;
  font-weight:800;
}
.checkout-wallet-btn:hover{
  background:var(--bg-secondary);
}
.checkout-save-card{
  display:flex;
  align-items:center;
  gap:10px;
  color:#3f4650;
  font-size:14px;
}
.checkout-item{
  display:grid;
  grid-template-columns:72px minmax(0, 1fr) auto;
  align-items:center;
  gap:14px;
  margin-bottom:16px;
  padding-bottom:16px;
  border-bottom:1px solid #EEF0F3;
}
.checkout-item img{
  width:72px;
  height:88px;
  border-radius:8px;
  object-fit:cover;
  background:#F5F5F5;
}
.checkout-item-title{
  color:var(--bg-primary);
  font-weight:800;
  line-height:1.35;
}
.checkout-item-meta{
  margin-top:4px;
  color:#696C70;
  font-size:13px;
}
.checkout-item-price{
  color:var(--bg-primary);
  font-weight:800;
  white-space:nowrap;
}
.checkout-total{
  padding-top:4px;
  color:#3f4650;
}
.checkout-total div{
  display:flex;
  justify-content:space-between;
  gap:16px;
  margin-bottom:12px;
  font-size:15px;
}
.checkout-total div span:last-child{
  color:var(--bg-primary);
  font-weight:800;
}
.checkout-total .grand{
  margin-top:16px;
  padding-top:18px;
  border-top:1px solid #E7E7E7;
  color:var(--bg-primary);
  font-weight:900;
  font-size:19px;
}
.btn-brand{
  background:var(--bg-primary);
  color:#fff;
  border:none;
  border-radius:16px;
  height:50px;
  font-weight:800;
  transition:background .22s ease, transform .22s ease, box-shadow .22s ease;
}
.btn-brand:hover,
.btn-brand:active,
.btn-brand:focus,
.btn-brand:focus-visible,
.btn-brand.active{
  background:var(--bg-secondary) !important;
  color:#fff !important;
  transform:translateY(-2px);
  box-shadow:none !important;
  outline:none;
}
.checkout-back-link{
  display:inline-flex !important;
  align-items:center;
  justify-content:center;
  gap:8px;
  margin-top:14px;
  color:#4b5563;
  font-size:14px;
  font-weight:600;
  text-decoration:none;
  border:1px solid #e4e8ef;
  border-radius:16px;
  padding:10px 22px;
  width:100%;
  background:#fff;
  cursor:pointer;
  transition:all .2s ease;
  text-align:center;
}
.checkout-back-link:hover{
  background:#f4f7fb;
  border-color:#cfd8e6;
  color:#4b5563;
}
.checkout-back-link:hover i{
  color:#4b5563;
}
@media (max-width: 991px){
  .checkout-summary{
    position:static;
  }

  .checkout-box,
  .checkout-summary{
    padding:20px;
  }
}
@media (max-width: 575.98px){
  .checkout-login-note{
    align-items:flex-start;
    flex-direction:column;
  }
  .checkout-item{
    grid-template-columns:64px 1fr;
  }
  .checkout-item-price{
    grid-column:2;
  }
}

.checkout-section{
  padding-top:3rem !important;
  padding-bottom:1.5rem !important;
}

.checkout-login-note{
  margin-bottom:18px;
  padding:12px 16px;
  font-size:14px;
}

.checkout-campaign-alert{
  display:flex;
  align-items:flex-start;
  gap:12px;
  margin-bottom:18px;
  padding:14px 16px;
  border:1px solid rgba(0,78,145,.18);
  border-radius:8px;
  background:#F4F8FC;
  color:#2f3f52;
  font-size:14px;
}

.checkout-campaign-alert[hidden],
.checkout-campaign-alert.d-none{
  display:none !important;
}

.checkout-campaign-alert i{
  flex:0 0 auto;
  color:var(--bg-secondary);
  font-size:18px;
  line-height:1.2;
}

.checkout-campaign-alert strong,
.checkout-campaign-alert span{
  display:block;
}

.checkout-campaign-alert strong{
  color:var(--bg-primary);
  font-weight:900;
}

.checkout-campaign-alert span{
  margin-top:2px;
  color:#5b6470;
}

.checkout-box{
  padding:0;
  overflow:hidden;
}

.checkout-summary,
.checkout-totals-card,
.checkout-note-card{
  padding:20px;
}

.checkout-totals-card,
.checkout-note-card{
  margin-top:14px;
  background:#fff;
  border:1px solid rgba(0,41,92,.14);
  border-radius:8px;
}

.checkout-box-head{
  position:relative;
  min-height:64px;
  margin:0;
  padding:16px 48px 16px 18px;
  cursor:pointer;
  user-select:none;
}

.checkout-box-head::after{
  content:"\F282";
  position:absolute;
  right:18px;
  top:50%;
  color:var(--bg-secondary);
  font-family:"bootstrap-icons";
  font-size:15px;
  line-height:1;
  transform:translateY(-50%);
  transition:transform .18s ease;
}

.checkout-box.is-open .checkout-box-head::after{
  transform:translateY(-50%) rotate(180deg);
}

.checkout-box-head span{
  width:28px;
  height:28px;
  background:rgba(0,78,145,.1);
  color:var(--bg-secondary);
  font-size:13px;
}

.checkout-accordion-panel{
  padding:0 18px 20px;
}

.checkout-box:not(.is-open) > :not(.checkout-box-head){
  display:none !important;
}

.checkout-accordion-panel[hidden]{
  display:none !important;
}

.checkout-title{
  font-size:20px;
}

.checkout-summary > .checkout-title,
.checkout-totals-card > .checkout-title,
.checkout-note-card > .checkout-title{
  margin-bottom:18px;
  padding-bottom:12px;
  border-bottom:1px solid #E7EAF0;
  color:#111827;
  font-size:20px;
}

.checkout-box-head .checkout-title{
  font-size:18px;
}

.checkout-section .account-input{
  height:44px;
  font-size:13px;
}

.checkout-field-label{
  margin-bottom:6px;
  font-size:13px;
}

.checkout-textarea{
  min-height:92px;
}

.checkout-section .bi,
.checkout-store-action,
.checkout-back-link i{
  color:inherit;
  line-height:1;
  display:flex;
  align-items:center;
}

.checkout-cargo-head{
  min-height:48px;
  color:var(--bg-primary);
}

.checkout-cargo-head strong{
  min-height:48px;
  padding:10px 12px;
  color:var(--bg-primary);
  font-size:14px;
}

.checkout-cargo-table label{
  min-height:48px;
}

.checkout-cargo-table label > span{
  min-height:48px;
  padding:10px 12px;
  font-size:13px;
}

.checkout-radio-stack,
.checkout-checks,
.checkout-payment{
  gap:8px;
}

.payment-option__head{
  min-height:48px;
  padding:12px 14px;
}

.checkout-payment-box .payment-option__head{
  min-height:48px;
}

.payment-option__body{
  padding:0 14px 14px 46px;
}

.checkout-payment-box .payment-option.is-active .payment-option__body,
.checkout-payment-box .payment-option.active .payment-option__body{
  display:block !important;
}

.checkout-item{
  grid-template-columns:58px minmax(0, 1fr) auto;
  gap:12px;
  margin-bottom:12px;
  padding-bottom:12px;
}

.checkout-item img{
  width:58px;
  height:72px;
}

.checkout-total div{
  min-height:36px;
  padding:0;
  border-bottom:1px solid #E6E6E6;
  margin-bottom:9px;
  font-size:14px;
}

.checkout-total .grand{
  margin-top:12px;
  padding-top:14px;
  font-size:17px;
}

.checkout-financial-total{
  padding-top:6px;
}

.checkout-financial-total div{
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:16px;
  min-height:36px;
  padding:0;
  border-bottom:1px solid #E6E6E6;
  margin-bottom:10px;
  color:#666d76;
  font-size:13px;
}

.checkout-financial-total div span:last-child{
  color:#4d535b;
  font-weight:800;
  white-space:nowrap;
}

.checkout-financial-total .strong{
  color:#4d535b;
  font-weight:900;
}

.checkout-financial-total .grand{
  margin-top:8px;
  color:var(--bg-primary);
  font-size:15px;
  font-weight:900;
}

.checkout-summary .btn-brand,
.checkout-totals-card .btn-brand{
  height:46px;
  background:#004E91;
  margin-top:14px;
}
.checkout-summary .btn-brand:hover{
  background:rgb(203, 224, 242);
  color:#004E91;
  transform:none;
  box-shadow:none;
}

.checkout-totals-card .btn-brand{
  background:var(--bg-secondary);
}

.checkout-totals-card .btn-brand:hover{
  background:var(--bg-primary);
}

.checkout-section .action-btn.checkout-page-btn{
  min-height:42px;
  padding:10px 24px;
  border-radius:12px !important;
  border:1px solid #e4e8ef;
  background:#fff;
  color:#4b5563;
  font-family:'Nunito Sans', sans-serif;
  font-weight:400;
  font-size:16px;
  line-height:22px;
  text-decoration:none !important;
  gap:6px;
  flex:1;
  transition:all .2s ease;
}

.checkout-section .action-btn.checkout-page-btn i{
  font-size:16px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  line-height:1;
  color:inherit;
  transition:color .25s ease;
}

.checkout-section .action-btn.checkout-page-btn:hover{
  background:#f4f7fb;
  border-color:#cfd8e6;
  color:#4b5563;
}

.checkout-section .action-btn.checkout-page-btn:hover i,
.checkout-section .action-btn.checkout-page-btn:hover i::before{
  color:#4b5563 !important;
}

.checkout-section .action-btn.checkout-page-btn.flex-shrink-0{
  flex:0 0 auto;
  width:fit-content;
}

@media (max-width: 575.98px){
  .checkout-success-actions{
    flex-direction:column;
  }
  .checkout-success-actions .action-btn.checkout-page-btn{
    width:100%;
    justify-content:center;
    text-align:center;
    flex:unset;
  }
}

.checkout-status-icon i{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  line-height:1;
  color:#fff;
}

.checkout-status-icon i::before{
  line-height:1;
  display:block;
}

.checkout-bank-copy{
  cursor:pointer;
  transition:color .2s ease;
}

.checkout-bank-copy:hover{
  color:var(--bg-primary, #00295C);
}

.checkout-note-input{
  min-height:60px;
  height:60px !important;
  resize:vertical;
  border-color:#D8DEE8 !important;
  border-radius:0 !important;
  background:#fff;
}

@media (max-width: 991px){
  .checkout-section{
    padding-top:24px !important;
    padding-bottom:32px !important;
  }

  .checkout-summary,
  .checkout-totals-card,
  .checkout-note-card{
    padding:18px;
  }
}

@media (max-width: 575.98px){
  .checkout-box-head{
    min-height:58px;
    padding:14px 42px 14px 14px;
  }

  .checkout-accordion-panel{
    padding:0 14px 16px;
  }

  .checkout-box-head .checkout-title{
    font-size:16px;
  }
}

.error-modern-btn{
  background-color:#004E91;
  color:#fff;
  padding:1rem;
  text-decoration:none;
  border-radius:12px;
}
.blog-detail-title{
  font-weight:600;
}

.blog-detail-content p{
  color:#555;
  line-height:1.8;
}

.blog-detail-content h5{
  margin-top:25px;
  font-weight:600;
}

.blog-quote{
  border-left:4px solid #0d6efd;
  padding-left:15px;
  font-style:italic;
  color:#333;
}
.blog-sidebar-box{
  background:#fff;
  padding:20px;
}

.blog-sidebar-box h6{
  font-weight:600;
  margin-bottom:15px;
}

.blog-sidebar-box .search-input-wrap{
  position:relative;
}

.blog-sidebar-box .search-input-wrap .form-control{
  padding-right:40px;
}

.blog-search-btn{
  position:absolute;
  top:50%;
  right:14px;
  transform:translateY(-50%);
  display:flex;
  align-items:center;
  justify-content:center;
  padding:0;
  border:0;
  background:transparent;
  color:#1f2937;
  line-height:1;
  cursor:pointer;
  transition:color 0.2s ease, transform 0.2s ease;
}

.blog-search-btn:hover,
.blog-search-btn:focus,
.blog-search-btn:focus-visible,
.blog-search-btn:active{
  color:#053F70;
  background:transparent;
  border:0;
  box-shadow:none;
  outline:none;
}

.blog-search-btn .fi{
  display:flex;
  align-items:center;
  line-height:1;
  margin-top:0;
}

.blog-search-btn .fi::before{
  color:currentColor;
}

.blog-sidebar-list{
  list-style:none;
  padding:0;
  margin:0;
}

.blog-sidebar-list li{
  margin-bottom:10px;
}

.blog-sidebar-list a{
  text-decoration:none;
  color:#333;
}

.blog-recent-item{
  display:flex;
  align-items:center;
  gap:10px;
  margin-bottom:15px;
}

.blog-recent-item img{
  width:70px;
  height:70px;
  object-fit:cover;
  border-radius:8px;
}

.blog-recent-item .title{
  font-size:14px;
  font-weight:500;
}
.blog-tags a{
  display:inline-block;
  margin:5px;
  padding:5px 10px;
  background:#f2f2f2;
  border-radius:20px;
  font-size:12px;
}
@media (max-width: 991px){
  .blog-detail{
    padding-top:30px;
  }
}

.nx-blog-main{
  max-width:680px;
}
.nx-blog-title{
  font-size:28px;
  font-weight:600;
  line-height:1.3;
}
.nx-blog-meta{
  display:flex;
  align-items:center;
  gap:10px;
  color:#777;
  font-size:14px;
}

.nx-blog-meta img{
  width:32px;
  height:32px;
  border-radius:50%;
}
.nx-blog-cover img{
  width:100%;
  height:380px;
  object-fit:cover;
  border-radius:18px;
}
.nx-blog-content p{
  color:#555;
  line-height:1.8;
  font-size:15px;
}
.nx-blog-img-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:12px;
  margin:20px 0;
}

.nx-blog-img-grid img{
  width:100%;
  height:200px;
  object-fit:cover;
  border-radius:12px;
}
.nx-blog-quote{
  background:#f5f7fb;
  padding:18px;
  border-radius:12px;
  margin-top:20px;
  font-style:italic;
}
.nx-author-img{
  width:70px;
  height:70px;
  border-radius:50%;
}
.blog-sidebar-box{
  box-shadow:none;
  border:none;
}
@media (max-width: 991px){

  .nx-blog-main{
    max-width:100%;
  }

  .nx-blog-cover img{
    height:250px;
  }

  .nx-blog-img-grid{
    grid-template-columns:1fr;
  }

}
.card-link{
  position:absolute;
  inset:0;
  z-index:3;
}
.main-card,
.sub-card{
  position:relative;
  overflow:hidden;
  border-radius:16px;
}
.about-modern .about-card{
  border-radius:14px;
  overflow:hidden;
}
.about-modern .about-card img{
  width:100%;
  aspect-ratio:4 / 5;
  object-fit:cover;
  display:block;
}
.account-input,
.account-select,
.account-password input,
.account-search input{
  height:48px !important;
  border:1px solid #E5E7EB !important;
  border-radius:10px !important;
  padding:0 14px !important;
  background-color:#fff !important;
  box-shadow:none;
  font-size:14px !important;
  color:#111827;
  width:100%;
}
.account-input:focus,
.account-select:focus,
.account-password input:focus,
.account-search input:focus{
  border-color:#00295C !important;
  outline:none !important;
}
.account-search input{
  padding-right:40px !important;
}
.account-select,
.bank-form select,
.modal-body select{
  padding-right:40px !important;
  appearance:none;
  -webkit-appearance:none;
  background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M19.92 8.95l-6.52 6.52c-.77.77-2.03.77-2.8 0L4.08 8.95' stroke='%23888' stroke-width='1.5' stroke-miterlimit='10' stroke-linecap='round' stroke-linejoin='round' fill='none'/%3E%3C/svg%3E") !important;
  background-repeat:no-repeat !important;
  background-position:right 12px center !important;
  background-size:16px !important;
}
select.account-input{
  background-image:none !important;
}
.account-password input{
  padding-right:42px !important;
}
.account-password i,
.account-password img{
  position:absolute;
  right:14px;
  top:50%;
  transform:translateY(-50%);
  color:#6B7280;
  cursor:pointer;
  font-size:16px;
  z-index:2;
}
.account-form-group{
  margin-bottom:0;
}
.account-acc-body .row > [class*="col-"],
.account-box-body .row > [class*="col-"]{
  margin-bottom:8px;
}
.account-acc-body{
  padding:24px !important;
}
.account-acc-head{
  padding:18px 24px !important;
}
.account-box-body{
  padding:0 24px 24px !important;
}
.account-box-header{
  padding:18px 0px !important;
}
@media (max-width: 575.98px){
  .account-acc-body{
    padding:18px !important;
  }
  .account-acc-head{
    padding:16px 18px !important;
  }
  .account-acc-head span{
    font-size:15px !important;
    line-height:20px !important;
  }
  .account-box-body{
    padding:0 18px 18px !important;
  }
  .account-box-header{
    padding:16px 18px !important;
  }
}
.account-acc-body .account-form-group,
.account-box-body .account-form-group{
  margin-bottom:16px;
}
.account-acc-body .account-form-group:last-of-type,
.account-box-body .account-form-group:last-of-type{
  margin-bottom:0;
}
.account-form-group label{
  font-size:13px !important;
  font-weight:500 !important;
  color:#374957 !important;
  margin-bottom:6px !important;
}
.error-404-section{
  min-height:78vh;
  padding-top:64px !important;
  padding-bottom:64px !important;
}
@media (min-width: 992px){
  .error-404-section{
    min-height:82vh;
    padding-top:96px !important;
    padding-bottom:96px !important;
  }
}
@media (max-width: 575.98px){
  .error-404-section{
    min-height:70vh;
    padding-top:48px !important;
    padding-bottom:48px !important;
  }
}
.error-404-section .row{
  --bs-gutter-x:3rem;
}
.error-visual-modern img{
  width:634.88px;
  max-width:100%;
  height:322.85px;
  object-fit:contain;
  display:block;
  margin:0 auto;
}
.error-modern-title{
  font-family:'Nunito', sans-serif;
  font-size:30px;
  font-weight:500;
  line-height:36px;
  letter-spacing:0%;
  color:#1F1F1F;
}
.error-modern-text{
  font-family:'Nunito Sans', sans-serif;
  font-size:16px;
  font-weight:400;
  line-height:1.4;
  letter-spacing:0%;
  color:#696C70;
  max-width:560px;
  margin-left:auto;
  margin-right:auto;
}
.error-modern-btn{
  border-radius:16px !important;
  padding:14px 28px !important;
  font-size:14px;
  font-weight:600;
  border:1px solid transparent;
  cursor:pointer;
  transition:all 0.2s ease;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  background:var(--bg-primary) !important;
  color:#fff !important;
}
.error-modern-btn:hover{
  background:var(--bg-secondary) !important;
  border-color:transparent;
  transform:translateY(-1px);
  box-shadow:none;
}
@media (min-width: 992px){
  .error-404-section .col-lg-6{
    flex:0 0 50%;
    max-width:50%;
  }
}

.store-box{
  display:flex;
  flex-direction:column;
  width:100%;
  height:100%;
  overflow:hidden;
}
.store-box > .row{
  align-items:flex-start;
  flex:1 1 auto;
  width:100%;
  margin:0;
}
.store-box > .row > [class*="col-"]{
  display:flex;
  flex-direction:column;
}
.store-img{
  width:100%;
  flex:0 0 auto;
}
.store-content{
  height:100%;
  display:flex;
  flex-direction:column;
  justify-content:center;
  flex:1 1 auto;
}
.store-content > .row.mt-4{
  margin-top:28px !important;
}
@media (min-width: 1200px){
  .store-content{
    padding:36px 40px;
  }
  .store-content h3{
    font-size:28px;
  }
}
@media (min-width: 992px) and (max-width: 1199.98px){
  .store-content{
    padding:28px 32px;
  }
  .store-content h3{
    font-size:24px;
  }
}
@media (min-width: 768px) and (max-width: 991.98px){
  .store-box > .row > .col-lg-6{
    flex:0 0 50% !important;
    max-width:50% !important;
  }
  .store-content{
    padding:22px 24px;
  }
  .store-content h3{
    font-size:22px;
    margin-bottom:4px;
  }
  .store-content .row.mt-4{
    margin-top:18px !important;
    --bs-gutter-x:12px;
  }
  .store-content h6{
    font-size:13px;
    margin-bottom:4px;
  }
  .store-content p,
.store-content a,
.store-content b{
    font-size:13px;
  }
  .store-social{
    gap:6px;
  }
  .store-social i{
    width:30px;
    height:30px;
    font-size:13px;
  }
}
@media (max-width: 767.98px){
  .store-section{
    padding-top:24px !important;
    padding-bottom:24px !important;
  }
  .store-section .container{
    padding-left:16px;
    padding-right:16px;
  }
  .store-box{
    margin-bottom:16px !important;
    border-radius:16px;
  }
  .store-box > .row > .col-lg-6{
    flex:0 0 100% !important;
    max-width:100% !important;
    width:100% !important;
  }
  .store-box .store-img{
    flex:0 0 auto;
  }
  .store-content{
    padding:20px 18px 22px;
    height:auto;
  }
  .store-content h3{
    font-size:20px;
    margin-bottom:0;
  }
  .store-content > .row.mt-4{
    margin-top:18px !important;
    --bs-gutter-x:12px;
  }
  .store-content .row > [class*="col-"]{
    flex:0 0 50%;
    max-width:50%;
    margin-bottom:14px;
  }
  .store-content .row > [class*="col-"]:nth-last-child(-n+2){
    margin-bottom:0;
  }
  .store-content h6{
    font-size:13px;
    margin-bottom:2px;
  }
  .store-content p,
.store-content a,
.store-content b{
    font-size:13px;
    line-height:1.4;
  }
  .store-social{
    gap:6px;
  }
  .store-social i{
    width:30px;
    height:30px;
    font-size:13px;
  }
  .store-box > .row{
    min-height:0;
  }
}
@media (max-width: 380px){
  .store-content .row > [class*="col-"]{
    flex:0 0 100%;
    max-width:100%;
  }
  .store-content .row > [class*="col-"]:nth-last-child(-n+2){
    margin-bottom:14px;
  }
  .store-content .row > [class*="col-"]:last-child{
    margin-bottom:0;
  }
}
.section-title{
  font-size:36px;
  font-weight:500;
  line-height:1;
  color:#111827;
  letter-spacing:0;
}
.main-card,
.sub-card{
  background:#f3f5f7;
}
.main-card-img {
    position: absolute;
    top: 0;
    right: 0;
    width: 60%;
    height: 100%;
    object-fit: contain;
    object-position: center bottom;
}

@media (max-width: 768px){
  .main-card-img{
    object-fit:contain !important;
    object-position:center bottom !important;
  }
  .sub-card-img{
    width:100px !important;
    max-height:120px;
  }
}

@media (max-width: 900px) and (orientation: landscape){
  .main-card-img{
    height:160px !important;
    object-fit:contain !important;
    object-position:center bottom !important;
  }
  .sub-card-img{
    width:90px !important;
    height:90px !important;
    max-height:90px !important;
    object-fit:contain !important;
    object-position:center center !important;
  }
  .sub-card{
    min-height:auto;
    padding:14px 16px;
  }
}
.features-section .feature-item{
  min-height:64px;
  align-items:center !important;
}
.features-section .feature-item h6{
  font-family: 'Nunito Sans', sans-serif !important;
  font-weight: 700 !important;
  font-size: 20px !important;
  line-height: 1 !important;
  color: #000000 !important;
  margin-bottom: 4px !important;
  white-space: nowrap;
}
.features-section .feature-item p{
  font-family: 'Nunito Sans', sans-serif !important;
  font-weight: 400 !important;
  font-size: 14px !important;
  line-height: 1 !important;
  color: #888686 !important;
  margin: 0 !important;
}
@media (max-width: 575.98px){
  .features-section .row > .col-6{
    flex:0 0 100%;
    max-width:100%;
  }
  .features-section .feature-item{
    text-align:center !important;
    justify-content:center !important;
    align-items:center !important;
  }
}
#filterPanel .accordion-button{
  cursor:pointer !important;
  pointer-events:auto !important;
}
#filterPanel .accordion-button span {
  font-family: 'Nunito', sans-serif;
  font-size: 18px;
  line-height: 100%;
  letter-spacing: 0%;
}
.category-list-section .row{
  --bs-gutter-x:1.75rem;
  --bs-gutter-y:1.75rem;
}
@media (min-width: 992px){
  .category-list-section .row{
    --bs-gutter-x:2.25rem;
    --bs-gutter-y:2.25rem;
  }
}
.social-icons-contact-us{
  display:flex !important;
  justify-content:flex-start !important;
  align-items:center;
  gap:12px;
  flex-wrap:wrap;
}
.social-icons-contact-us a{
  margin:0 !important;
}
@media (max-width: 768px){
  .social-icons-contact-us{
    justify-content:flex-start !important;
    text-align:left !important;
  }
}
.product-info .price{
  font-size:30px !important;
  font-weight:500 !important;
  line-height:30px !important;
  margin:0 0 16px !important;
}
@media (min-width: 992px){
  .product-info .price{
    font-size:30px !important;
  }
}
.price-box{
  font-size:13px !important;
  padding:18px 14px !important;
}
.price-box span,
.price-box b{
  font-size:14px !important;
  font-weight:500 !important;
}
.price-box b{
  font-weight:700 !important;
}
.price-sticky{
  font-size:22px !important;
}
.price-sticky span{
  font-size:13px !important;
}
.bank-page h4{
  font-family:'Nunito Sans', sans-serif;
  font-weight:600;
  font-size:34px;
  line-height:1;
  letter-spacing:0;
  text-align:center;
  color:#000000;
}
.bank-page .bank-list .bank-item + .bank-item{
  margin-top:0;
}
.bank-item{
  border:1px solid #ECEEF1 !important;
  border-radius:14px !important;
  padding:24px !important;
  background:#fff;
  box-shadow:none;
  transition:box-shadow 0.25s ease, transform 0.25s ease;
}
.bank-item:hover{
  box-shadow:none;
  transform:translateY(-1px);
}
.bank-logo{
  width:160px !important;
  height:60px;
  object-fit:contain;
  flex-shrink:0;
}
.bank-row{
  display:flex !important;
  align-items:center !important;
  justify-content:space-between !important;
  background:#F7F7F7 !important;
  border-radius:0 !important;
  padding:0 14px !important;
  margin-bottom:0 !important;
  gap:12px;
  flex-wrap:nowrap;
  height:52px;
  box-sizing:border-box;
  border-bottom:1px solid #EBEBEB;
}
.bank-row:first-child{
  border-top-left-radius:12px !important;
  border-top-right-radius:12px !important;
}
.bank-row:last-child{
  border-bottom:none !important;
}
.bank-row:nth-child(even){
  background:#ffffff !important;
}
.bank-row span{
  font-size:13px;
  font-weight:600;
  color:#6B7280 !important;
  min-width:110px !important;
}
.bank-row p{
  font-size:14px;
  color:#1F2937 !important;
  word-break:break-word;
  flex:1;
}
.bank-row.copy-row,
.bank-row.iban-row{
  position:relative;
}
.bank-row.copy-row p{
  padding-right:28px;
}
.bank-row.iban-row p{
  font-family:ui-monospace, SFMono-Regular, Menlo, monospace;
  letter-spacing:0.02em;
  padding-right:28px;
}
.bank-row.copy-row i.copy-icon-btn,
.bank-row.iban-row i.copy-icon-btn{
  position:absolute;
  right:14px;
  top:50%;
  transform:translateY(-50%);
  vertical-align:initial;
  color:#888;
}
.bank-row.copy-row i.copy-icon-btn:hover,
.bank-row.iban-row i.copy-icon-btn:hover{
  background:rgba(0,0,0,0.07);
}
.bank-alert,
.alert.alert-info{
  border:1px solid #00295C;
  background:#F4F8FC;
  border-radius:12px;
  padding:18px 22px;
  color:#1F2937;
}
#edit_basket_empty_row{
  display:flex;
  justify-content:center;
  padding:32px 24px;
}
#edit_basket_empty_row .alert{
  margin:0;
  text-align:center;
}
.bank-alert b{
  color:#00295C;
  font-size:15px;
}
.bank-form{
  background:#fff;
  border:1px solid #ECEEF1;
  border-radius:14px;
  padding:28px !important;
}
.bank-form h5{
  font-family:'Nunito Sans', sans-serif;
  font-weight:400;
  font-size:28px;
  line-height:1;
  letter-spacing:0;
  color:#000000;
}
.bank-form label{
  font-family:'Nunito', sans-serif;
  font-weight:700;
  font-size:15px;
  line-height:1;
  letter-spacing:0;
  color:#1F1F1F;
  margin-bottom:6px;
}
.eft-info-list{
  margin:0;
}
.eft-info-list li{
  font-family:'Nunito Sans', sans-serif;
  font-weight:400;
  font-size:16px;
  line-height:1;
  letter-spacing:0;
  color:#696C70;
  margin-bottom:12px;
  padding-left:26px;
}
.eft-info-list li::before{
  content:"";
  background-image:url('../assets/icons/tik.svg');
  background-repeat:no-repeat;
  background-size:contain;
  background-position:center;
  width:18px;
  height:18px;
  display:inline-flex;
  flex-shrink:0;
}
.captcha-box{
  height:48px;
  background:#F3F5F8;
  border:1px dashed #D1D5DB;
  border-radius:10px;
  display:flex;
  align-items:center;
  justify-content:center;
  color:#9CA3AF;
  font-size:13px;
}
.captcha-box::before{
  content:"CAPTCHA";
  font-weight:600;
  letter-spacing:0.1em;
}
.submit-btn{
  border-radius:16px;
  padding:10px 22px;
  font-size:14px;
  font-weight:600;
  border:1px solid transparent;
  cursor:pointer;
  transition:all .2s ease;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  background:var(--bg-primary);
  color:#fff;
}
.submit-btn:hover{
  background:var(--bg-secondary);
  border-color:transparent;
  transform:translateY(-1px);
  box-shadow:none;
  color:#fff;
}
.file-input-wrapper{
  display:flex;
  align-items:center;
  position:relative;
  border:1px solid #E5E7EB;
  border-radius:10px;
  padding:0 14px;
  background:#fff;
  height:48px;
  cursor:pointer;
}
.file-input-wrapper span{
  color:#6B7280;
  font-size:14px;
  flex:1;
}
.file-input-wrapper i{
  color:#00295C;
  font-size:18px;
}
@media (min-width: 992px) and (max-width: 1199.98px){
  .bank-item{
    padding:22px !important;
  }
  .bank-logo{
    width:110px !important;
  }
}
@media (min-width: 768px) and (max-width: 991.98px){
  .bank-item{
    padding:20px !important;
    gap:20px !important;
  }
  .bank-logo{
    width:90px !important;
    height:48px;
  }
  .bank-row{
    padding:9px 12px !important;
  }
  .bank-row span{
    min-width:100px !important;
    font-size:12.5px;
  }
  .bank-row p{
    font-size:13.5px;
  }
  .bank-form .row > .col-lg-5,
  .bank-form .row > .col-lg-7{
    flex:0 0 100%;
    max-width:100%;
  }
  .bank-form .row > .col-lg-5{
    margin-bottom:18px;
  }
  .bank-form{
    padding:24px !important;
  }
}
@media (min-width: 576px) and (max-width: 767.98px){
  .bank-item{
    flex-direction:column !important;
    align-items:center !important;
    gap:18px !important;
    padding:20px !important;
    text-align:center;
  }
  .bank-logo{
    width:100px !important;
    height:48px;
  }
  .bank-info{
    width:100% !important;
  }
  .bank-row{
    justify-content:center;
    height:auto !important;
  }
  .bank-row span{
    min-width:120px !important;
  }
  .bank-form{
    padding:22px !important;
  }
  .bank-form .row > .col-lg-5,
  .bank-form .row > .col-lg-7{
    flex:0 0 100%;
    max-width:100%;
  }
  .bank-form .row > .col-lg-5{
    margin-bottom:14px;
  }
}
@media (max-width: 575.98px){
  .bank-page{
    padding:32px 0 !important;
  }
  .bank-item{
    flex-direction:column !important;
    align-items:center !important;
    gap:14px !important;
    padding:16px !important;
    border-radius:12px !important;
    text-align:center;
  }
  .bank-logo{
    width:92px !important;
    height:44px;
  }
  .bank-info{
    width:100% !important;
  }
  .bank-row{
    display:flex !important;
    flex-direction:column !important;
    align-items:center !important;
    gap:4px !important;
    padding:10px 12px !important;
    margin-bottom:8px !important;
    text-align:center;
    height:auto !important;
  }
  .bank-row span{
    font-size:11.5px !important;
    min-width:0 !important;
    text-transform:uppercase;
    letter-spacing:0.04em;
    font-weight:600;
    text-align:center;
  }
  .bank-row p{
    font-size:14px !important;
    margin:0 !important;
    word-break:break-word;
    text-align:center;
  }
  .bank-row.copy-row,
  .bank-row.iban-row{
    display:grid !important;
    grid-template-areas:"label label" "value icon" !important;
    grid-template-columns:1fr auto !important;
    padding-right:12px !important;
  }
  .bank-row.copy-row > span,
  .bank-row.iban-row > span{
    grid-area:label;
  }
  .bank-row.copy-row > p,
  .bank-row.iban-row > p{
    grid-area:value;
    padding-right:0;
    font-size:13px !important;
    text-align:center;
  }
  .bank-row.copy-row > i.copy-icon-btn,
  .bank-row.iban-row > i.copy-icon-btn{
    grid-area:icon;
    position:static !important;
    transform:none !important;
    align-self:center;
  }
  .bank-alert{
    padding:14px 16px !important;
    font-size:13px;
    border-radius:10px;
  }
  .bank-alert b{
    font-size:14px;
  }
  .bank-form{
    padding:18px !important;
    border-radius:12px !important;
  }
  .bank-form h5{
    font-size:16px;
  }
  .bank-form .row > .col-lg-5,
  .bank-form .row > .col-lg-7,
  .bank-form .row > .col-md-6{
    flex:0 0 100%;
    max-width:100%;
  }
  .bank-form .row > .col-lg-5{
    margin-bottom:10px;
  }
  .bank-form .row > .col-md-6 + .col-md-6{
    margin-top:8px;
  }
  .eft-info-list li{
    font-size:13px;
    margin-bottom:10px;
    padding-left:24px;
  }
  .submit-btn{
    height:46px;
    font-size:13.5px;
  }
}
.account-input,
.account-select,
.account-password input,
.account-search input,
.bank-form .form-control,
.bank-form input,
.bank-form select,
.bank-form textarea,
.contact-form .form-control,
.newsletter-form .form-control,
.file-input-wrapper{
  height:48px !important;
  min-height:48px;
  border:1px solid #E5E7EB !important;
  border-radius:10px !important;
  padding:0 14px !important;
  background-color:#fff !important;
  box-shadow:none;
  font-size:14px !important;
  color:#111827;
  width:100%;
}
textarea.account-input,
textarea.form-control,
.bank-form textarea{
  height:auto !important;
  min-height:120px;
  padding:12px 14px !important;
}
.sticky-bottom-bar{
  transition:none;
  will-change:auto;
}
body.cart-slide-open .sticky-bottom-bar{
  display:none !important;
}
.sticky-bottom-bar.is-near-footer{
  transform:none;
  opacity:1;
  pointer-events:auto;
}

@media (max-width: 991.98px){
  .sticky-bottom-bar{
    position:fixed !important;
    left:0 !important;
    right:0 !important;
    bottom:0 !important;
    width:100% !important;
    z-index:9999;
    background:#fff;
    border-top:1px solid #ECEEF1;
    box-shadow:none;
    padding:10px 14px calc(env(safe-area-inset-bottom, 0px) + 10px) !important;
    display:block !important;
    visibility:visible !important;
    opacity:1 !important;
    transform:none !important;
    pointer-events:auto !important;
    overflow:visible;
  }
  .sticky-bottom-bar.is-near-footer{
    transform:none !important;
    opacity:1 !important;
    pointer-events:auto !important;
  }
  .sticky-bottom-bar .container-fluid{
    padding:0 !important;
  }
  .sticky-bottom-bar .row{
    --bs-gutter-x:0 !important;
    --bs-gutter-y:8px;
    margin:0 !important;
  }
  .sticky-bottom-bar .row > [class*="col-"]{
    padding:0 !important;
    flex:0 0 100% !important;
    max-width:100% !important;
  }
  .sticky-bottom-bar .product-info-small{
    display:none !important;
  }
  .sticky-bottom-bar .sticky-summary{
    text-align:left !important;
    display:grid !important;
    grid-template-columns:1fr auto;
    grid-template-areas:"title price" "title sub";
    align-items:center;
    column-gap:12px;
    row-gap:0;
    padding:2px 2px 4px;
  }
  .sticky-bottom-bar .sticky-summary-title{
    grid-area:title;
    display:flex;
    align-items:center;
    gap:6px;
    font-size:13px;
    font-weight:500;
    color:#333;
    line-height:1.2;
  }
  .sticky-bottom-bar .sticky-summary-title .receipt-icon{
    width:16px;
    height:16px;
    order:-1;
  }
  .sticky-bottom-bar .price-sticky{
    grid-area:price;
    text-align:right;
    font-size:18px !important;
    font-weight:700 !important;
    color:#1F1F1F;
    margin:0 !important;
    line-height:1.1;
  }
  .sticky-bottom-bar .price-sticky span{
    font-size:13px !important;
    font-weight:500 !important;
    color:#333;
  }
  .sticky-bottom-bar .sticky-summary-sub{
    grid-area:sub;
    text-align:right;
    font-size:11px;
    color:#888;
    margin-top:0;
    line-height:1.2;
  }
  /* Mobile: right-group dikey sırala */
  .sticky-bottom-bar .sticky-right-group{
    flex-direction:column;
    align-items:stretch;
    gap:6px;
    width:100%;
  }

  /* Summary row: fiyat solda, fiş butonu sağda */
  .sticky-bottom-bar .sticky-summary-group{
    width:100%;
    justify-content:space-between;
    align-items:center;
  }

  .sticky-bottom-bar .sticky-summary{
    flex:1;
  }

  .sticky-bottom-bar .receipt-btn{
    width:44px;
    height:44px;
    border-radius:10px;
    flex-shrink:0;
  }

  .sticky-bottom-bar .sticky-actions{
    display:flex !important;
    gap:8px;
    width:100%;
    justify-content:stretch !important;
  }
  .sticky-bottom-bar .bottom-bar-action-btn,
  .sticky-bottom-bar .bottom-bar-action-btn-outline,
  .sticky-bottom-bar .btn-detail-favorite{
    flex:1;
    height:44px;
    min-height:44px;
    max-height:44px;
    padding:0 10px;
    font-size:14px;
    font-weight:600;
    border-radius:10px;
    display:inline-flex;
    align-items:center;
    justify-content:center;
    gap:6px;
    white-space:nowrap;
  }
  .sticky-bottom-bar .btn-detail-favorite{
    flex:0 0 44px;
    width:44px;
    padding:0;
    border-radius:10px;
  }
  .sticky-bottom-bar .bottom-bar-action-btn-outline{
    background:#fff;
    color:#1F1F1F;
    border:1px solid #DDD;
  }
  .sticky-bottom-bar .bottom-bar-action-btn-outline i{
    font-size:15px;
  }
  .sticky-bottom-bar .bottom-bar-action-btn{
    background:var(--bg-primary);
    color:#fff;
    border:1px solid transparent;
  }
  body:has(.sticky-bottom-bar){
    padding-bottom:calc(env(safe-area-inset-bottom, 0px) + 140px) !important;
  }
}
@media (max-width: 991.98px){
  body,
  main,
  section{
    transform:none;
  }
}
.modal-content{
  border:none;
  border-radius:16px;
}
.modal-body{
  padding:22px 24px 24px;
}
.modal-header{
  border-bottom:1px solid #F1F2F4;
  padding:16px 24px;
}
.modal-body .form-control,
.modal-body input[type="text"],
.modal-body input[type="email"],
.modal-body input[type="number"],
.modal-body input[type="tel"],
.modal-body select,
.modal-body textarea,
.modal-body .basket-input,
.modal-body .note-input,
.modal-body .link-input-wrapper input,
.modal-body .nx-select__head,
.modal-body .nx-select--basket .nx-select__head{
  height:48px !important;
  min-height:48px;
  border:1px solid #E5E7EB !important;
  border-radius:10px !important;
  padding:0 14px !important;
  background-color:#fff !important;
  box-shadow:none;
  font-size:14px !important;
  color:#111827;
  width:100%;
  outline:none;
}
.modal-body .basket-select-wrap .basket-input,
.alpine-modal-content .basket-select-wrap .basket-input{
  padding:0 40px 0 14px !important;
  appearance:none !important;
  -webkit-appearance:none !important;
  -moz-appearance:none !important;
  background-image:none !important;
}
.modal-body .nx-select__head{
  display:flex;
  align-items:center;
  justify-content:space-between;
}
.modal-body textarea,
.modal-body .note-textarea{
  height:auto !important;
  min-height:120px !important;
  padding:12px 14px !important;
  resize:vertical;
}
.modal-body .form-control:focus,
.modal-body input:focus,
.modal-body select:focus,
.modal-body textarea:focus,
.modal-body .basket-input:focus,
.modal-body .note-input:focus,
.modal-body .nx-select__head:focus{
  border-color:#00295C !important;
  outline:none !important;
}
.modal-body .link-copy-btn,
.modal-body .btn,
.modal-body button[type="submit"]{
  height:48px !important;
  min-height:48px;
  border-radius:10px !important;
  padding:0 20px !important;
  font-size:14px !important;
  font-weight:600;
  border:none;
  background:#00295C;
  color:#fff;
  cursor:pointer;
  transition:background 0.2s ease;
}
.modal-body .link-copy-btn:hover,
.modal-body .btn:hover,
.modal-body button[type="submit"]:hover{
  background:#001f47;
  color:#fff;
}
.alpine-modal-content .basket-btn{
  border-radius:16px !important;
  padding:10px 22px !important;
  height:auto !important;
  min-height:44px;
  background:var(--bg-primary) !important;
  border:1px solid transparent !important;
}
.alpine-modal-content .basket-btn:hover{
  background:var(--bg-secondary) !important;
  transform:translateY(-1px);
}
.modal-body .btn-outline-secondary,
.modal-body .btn-secondary{
  background:#fff;
  color:#111827;
  border:1px solid #E5E7EB;
}
.modal-body .btn-outline-secondary:hover,
.modal-body .btn-secondary:hover{
  background:#F3F5F8;
  color:#111827;
}
.modal-body .link-input-wrapper{
  position:relative;
}
.modal-body .link-input-wrapper input{
  padding-right:110px !important;
  background:#F7F8FA !important;
}
.modal-body .link-copy-btn{
  position:absolute;
  right:4px;
  top:50%;
  transform:translateY(-50%);
  height:40px !important;
  min-height:40px !important;
  padding:0 16px !important;
  border-radius:8px !important;
}
.modal-body .basket-action,
.modal-body .note-actions{
  margin-top:12px;
  display:flex;
  justify-content:flex-end;
  gap:8px;
}
.modal-body .basket-block + .basket-label{
  margin-top:18px !important;
}
.modal-body .basket-label,
.modal-body .note-label,
.modal-body .form-label{
  font-size:13px;
  font-weight:500;
  color:#374957;
  margin-bottom:6px;
  display:block;
}


/* ===== MEGA MENU ===== */
.mega-dropdown {
  position: static;
  display: block;
  width: fit-content;
}

.mega-dropdown > .btn {
  font-weight: 600;
  letter-spacing: .3px;
  transition: color .25s ease, transform .25s ease;
}

.mega-dropdown > .btn:hover,
.mega-dropdown > .btn[aria-expanded="true"] {
  color: #cfd8e6;
}

.mega-dropdown > .btn i {
  transition: transform .3s ease;
}

.mega-dropdown > .btn[aria-expanded="true"] i {
  transform: rotate(90deg);
}

/* ===== MEGA MENU ===== */
.mega-menu {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  transform: none;
  width: 100% !important;
  max-width: 100% !important;
  min-width: 0;
  height: calc(100vh - 130px);
  border: 0;
  border-radius: 0;
  background: #fff;
  box-shadow: 0 8px 32px rgba(0,0,0,.10);
  padding: 0;
  overflow-y: auto;
  overflow-x: hidden;
  margin-top: 0 !important;
}

.mega-menu::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--bg-primary), var(--bg-secondary));
  z-index: 2;
}

.mega-inner {
  padding: 36px 40px 48px 40px;
}

/* Ana layout */
.mega-layout {
  display: flex;
  gap: 32px;
  align-items: start;
  justify-content: flex-start;
}

/* SOL: Gruplar sütunu */
.mega-groups {
  flex: 0 0 150px;
  width: 150px;
  position: sticky;
  top: 0;
  align-self: start;
}

.mega-groups__list {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 14px;
}

.mega-groups__list .mega-item {
  white-space: normal;
  line-height: 1.4;
}

/* ORTA: Kategori sütunları — 5 sabit kolon (9 eleman = 2 satır, taşma yok) */
.mega-cats {
  flex: 0 1 58%;
  min-width: 0;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  column-gap: 14px !important;
  row-gap: 36px;
}

.mega-cat-col {
  min-width: 0;
}

/* Kategori başlığı */
.mega-cat-title {
  font-family: 'Nunito', sans-serif;
  font-weight: 700;
  font-size: 13px;
  line-height: 1;
  letter-spacing: .7px;
  color: #00295C;
  text-transform: uppercase;
  margin: 0;
  padding: 0;
}


.mega-cat-title__bar {
  width: 28px;
  height: 0;
  border: 1px solid #004E91;
  opacity: 1;
  margin-top: 8px;
  margin-bottom: 0;
}

.mega-cat-links {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 14px;
}

/* Alt kategori linkleri */
.mega-item {
  display: block;
  font-family: 'Nunito', sans-serif;
  font-weight: 400;
  font-size: 13px;
  line-height: 1.3;
  color: #696C70;
  text-decoration: none;
  transition: color .2s ease, padding-left .2s ease;
}

.mega-item:hover {
  color: var(--bg-primary);
  padding-left: 5px;
}

/* Tümünü Gör linki */
.mega-see-all {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-family: 'Nunito', sans-serif;
  font-weight: 400;
  font-size: 12px;
  line-height: 1;
  color: #696C70;
  text-decoration: none;
  padding-bottom: 3px;
  border-bottom: 1px solid #c0c2c5;
  width: fit-content;
  transition: color .2s ease, border-color .2s ease;
}

.mega-see-all:hover {
  color: var(--bg-primary);
  border-color: var(--bg-primary);
}

/* SAĞ: Banner kartları — alan her zaman rezerve */
.mega-banners {
  flex: 0 0 340px;
  width: 400px;
  display: flex;
  flex-direction: column;
  gap: 0;
  padding-left: 0;
  padding-right: 0;
}

.mega-banner-card {
  display: flex;
  align-items: stretch;
  border-radius: 16px;
  overflow: hidden;
  background: rgba(178,202,222,0.30);
  text-decoration: none;
  flex: 1;
  min-height: 120px;
  position: relative;
}



.mega-banner-card__content {
  flex: 1;
  padding: 18px 16px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 7px;
  z-index: 1;
}

.mega-banner-card__badge {
  display: inline-block;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: .5px;
  text-transform: uppercase;
  color: var(--bg-primary);
  background: rgba(14,79,175,.1);
  border-radius: 20px;
  padding: 3px 8px;
  width: fit-content;
}

.mega-banner-card__title {
  font-family: 'Nunito', sans-serif;
  font-weight: 700;
  font-size: 13px;
  line-height: 1.3;
  color: #111827;
  margin: 0;
  white-space: nowrap;
}

.mega-banner-card__desc {
  font-size: 11px;
  color: #6B7280;
  margin: 0;
  line-height: 1.4;
}

.mega-banner-card__link {
  font-size: 11px;
  font-weight: 600;
  color: var(--bg-primary);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.mega-banner-card__img {
  width: 110px;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  flex-shrink: 0;
  transition: transform .4s ease;
}

.mega-banner-card:hover .mega-banner-card__img {
  transform: scale(1.05);
}

.mega-banner-card--empty {
  background: #EEF2F9;
  border-radius: 14px;
  flex: 1;
  min-height: 110px;
}

/* Responsive */
@media (max-width: 1500px) {
  .mega-inner {
    padding: 28px 28px;
  }

  .mega-layout {
    gap: 24px;
  }

  .mega-cats {
    flex: 1 1 0;
  }

  .mega-banners {
    flex: 0 0 240px;
    width: 240px;
  }
}

@media (max-width: 1399px) {
  .mega-inner {
    padding: 24px 20px;
  }

  .mega-layout {
    gap: 20px;
    justify-content: flex-start;
  }

  .mega-cats {
    grid-template-columns: repeat(5, 1fr);
    column-gap: 10px;
  }

  .mega-banners {
    flex: 0 0 220px;
    width: 220px;
  }
}

@media (max-width: 1199px) {
  .mega-inner {
    padding: 20px 16px;
  }

  .mega-layout {
    gap: 20px;
    justify-content: flex-start;
  }

  .mega-cats {
    grid-template-columns: repeat(5, 1fr);
    column-gap: 10px;
  }

  .mega-banners {
    flex: 0 0 200px;
    width: 200px;
  }
}

@media (max-width: 1299px) {
  .mega-banners {
    display: none;
  }

  .mega-cats {
    flex: 1 1 0;
  }
}

@media (max-width: 1050px) {
  .mega-cats {
    grid-template-columns: repeat(4, 1fr);
    column-gap: 10px;
  }
}

@media (max-width: 991px) {
  .mega-menu {
    position: relative;
    transform: none !important;
    left: 0;
    box-shadow: none;
    margin-top: 8px !important;
    border-radius: 14px;
    width: 100% !important;
    min-width: unset;
  }

  .mega-inner {
    padding: 20px;
  }

  .mega-layout {
    flex-direction: column;
    gap: 24px;
  }

  .mega-groups {
    width: 100%;
  }

  .mega-groups__list {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 20px 20px;
  }

  .mega-cats {
    grid-template-columns: repeat(2, 1fr);
    column-gap: 20px;
    row-gap: 20px;
  }

  .mega-banners {
    flex-direction: row;
    width: 100%;
  }

  .mega-banner-card img {
    min-height: 90px;
    height: 90px;
  }

  .mega-banner-card--empty {
    min-height: 90px;
  }
}

/* ===== HAKKIMIZDA ===== */
.about-modern.section-py {
  padding-top: 3rem !important;
  padding-bottom: var(--space-section) !important;
}

.bank-page.section-py {
  padding-top: 3rem !important;
}

/* ===== KATEGORİ DETAY SAYFASI ===== */
.category-hero.section-py {
  padding-top: var(--space-section) !important;
}

.product-list-section.section-py {
  padding-top: 3rem !important;
  padding-bottom: 1.5rem !important;
}

#async-featured-products .products-section.section-py {
  padding-top: calc(var(--space-section) * 2) !important;
}
.category-hero-inner {
  background:
    linear-gradient(135deg, rgba(0, 41, 92, .92), rgba(0, 78, 145, .85)),
    url('https://images.unsplash.com/photo-1483985988355-763728e1935b?q=80&w=1600') center/cover no-repeat;
  border-radius: 16px;
  overflow: hidden;
  position: relative;
  min-height: 220px;
}

.category-hero-eyebrow {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #cfd8e6;
  margin-bottom: 10px;
}

.category-hero-title {
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 700;
  letter-spacing: .5px;
  text-transform: capitalize;
}

.category-hero-desc {
  color: rgba(255, 255, 255, .85);
  max-width: 640px;
  margin-inline: auto;
  font-size: 15px;
}

.category-toolbar {
  background: #fff;
  border: 1px solid #eef1f5;
  border-radius: 12px;
  padding: 12px 18px;
}

.category-sort {
  min-width: 180px;
  border-color: #e4e8ef;
  font-weight: 500;
}

@media (max-width: 575.98px) {
  .category-toolbar {
    flex-direction: column;
    align-items: stretch !important;
    gap: 12px !important;
  }
  .category-toolbar > div:last-child {
    width: 100%;
  }
  .category-toolbar .category-sort {
    flex: 1 1 auto;
    min-width: 0;
  }
}

.category-sort:focus {
  border-color: var(--bg-secondary);
  box-shadow:none;
}

.category-pagination .page-link {
  color: var(--bg-primary);
  border-color: #e4e8ef;
  font-weight: 600;
  min-width: 40px;
  text-align: center;
}

.category-pagination .page-item.active .page-link {
  background: #053F70;
  border-color: #053F70;
  color: #fff;
}

.category-pagination .page-link:hover {
  background: #053F70;
  border-color: #053F70;
  color: #fff;
}

.category-pagination .page-item.disabled .page-link {
  color: #b7bdc7;
  background: #f8f9fb;
}

/* ===== LOGOUT MENU ITEM ===== */
.account-menu .account-menu-logout {
  margin-top: 10px;
  padding-top: 10px;
  border-top: 1px solid #eef1f5;
}

.account-menu .account-menu-logout a {
  color: #c0392b !important;
  font-weight: 600;
}

.account-menu .account-menu-logout a i {
  font-size: 16px;
}

.account-menu .account-menu-logout a:hover {
  background: #fdecea !important;
  color: #a5281b !important;
}

/* ===== PROFILE SAVE BAR ===== */
.profile-save-bar {
  position: sticky;
  bottom: 0;
  margin-top: 24px;
  background: #fff;
  border: 1px solid #eef1f5;
  border-radius: 14px;
  padding: 14px 20px;
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
  justify-content: space-between;
  box-shadow:none;
  z-index: 5;
}

.profile-save-info {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #6b7280;
  font-size: 14px;
}

.profile-save-info i {
  color: var(--bg-secondary);
  font-size: 18px;
}

.profile-save-actions {
  display: flex;
  gap: 10px;
  margin-left: auto;
}

.btn-profile-cancel,
.btn-profile-save {
  border-radius: 16px;
  padding: 10px 22px;
  font-size: 14px;
  font-weight: 600;
  border: 1px solid transparent;
  cursor: pointer;
  transition: all .2s ease;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.btn-profile-cancel {
  background: #fff;
  border-color: #e4e8ef;
  color: #4b5563;
  text-decoration: none;
  border-radius: 16px;
}

.btn-profile-cancel:hover {
  background: #f4f7fb;
  border-color: #cfd8e6;
}

.btn-profile-save {
  background: var(--bg-primary);
  color: #fff;
}

.btn-profile-save:hover {
  background: var(--bg-secondary);
  transform: translateY(-1px);
  box-shadow:none;
}

.btn-profile-save i {
  font-size: 18px;
}

.account-input.is-invalid,
.account-select.is-invalid {
  border-color: #e74c3c !important;
  box-shadow:none;
}

/* ===== PROFILE TOAST ===== */
.profile-toast {
  position: fixed;
  top: 24px;
  right: 24px;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 18px;
  background: #fff;
  border-radius: 12px;
  box-shadow:none;
  font-size: 14px;
  font-weight: 500;
  z-index: 9999;
  opacity: 0;
  transform: translateX(20px);
  transition: opacity .25s ease, transform .25s ease;
  border-left: 4px solid #2ecc71;
  min-width: 240px;
}

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

.profile-toast i {
  font-size: 20px;
}

.profile-toast--success {
  border-left-color: #2ecc71;
  color: #1e6e3d;
}

.profile-toast--success i {
  color: #2ecc71;
}

.profile-toast--error {
  border-left-color: #e74c3c;
  color: #a5281b;
}

.profile-toast--error i {
  color: #e74c3c;
}

.profile-toast--info {
  border-left-color: var(--bg-secondary);
  color: var(--bg-primary);
}

.profile-toast--info i {
  color: var(--bg-secondary);
}

@media (max-width: 576px) {
  .profile-save-bar {
    padding: 12px;
  }
  .profile-save-info {
    font-size: 13px;
  }
  .profile-save-actions {
    width: 100%;
    justify-content: flex-end;
  }
  .profile-toast {
    left: 16px;
    right: 16px;
    top: 16px;
    min-width: 0;
  }
}

/* ===== LEGAL / STATIC CONTENT PAGES ===== */
.legal-hero {
  padding: 28px 32px;
  border-radius: 18px;
  background: linear-gradient(135deg, var(--bg-primary), var(--bg-secondary));
  color: #fff;
  box-shadow:none;
  margin-top: 1.5rem;
}

.legal-eyebrow {
  display: inline-block;
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 7px 18px;
  border-radius: 999px;
  background: rgba(255, 255, 255, .18);
  color: #fff;
  margin-bottom: 12px;
}

.legal-title {
  font-family:'Nunito Sans', sans-serif;
  font-weight:700;
  font-size:34px;
  line-height:1;
  letter-spacing:0;
  margin-bottom: 8px;
  color: #fff;
}

.legal-updated {
  font-size: 13px;
  color: rgba(255, 255, 255, .8);
  margin-bottom: 0;
}

.legal-content {
  background: #fff;
  border: 1px solid #eef1f5;
  border-radius: 18px;
  padding: 36px 40px;
  line-height: 1.75;
  color: #374151;
  font-size: 15px;
}

.legal-content h3 {
  color: var(--bg-primary);
  font-size: 18px;
  font-weight: 700;
  margin-top: 28px;
  margin-bottom: 12px;
  padding-left: 14px;
  position: relative;
}

.legal-content h3::before {
  content: "";
  position: absolute;
  left: 0;
  top: 6px;
  bottom: 6px;
  width: 4px;
  border-radius: 2px;
  background: var(--bg-secondary);
}

.legal-content h3:first-child {
  margin-top: 0;
}

.legal-content p {
  margin-bottom: 14px;
}

.legal-content ul {
  padding-left: 22px;
  margin-bottom: 14px;
}

.legal-content ul li {
  margin-bottom: 8px;
}

.legal-content a {
  color: var(--bg-secondary);
  font-weight: 600;
  text-decoration: none;
}

.legal-content a:hover {
  text-decoration: underline;
}

.legal-content strong {
  color: var(--bg-primary);
}

.legal-intro {
  padding: 16px 18px;
  background: #f4f7fb;
  border-left: 4px solid var(--bg-secondary);
  border-radius: 6px;
  margin-bottom: 24px !important;
}

.legal-footer-box {
  margin-top: 32px;
  padding: 18px 20px;
  border-radius: 12px;
  background: #f4f7fb;
  display: flex;
  gap: 14px;
  align-items: center;
  font-size: 16px;
  color: #374151;
}

.legal-footer-box i {
  color: var(--bg-secondary);
  font-size: 22px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  line-height: 1;
  position: relative;
  top: 1px;
}

@media (max-width: 767px) {
  .legal-hero {
    padding: 22px 20px;
  }
  .legal-content {
    padding: 22px 18px;
    font-size: 14px;
  }
}

/* ===== SUPPORT / DESTEK TALEPLERİ ===== */
.support-hero h1 {
  font-weight: 700;
  color: var(--bg-primary);
  font-size: clamp(24px, 3vw, 32px);
}

.support-card {
  background: #fff;
  border: 1px solid #eef1f5;
  border-radius: 18px;
  padding: 24px 26px;
  box-shadow:none;
}

.support-card-head {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-bottom: 16px;
  margin-bottom: 20px;
  border-bottom: 1px solid #eef1f5;
}

.support-card-head i {
  font-size: 22px;
  color: var(--bg-secondary);
  display: inline-flex;
  align-items: center;
  line-height: 1;
}

.support-card-head h4 {
  font-size: 17px;
  font-weight: 700;
  color: var(--bg-primary);
  margin: 0;
}

.support-label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: #374957;
  margin-bottom: 6px;
}

.support-form textarea.account-input {
  resize: vertical;
  min-height: 120px;
  padding: 12px 14px;
  font-family: inherit;
}

.support-upload {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 10px 14px;
  border: 1px dashed #cfd8e6;
  border-radius: 10px;
  background: #f8fafc;
}

.support-upload-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 16px;
  background: #fff;
  border: 1px solid #cfd8e6;
  border-radius: 8px;
  color: var(--bg-primary);
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  transition: all .2s ease;
}

.support-upload-btn:hover {
  background: var(--bg-primary);
  color: #fff;
  border-color: var(--bg-primary);
}

.upload-area {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  min-height: 168px;
  padding: 28px 20px;
  text-align: center;
  border: 2px dashed #cfd8e6;
  border-radius: 12px;
  background: #f8fafc;
  cursor: pointer;
  transition: border-color 0.2s ease, background-color 0.2s ease, box-shadow 0.2s ease;
}

.upload-area:hover,
.upload-area:focus-visible,
.upload-area.dragover {
  border-color: var(--bg-primary, #00295C);
  background: #eef4fb;
  box-shadow:none;
  outline: none;
}

.upload-area .upload-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  margin-bottom: 8px;
  border-radius: 50%;
  background: #fff;
  border: 1px solid #e5eaf0;
  font-size: 28px;
  line-height: 1;
  color: var(--bg-secondary, #4a90d9);
}

.upload-area .upload-area__title {
  margin: 0;
  font-size: 15px;
  font-weight: 600;
  color: #374957;
}

.upload-area .upload-area__action {
  margin: 0;
  font-size: 13px;
  color: #6b7280;
}

.upload-area .upload-area__hint {
  margin: 6px 0 0;
  font-size: 12px;
  color: #9ca3af;
}

.file-list-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 10px 12px;
  margin-top: 8px;
  font-size: 13px;
  background: #fff;
  border: 1px solid #eef1f5;
  border-radius: 10px;
}

.file-list-item span {
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.file-list-item .btn-remove-file {
  flex-shrink: 0;
  border: 0;
  background: transparent;
  padding: 0;
  color: #dc3545;
  cursor: pointer;
  line-height: 1;
}

.file-list-item .btn-remove-file:hover {
  color: #b91c1c;
}

.support-quick-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.support-quick-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 16px;
  border-radius: 12px;
  text-decoration: none;
  color: #374151;
  background: #f8fafc;
  border: 1px solid transparent;
  transition: all .2s ease;
}

.support-quick-item > i:first-child {
  font-size: 22px;
  color: var(--bg-secondary);
  flex-shrink: 0;
}

.support-quick-item div {
  display: flex;
  flex-direction: column;
  line-height: 1.3;
}

.support-quick-item strong {
  color: var(--bg-primary);
  font-size: 14px;
  font-weight: 700;
}

.support-quick-item span {
  font-size: 12.5px;
  color: #6b7280;
}

.support-quick-item:hover {
  background: #fff;
  border-color: var(--bg-secondary);
  transform: translateX(3px);
}

.support-ticket-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.support-ticket {
  padding: 16px 18px;
  border: 1px solid #eef1f5;
  border-radius: 12px;
  transition: all .2s ease;
  cursor: pointer;
}

.support-ticket:hover {
  border-color: var(--bg-secondary);
  box-shadow:none;
}

.support-ticket-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 8px;
}

.support-ticket-id {
  font-size: 12px;
  font-weight: 700;
  color: #6b7280;
  letter-spacing: .5px;
}

.support-badge {
  font-size: 11px;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 999px;
  text-transform: uppercase;
  letter-spacing: .5px;
}

.support-badge--open {
  background: #e6f4ea;
  color: #1e6e3d;
}

.support-badge--pending {
  background: #fff4e0;
  color: #a65f00;
}

.support-badge--closed {
  background: #f0f2f5;
  color: #6b7280;
}

.support-ticket-title {
  font-size: 15px;
  font-weight: 600;
  color: var(--bg-primary);
  margin-bottom: 6px;
}

.support-ticket-meta {
  display: flex;
  gap: 16px;
  font-size: 12.5px;
  color: #6b7280;
}

.support-ticket-meta span {
  display: inline-flex;
  align-items: center;
  gap: 5px;
}

@media (max-width: 575px) {
  .support-card {
    padding: 18px 16px;
  }
}

/* Anvogue-style motion and wishlist */
.nx-reveal{
  opacity:0;
  transform:translateY(28px);
  transition:opacity .65s ease, transform .65s cubic-bezier(.22, 1, .36, 1);
  transition-delay:var(--reveal-delay, 0ms);
}

.nx-reveal.is-visible{
  opacity:1;
  transform:translateY(0);
}

/* Hero slider — aktif slayt ortada; yanlarda hafif peek (Figma: 1296/1440 ratio, gap:10) */
section.hero-section{
  overflow:hidden;
}

/* Mobilde Bootstrap padding korunur (peek için yer açar), 768px+ sıfırlanır */
.hero-section .container-fluid{
  overflow:visible;
}
@media (min-width:768px){
  .hero-section .container-fluid{
    padding-left:0 !important;
    padding-right:0 !important;
  }
}

/* Figma aspect ratio: 1296 × 532 */
.heroSwiper .ratio-hero{
  aspect-ratio: 4/3;
}
@media (min-width:576px){
  .heroSwiper .ratio-hero{ aspect-ratio: 5/3; }
}
@media (min-width:768px){
  .heroSwiper .ratio-hero{ aspect-ratio: 1296/532; }
}

/* Sayfa ilk yüklenişinde boş kenar görünmesini önle:
   Swiper init tamamlanınca swiper-initialized class eklenir, slider o anda görünür olur. */
.heroSwiper:not(.swiper-initialized){
  opacity:0;
}

.heroSwiper.swiper-initialized{
  transition:opacity .35s ease;
}

.heroSwiper.swiper{
  width:100%;
  margin-left:auto;
  margin-right:auto;
  overflow:visible;
}

.heroSwiper .swiper-wrapper{
  overflow:visible;
}

.heroSwiper .swiper-slide{
  height:auto;
  box-sizing:border-box;
  /* Genişlik Swiper tarafından hesaplanır — !important ile override etme (ortayı kaydırır) */
}

/* overflow-hidden Bootstrap class'ı metni kesiyor — görsel border-radius'u img/video üzerinde taşıyoruz */
.heroSwiper .hero-slide-card{
  overflow:visible !important;
}
.heroSwiper .hero-slide-card .img-cover{
  border-radius:24px;
}

.heroSwiper .swiper-slide .ratio-hero,
.heroSwiper .swiper-slide .hero-slide-card{
  border-radius:24px;
  transition:opacity .4s ease;
}

.heroSwiper .swiper-slide:not(.swiper-slide-active) .ratio-hero,
.heroSwiper .swiper-slide:not(.swiper-slide-active) .hero-slide-card{
  opacity:.78;
}

.heroSwiper .hero-slide-card::after{
  content:'';
  position:absolute;
  inset:0;
  z-index:1;
  border-radius:inherit;
  background:linear-gradient(180deg, rgba(0, 0, 0, 0.1) 0%, rgba(0, 0, 0, 0.45) 100%);
  pointer-events:none;
}

.heroSwiper .swiper-slide:not(.swiper-slide-active) .position-absolute{
  opacity:0 !important;
  pointer-events:none;
}

.heroSwiper .swiper-slide .position-absolute{
  opacity:0;
  transform:translate(-50%, calc(-50% + 24px));
  transition:opacity .65s ease, transform .75s cubic-bezier(.22, 1, .36, 1);
}

.heroSwiper .swiper-slide-active .position-absolute,
.heroSwiper .swiper-slide .position-absolute.is-hero-active{
  opacity:1;
  transform:translate(-50%, -50%);
}

.heroSwiper .swiper-slide-active h1,
.heroSwiper .swiper-slide-active p,
.heroSwiper .swiper-slide-active .btn{
  animation:heroContentUp .72s cubic-bezier(.22, 1, .36, 1) both;
}

.heroSwiper .swiper-slide-active p:first-child{
  animation-delay:.08s;
}

.heroSwiper .swiper-slide-active h1{
  animation-delay:.16s;
}

.heroSwiper .swiper-slide-active p:not(:first-child){
  animation-delay:.24s;
}

.heroSwiper .swiper-slide-active .btn{
  animation-delay:.32s;
}

@keyframes heroContentUp{
  from{
    opacity:0;
    transform:translateY(22px);
  }
  to{
    opacity:1;
    transform:translateY(0);
  }
}

.mega-dropdown .dropdown-menu{
  inset: 100% 0 auto 0 !important;
  display:block;
  opacity:0;
  visibility:hidden;
  transform:translateY(8px) !important;
  pointer-events:none;
  transition:opacity .25s ease, transform .25s ease, visibility .25s ease;
}

.mega-dropdown .dropdown-menu.show{
  opacity:1;
  visibility:visible;
  transform:translateY(0) !important;
  pointer-events:auto;
}

.mega-dropdown:hover .dropdown-menu:not(.show){
  opacity:0;
  visibility:hidden;
  transform:translateY(14px) !important;
  pointer-events:none;
}

.product-card{
  animation:productCardIn .55s cubic-bezier(.22, 1, .36, 1) both;
  animation-delay:var(--card-delay, 0ms);
}

@keyframes productCardIn{
  from{
    opacity:0;
    transform:translateY(18px);
  }
  to{
    opacity:1;
    transform:translateY(0);
  }
}

.product-image{
  position:relative;
  background:#f6f7f9;
}

.product-image img{
  transition:transform .55s cubic-bezier(.22, 1, .36, 1), opacity .35s ease;
}

.product-card:hover .product-image > img:first-child{
  transform:scale(1.06);
}

.product-image-hover{
  position:absolute;
  inset:0;
  width:100%;
  height:100%;
  object-fit:cover;
  opacity:0;
  transform:scale(1.04);
  transition:opacity .38s ease, transform .55s cubic-bezier(.22, 1, .36, 1);
}

.product-card:hover .product-image-hover{
  opacity:1;
  transform:scale(1);
}

.product-card.is-variant-selected .product-image-hover{
  opacity:0 !important;
}

.product-color-count-badge{
  position:absolute;
  bottom:clamp(8px, 1vw, 14px);
  right:clamp(8px, 1vw, 14px);
  z-index:5;
  display:flex;
  align-items:center;
  gap:clamp(3px, 0.4vw, 6px);
  background:rgba(255,255,255,0.88);
  backdrop-filter:blur(4px);
  -webkit-backdrop-filter:blur(4px);
  border-radius:999px;
  padding:clamp(4px, 0.4vw, 6px) clamp(8px, 0.7vw, 12px) clamp(4px, 0.4vw, 6px) clamp(6px, 0.5vw, 9px);
  font-size:clamp(12px, 1vw, 15px);
  font-weight:600;
  color:#1F1F1F;
  line-height:1;
  pointer-events:none;
  box-shadow:0 1px 4px rgba(0,0,0,0.10);
}

.product-color-count-badge svg{
  flex-shrink:0;
  width:clamp(18px, 1.6vw, 24px);
  height:clamp(13px, 1.1vw, 17px);
}

.product-card-badges{
  position:absolute;
  top:12px;
  left:12px;
  z-index:5;
  display:flex;
  flex-direction:column;
  align-items:flex-start;
  gap:6px;
}

.product-card-badges span{
  min-width:44px;
  padding:5px 9px;
  border-radius:999px;
  background:#fff;
  color:#111827;
  font-size:12px;
  font-weight:500;
  line-height:1;
  box-shadow:none;
}

.product-card-badges span:last-child{
  background:#ef4444;
  color:#fff;
}

.product-card-badges .badge-new{
  background:#fff;
  color:#111827;
}

.product-card-badges .badge-discount{
  background:#ef4444;
  color:#fff;
}

.product-hover-actions{
  position:absolute;
  inset:0;
  z-index:12;
  display:flex;
  flex-direction:column;
  justify-content:space-between;
  padding:12px;
  pointer-events:none;
}

.product-card-utility{
  align-self:flex-end;
  display:flex;
  flex-direction:column;
  align-items:flex-end;
  gap:8px;
}

.product-action-btn{
  width:40px;
  height:40px;
  border:0;
  border-radius:50%;
  background:#fff;
  color:#111827;
  display:flex;
  align-items:center;
  justify-content:center;
  padding:0;
  box-shadow:none;
  opacity:0;
  transform:translateX(14px);
  pointer-events:auto;
  transition:opacity .25s ease, transform .25s ease, background .2s ease, color .2s ease;
}

.product-action-btn:hover{
  background:#00295C;
  color:#fff;
}

.product-card-utility .product-action-btn:nth-child(2){
  transition-delay:.06s;
}

.product-card:hover .product-action-btn,
.product-card:focus-within .product-action-btn{
  opacity:1;
  transform:translateX(0);
}

.product-card-buy-row{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:8px;
  opacity:0;
  transform:translateY(18px);
  transition:opacity .25s ease, transform .25s ease;
}

.product-card:hover .product-card-buy-row,
.product-card:focus-within .product-card-buy-row{
  opacity:1;
  transform:translateY(0);
}

.product-card-buy-row button{
  position:relative;
  z-index:13;
  min-height:42px;
  border:0;
  border-radius:6px;
  background:#fff;
  color:#111827;
  font-size:12px;
  font-weight:800;
  text-transform:uppercase;
  pointer-events:auto;
  box-shadow:none;
  transition:background .2s ease, color .2s ease, transform .2s ease;
}

.product-card-buy-row button[data-quick-view],
.product-card-buy-row button[data-add-cart]{
  pointer-events:auto;
}

.product-card-buy-row button:hover{
  background:var(--bg-primary);
  color:#fff;
  transform:translateY(-2px);
}

.product-action-btn:hover,
.product-action-btn.is-active,
.icon-btn.is-active{
  background:var(--bg-primary);
  color:#fff;
}

.icon-btn[data-wishlist-toggle].is-active{
  background:#053F70 !important;
  color:#fff !important;
}

.product-action-btn[data-wishlist-toggle].is-active i::before{
  content:"\f415";
  font-family:"bootstrap-icons";
}

.icon-btn.is-active{
  box-shadow:none;
}

.icon-btn.is-active img{
  filter:brightness(0) invert(1);
}

.icon-btn[data-wishlist-toggle].is-active{
  background:#053F70 !important;
  color:#fff !important;
  box-shadow:none;
  transform:none !important;
}

.icon-btn[data-wishlist-toggle].is-active img{
  filter:invert(20%) sepia(96%) saturate(4953%) hue-rotate(344deg) brightness(91%) contrast(104%) !important;
}

.icon-btn[data-wishlist-toggle].is-active i{
  color:#fff !important;
}

.icon-btn[data-wishlist-toggle]:hover,
.icon-btn[data-wishlist-toggle].is-active:hover{
  background:#053F70 !important;
  border-color:#053F70 !important;
  color:#fff !important;
  box-shadow:none;
}

.icon-btn[data-wishlist-toggle]:hover img,
.icon-btn[data-wishlist-toggle].is-active:hover img{
  filter:brightness(0) invert(1) !important;
}

.icon-btn[data-wishlist-toggle]:hover i,
.icon-btn[data-wishlist-toggle].is-active:hover i{
  color:#fff !important;
}

.product-stock-line{
  margin-top:10px;
  margin-bottom:8px;
}

.product-stock-meta{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:8px;
  color:#6b7280;
  font-size:12px;
  line-height:1.2;
}

.product-stock-meta b{
  color:#111827;
}

.product-stock-track{
  height:5px;
  margin-top:7px;
  border-radius:999px;
  background:#edf1f5;
  overflow:hidden;
}

.product-stock-track span{
  display:block;
  height:100%;
  border-radius:inherit;
  background:#111827;
}

.product-card .product-bottom .actions{
  display:none !important;
}

.wishlist-nav-link{
  position:relative;
}

.wishlist-count{
  position:absolute;
  top:-6px;
  right:-6px;
  min-width:18px;
  height:18px;
  padding:0 5px;
  border-radius:999px;
  background:#e11d48;
  color:#fff;
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:11px;
  font-weight:500;
  line-height:1;
  box-shadow:none;
  transform-origin:center;
  animation:wishlistPulse .3s ease;
}

.cart-nav-link{
  position:relative;
}

.cart-count{
  position:absolute;
  top:-6px;
  right:-6px;
  min-width:18px;
  height:18px;
  padding:0 5px;
  border-radius:999px;
  background:#10b981;
  color:#fff;
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:11px;
  font-weight:500;
  line-height:1;
  box-shadow:none;
}

.cart-count.is-empty{
  display:none;
}

.wishlist-count.is-empty{
  display:none;
}

@keyframes wishlistPulse{
  0%{ transform:scale(.65); }
  70%{ transform:scale(1.18); }
  100%{ transform:scale(1); }
}

.product-toast{
  position:fixed;
  right:22px;
  top:22px;
  z-index:100000;
  display:flex;
  align-items:center;
  gap:10px;
  max-width:min(340px, calc(100vw - 32px));
  padding:13px 16px;
  border-radius:8px;
  background:#111827;
  color:#fff;
  box-shadow:none;
  opacity:0;
  transform:translateY(-16px);
  transition:opacity .25s ease, transform .25s ease;
}

.product-toast.show{
  opacity:1;
  transform:translateY(0);
}

.product-toast i{
  color:#fb7185;
}

.fav-img--product{
  width:82px;
  height:102px;
  border-radius:8px;
  overflow:hidden;
  background:#f4f6f8;
  display:block;
}

.fav-img--product img{
  width:100%;
  height:100%;
  object-fit:cover;
}

.wishlist-product-link{
  color:#111827;
  text-decoration:none;
  font-weight:600;
}

.wishlist-product-link:hover{
  color:var(--bg-primary);
}

.wishlist-remove-btn{
  width:38px;
  height:38px;
  border:1px solid #e5e7eb;
  border-radius:50%;
  background:#fff;
  color:#6b7280;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  transition:background .2s ease, color .2s ease, transform .2s ease;
}

.wishlist-remove-btn:hover{
  background:#fee2e2;
  color:#dc2626;
  transform:translateY(-2px);
}

.wishlist-empty{
  min-height:230px;
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:center;
  gap:10px;
  text-align:center;
  color:#6b7280;
}

.wishlist-empty i{
  width:58px;
  height:58px;
  border-radius:50%;
  background:#f3f4f6;
  color:#e11d48;
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:26px;
}

.wishlist-empty strong{
  color:#111827;
  font-size:18px;
}

.wishlist-empty a{
  margin-top:6px;
  padding:10px 16px;
  border-radius:8px;
  background:var(--bg-primary);
  color:#fff;
  text-decoration:none;
  font-weight:600;
}

.quick-view-modal .modal-content{
  border:0;
  border-radius:10px;
  overflow:hidden;
}

.quick-view-close{
  position:absolute;
  top:14px;
  right:14px;
  z-index:3;
  width:36px;
  height:36px;
  border-radius:50%;
  background-color:#fff;
  opacity:1;
}

.quick-view-grid{
  display:grid;
  grid-template-columns:minmax(0, 1fr) minmax(0, 1fr);
  min-height:420px;
}

.quick-view-img{
  background:#f4f6f8;
}

.quick-view-img img{
  width:100%;
  height:100%;
  object-fit:cover;
}

.quick-view-info{
  padding:42px 34px;
  display:flex;
  flex-direction:column;
  justify-content:center;
}

.quick-view-kicker{
  display:inline-flex;
  width:fit-content;
  margin-bottom:10px;
  padding:5px 10px;
  border-radius:999px;
  background:#eef4ff;
  color:var(--bg-primary);
  font-size:12px;
  font-weight:500;
}

.quick-view-info h3{
  font-size:28px;
  margin-bottom:8px;
  color:#111827;
}

.quick-view-rating{
  color:#f5a623;
  font-size:13px;
  margin-bottom:12px;
}

.quick-view-rating span{
  color:#6b7280;
  margin-left:8px;
}

.quick-view-price{
  font-size:24px;
  font-weight:500;
  color:#111827;
  margin-bottom:14px;
}

.quick-view-info p{
  color:#6b7280;
  font-size:14px;
  line-height:1.6;
  margin-bottom:18px;
}

.quick-view-options{
  display:flex;
  gap:8px;
  margin-bottom:20px;
}

.quick-view-options button{
  width:38px;
  height:38px;
  border:1px solid #e5e7eb;
  border-radius:50%;
  background:#fff;
  color:#111827;
}

.quick-view-options button.active,
.quick-view-options button:hover{
  background:var(--bg-primary);
  color:#fff;
}

.quick-view-actions{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:10px;
}

.quick-view-actions .btn-cart,
.quick-view-actions .btn-add-cart-outline{
  min-height:48px;
  border-radius:10px;
  display:flex;
  align-items:center;
  justify-content:center;
  text-decoration:none;
  font-size:15px;
  font-weight:800;
  line-height:1;
}

.quick-view-actions .btn-cart{
  border:0;
  background:var(--bg-primary);
  color:#fff;
}

.quick-view-actions .btn-add-cart-outline{
  border:1px solid var(--bg-primary);
  background:#fff;
  color:var(--bg-primary);
}

.quick-view-actions .btn-cart:hover,
.quick-view-actions .btn-add-cart-outline:hover{
  background:var(--bg-secondary);
  border-color:var(--bg-secondary);
  color:#fff;
}

.product-action-modal .modal-content{
  position:relative;
  border:0;
  border-radius:18px;
  overflow:hidden;
  box-shadow:none;
}

.product-action-modal .modal-body{
  padding:34px;
}

.product-action-modal__close{
  position:absolute;
  top:16px;
  right:16px;
  z-index:2;
  width:38px;
  height:38px;
  border-radius:50%;
  background-color:#f3f6fa;
  opacity:1;
}

.product-action-modal__head{
  padding-right:42px;
  margin-bottom:18px;
}

.product-action-modal__head > span{
  width:54px;
  height:54px;
  border-radius:50%;
  background:var(--bg-primary);
  color:#fff;
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:24px;
  margin-bottom:14px;
}

.product-action-modal__head h4{
  color:#111827;
  font-size:26px;
  font-weight:900;
  margin-bottom:8px;
}

.product-action-modal__head p{
  color:#6b7280;
  margin:0;
  line-height:1.55;
}

.product-action-modal__product{
  display:grid;
  grid-template-columns:100px minmax(0, 1fr);
  align-items:center;
  gap:14px;
  padding:14px;
  border:1px solid #e8edf4;
  border-radius:14px;
  background:#f8fafc;
}

.product-action-modal__product img,
.product-action-modal__placeholder{
  width:100px;
  height:120px;
  border-radius:10px;
  object-fit:cover;
  object-position:top center;
  background:#eef2f7;
}

.product-action-modal__placeholder{
  display:flex;
  align-items:center;
  justify-content:center;
  color:#94a3b8;
  font-size:24px;
}

.product-action-modal__product strong,
.product-action-modal__product em{
  display:block;
  min-width:0;
  overflow:hidden;
  text-overflow:ellipsis;
  white-space:nowrap;
}

.product-action-modal__product strong{
  color:#111827;
  font-size:18px;
  font-weight:900;
}

.product-action-modal__product em{
  margin-top:6px;
  color:#6b7280;
  font-style:normal;
  font-weight:800;
}

.product-action-modal__compare{
  display:grid;
  grid-template-columns:repeat(4, minmax(0, 1fr));
  gap:8px;
  margin-top:14px;
}

.product-action-modal__compare div{
  min-width:0;
  padding:8px;
  border:1px solid #e8edf4;
  border-radius:10px;
  background:#fff;
}

.product-action-modal__compare img{
  width:100%;
  aspect-ratio:1 / 1;
  border-radius:8px;
  object-fit:cover;
  margin-bottom:6px;
}

.product-action-modal__compare span{
  display:block;
  overflow:hidden;
  text-overflow:ellipsis;
  white-space:nowrap;
  color:#111827;
  font-size:12px;
  font-weight:800;
}

.product-action-modal__actions{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:10px;
  margin-top:18px;
}

.product-action-modal__actions a,
.product-action-modal__actions button{
  min-height:48px;
  border:1px solid var(--bg-primary);
  border-radius:12px;
  display:flex;
  align-items:center;
  justify-content:center;
  text-decoration:none;
  font-weight:900;
}

.product-action-modal__actions a:last-child,
.product-action-modal__actions button:last-child{
  background:var(--bg-primary);
  color:#fff;
}

.product-action-modal__actions a:first-child,
.product-action-modal__actions button:first-child{
  background:#fff;
  color:var(--bg-primary);
}

.product-action-modal__actions a:hover,
.product-action-modal__actions button:hover{
  background:var(--bg-secondary);
  border-color:var(--bg-secondary);
  color:#fff;
}

.product-action-modal--cart .modal-dialog{
  max-width:min(1180px, calc(100vw - 32px));
  margin:18px 18px 18px auto;
  min-height:calc(100vh - 36px);
  display:flex;
  align-items:stretch;
  transform:translateX(110%);
  transition:transform .34s cubic-bezier(.22, 1, .36, 1);
}

.product-action-modal--cart.show .modal-dialog{
  transform:translateX(0);
}

.product-action-modal--cart .modal-content{
  width:100%;
  border-radius:24px;
}

.product-action-modal--cart .modal-body{
  padding:0;
}

.product-action-modal--cart .product-action-modal__close{
  top:20px;
  right:20px;
}


.product-action-empty{
  padding:18px;
  border:1px dashed #d8dee8;
  border-radius:12px;
  color:#6b7280;
}

.product-action-cart-empty{
  min-height:220px;
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:center;
  gap:10px;
  text-align:center;
  color:#6b7280;
  border:1px dashed #d8dee8;
  border-radius:14px;
  padding:24px;
}

.product-action-cart-empty i{
  width:58px;
  height:58px;
  border-radius:50%;
  background:#eef4ff;
  color:var(--bg-primary);
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:26px;
}

.product-action-cart-empty strong{
  color:#111827;
  font-size:18px;
}

.wishlist-slide-open{
  overflow:hidden;
}

.wishlist-slide-modal{
  position:fixed;
  inset:0;
  z-index:2600;
  opacity:0;
  pointer-events:none;
  transition:opacity .24s ease;
}

.wishlist-slide-modal.is-open{
  opacity:1;
  pointer-events:auto;
}

.wishlist-slide__backdrop{
  position:absolute;
  inset:0;
  background:rgba(0,0,0,.62);
}

.wishlist-slide__shell{
  position:absolute;
  top:18px;
  right:18px;
  bottom:18px;
  width:min(620px, calc(100vw - 32px));
  display:flex;
  flex-direction:column;
  overflow:hidden;
  border-radius:24px;
  background:#fff;
  box-shadow:none;
  transform:translateX(calc(100% + 24px));
  transition:transform .34s cubic-bezier(.22, 1, .36, 1);
}

.wishlist-slide-modal.is-open .wishlist-slide__shell{
  transform:translateX(0);
}

.wishlist-slide__close{
  position:absolute;
  top:20px;
  right:20px;
  z-index:3;
  width:38px;
  height:38px;
  border:0;
  border-radius:50%;
  background:#f3f6fa;
  color:#111827;
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:22px;
}

.wishlist-slide__body{
  flex:1;
  min-height:0;
  overflow:auto;
  padding:34px 34px 18px;
}

.wishlist-slide__body h3{
  color:#111827;
  font-size:30px;
  font-weight:900;
  margin:0 48px 22px 0;
}

.wishlist-slide__list{
  display:grid;
}

.wishlist-slide-item{
  display:grid;
  grid-template-columns:92px minmax(0, 1fr) auto;
  align-items:center;
  gap:18px;
  padding:18px 0;
  border-bottom:1px solid #e8edf4;
}

.wishlist-slide-item img,
.wishlist-slide-item__placeholder{
  width:92px;
  height:104px;
  border-radius:10px;
  object-fit:cover;
  background:#f4f6f8;
}

.wishlist-slide-item__placeholder{
  display:flex;
  align-items:center;
  justify-content:center;
  color:#94a3b8;
  font-size:24px;
}

.wishlist-slide-item strong,
.wishlist-slide-item em{
  display:block;
  min-width:0;
  overflow:hidden;
  text-overflow:ellipsis;
  white-space:nowrap;
}

.wishlist-slide-item strong{
  color:#111827;
  font-size:17px;
  font-weight:900;
}

.wishlist-slide-item em{
  margin-top:8px;
  color:#111827;
  font-style:normal;
  font-weight:800;
}

.wishlist-slide-item > button{
  border:0;
  background:transparent;
  color:#ef4444;
  text-decoration:underline;
  font-weight:900;
}

.wishlist-slide-item > a:last-child {
  width: 36px;
  height: 36px;
  min-width: 36px;
  padding: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #EEEEEE;
  border-radius: 50%;
  background: #FFFFFF;
  color: #374957;
  cursor: pointer;
  transition: all .2s ease;
  text-decoration: none;
}

.wishlist-slide-item > a:last-child i {
  color: #374957;
  font-size: 12px;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 12px;
  height: 12px;
}

.wishlist-slide-item > a:last-child:hover {
  background: #053F70;
  border-color: #053F70;
}

.wishlist-slide-item > a:last-child:hover i {
  color: #FFFFFF;
}

.wishlist-slide__footer{
  flex-shrink:0;
  padding:22px 34px 28px;
  border-top:1px solid #e8edf4;
  background:#fff;
  box-shadow:none;
  display:flex;
  flex-direction:row;
  gap:10px;
}

.wishlist-slide__footer a{
  flex:1;
  min-height:56px;
  border-radius:12px;
  background:var(--bg-primary);
  color:#fff;
  display:flex;
  align-items:center;
  justify-content:center;
  text-decoration:none;
  font-weight:900;
  text-transform:uppercase;
  transition:all .2s ease;
}

.wishlist-slide__footer a:hover{
  background:var(--bg-secondary);
  color:#fff;
}

.wishlist-slide__footer button{
  flex:1;
  width:auto;
  min-height:56px;
  padding:10px 24px;
  border-radius:12px;
  border:1px solid #e4e8ef;
  background:#fff;
  color:#4b5563;
  font-family:'Nunito Sans', sans-serif;
  font-weight:400;
  font-size:16px;
  line-height:22px;
  text-transform:uppercase;
  cursor:pointer;
  margin-top:0;
  transition:all .2s ease;
}

.wishlist-slide__footer button:hover{
  background:#f4f7fb;
  border-color:#cfd8e6;
}

.wishlist-slide-empty{
  min-height:360px;
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:center;
  gap:10px;
  text-align:center;
  color:#6b7280;
}

.wishlist-slide-empty i{
  width:64px;
  height:64px;
  border-radius:50%;
  background:#eef4ff;
  color:var(--bg-primary);
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:28px;
}

.wishlist-slide-empty strong{
  color:#111827;
  font-size:18px;
}

.cart-slide-open{
  overflow:hidden;
}

.cart-slide-modal{
  position:fixed;
  inset:0;
  z-index:2600;
  opacity:0;
  pointer-events:none;
  transition:opacity .24s ease;
}

.cart-slide-modal.is-open{
  opacity:1;
  pointer-events:auto;
}

.cart-slide-modal__backdrop{
  position:absolute;
  inset:0;
  background:rgba(0,0,0,.62);
}

.cart-slide-modal__shell{
  position:absolute;
  top:18px;
  right:18px;
  bottom:18px;
  width:min(960px, calc(100vw - 32px));
  overflow:hidden;
  border-radius:24px;
  background:#fff;
  box-shadow:none;
  transform:translateX(calc(100% + 24px));
  transition:transform .34s cubic-bezier(.22, 1, .36, 1);
}

.cart-slide-modal.is-open .cart-slide-modal__shell{
  transform:translateX(0);
}

.cart-slide-modal__close{
  margin-left:auto;
  flex-shrink:0;
  z-index:3;
  width:38px;
  height:38px;
  border:0;
  border-radius:50%;
  background:#f3f6fa;
  color:#111827;
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:18px;
}

.cart-slide-modal__body{
  height:100%;
}

.cart-slide-modal .product-action-cart{
  height:100%;
  min-height:0;
}

.compare-drawer{
  position:fixed;
  left:50%;
  bottom:18px;
  z-index:1800;
  width:min(720px, calc(100vw - 28px));
  background:#fff;
  border:1px solid #e5e7eb;
  border-radius:14px;
  box-shadow:none;
  transform:translate(-50%, 130%);
  opacity:0;
  pointer-events:none;
  transition:transform .28s ease, opacity .28s ease;
}

.compare-drawer.is-visible{
  transform:translate(-50%, 0);
  opacity:1;
  pointer-events:auto;
}

.compare-drawer__head,
.compare-drawer__foot{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:12px;
  padding:10px 12px;
}

.compare-drawer__head{
  border-bottom:1px solid #eef0f3;
}

.compare-drawer__head button,
.compare-drawer__foot button{
  border:0;
  background:#f3f4f6;
  color:#111827;
  border-radius:999px;
  padding:7px 12px;
}

.compare-drawer__body{
  display:grid;
  grid-template-columns:repeat(4, minmax(0, 1fr));
  gap:8px;
  padding:10px 12px;
}

.compare-item{
  position:relative;
  display:flex;
  gap:10px;
  min-width:0;
  padding:8px 28px 8px 8px;
  border:1px solid #eef0f3;
  border-radius:8px;
}

.compare-item img{
  width:48px;
  height:62px;
  object-fit:cover;
  border-radius:6px;
  flex-shrink:0;
}

.compare-item strong,
.compare-item span{
  display:block;
  overflow:hidden;
  text-overflow:ellipsis;
  white-space:nowrap;
}

.compare-item strong{
  font-size:13px;
  color:#111827;
}

.compare-item span{
  font-size:12px;
  color:#6b7280;
}

.compare-item > button{
  position:absolute;
  top:6px;
  right:6px;
  width:20px;
  height:20px;
  border:0;
  border-radius:50%;
  background:#f3f4f6;
  color:#111827;
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:13px;
}

.compare-empty{
  grid-column:1 / -1;
  color:#6b7280;
  font-size:14px;
}

.mini-cart-empty,
.cart-empty-state{
  min-height:260px;
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:center;
  gap:10px;
  text-align:center;
  color:#6b7280;
}

.mini-cart-empty i,
.cart-empty-state i{
  width:56px;
  height:56px;
  border-radius:50%;
  background:#f3f4f6;
  color:var(--bg-primary);
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:25px;
}

.mini-cart-alert{
  padding:10px 12px;
  border-radius:8px;
  background:#fff7ed;
  color:#9a3412;
  font-size:13px;
  margin-bottom:10px;
}

.free-shipping-box{
  padding:12px;
  border:1px solid #eef0f3;
  border-radius:8px;
  margin-bottom:12px;
}

.free-shipping-track{
  height:7px;
  border-radius:999px;
  background:#edf1f5;
  overflow:hidden;
}

.free-shipping-track span{
  display:block;
  height:100%;
  border-radius:inherit;
  background:linear-gradient(90deg, var(--bg-primary), #10b981);
}

.special-offer-backdrop{
  position:fixed;
  inset:0;
  z-index:3200;
  display:flex;
  align-items:center;
  justify-content:center;
  padding:28px;
  background:rgba(0, 17, 39, .72);
  backdrop-filter:blur(1px);
  opacity:0;
  pointer-events:none;
  transition:opacity .26s ease;
}

.special-offer-backdrop.is-visible{
  opacity:1;
  pointer-events:auto;
}

.special-offer-pop{
  position:relative;
  width:min(1120px, calc(100vw - 56px));
  max-height:min(660px, calc(100vh - 56px));
  display:grid;
  grid-template-columns:1fr 1fr;
  overflow:hidden;
  border-radius:16px;
  background:#fff;
  color:var(--bg-primary);
  box-shadow:none;
  transform:translateY(20px) scale(.98);
  transition:transform .28s cubic-bezier(.22, 1, .36, 1);
}

.special-offer-backdrop.is-visible .special-offer-pop{
  transform:translateY(0) scale(1);
}

.special-offer-close{
  position:absolute;
  top:18px;
  right:18px;
  z-index:3;
  width:44px;
  height:44px;
  border:0;
  border-radius:50%;
  background:#fff;
  color:#111827;
  font-size:22px;
  box-shadow:none;
}

.special-offer-head{
  position:relative;
  min-height:500px;
  padding:64px 44px;
  background:linear-gradient(145deg, var(--bg-primary), #004E91);
  color:#fff;
  overflow:hidden;
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:center;
  text-align:center;
}

.special-offer-head::before{
  content:"";
  position:absolute;
  inset:0;
  display:block;
  background:
    linear-gradient(135deg, rgba(255,255,255,.12), transparent 38%),
    radial-gradient(circle at 88% 12%, rgba(255,255,255,.16), transparent 28%);
  pointer-events:none;
}

.special-offer-head > *{
  position:relative;
  z-index:1;
}

.special-offer-head span{
  display:block;
  color:#d9ecff;
  font-size:13px;
  font-weight:800;
  text-transform:uppercase;
  letter-spacing:0;
  margin-bottom:28px;
}

.special-offer-head strong{
  display:block;
  font-size:clamp(54px, 6.4vw, 96px);
  line-height:1.05;
  margin-bottom:34px;
  font-weight:900;
  letter-spacing:0;
}

.special-offer-head strong em{
  display:inline;
  color:#fff;
  font-style:normal;
}

.special-offer-head p{
  color:#f5f9ff;
  margin-bottom:24px;
  font-size:17px;
  font-weight:800;
  text-transform:uppercase;
}

.special-offer-head mark{
  padding:0;
  background:transparent;
  color:#7cc7ff;
}

.special-offer-code{
  width:auto;
  min-width:150px;
  border:0;
  border-radius:8px;
  background:#fff;
  color:var(--bg-primary);
  padding:14px 24px;
  margin-bottom:22px;
  font-weight:800;
  text-transform:uppercase;
}

.special-offer-copy{
  min-width:220px;
  border:0;
  border-radius:12px;
  background:#fff;
  color:var(--bg-primary);
  padding:16px 24px;
  font-size:15px;
  font-weight:800;
  text-transform:uppercase;
  box-shadow:none;
}

.special-offer-products{
  padding:48px 40px;
  overflow:auto;
}

.special-offer-products h6{
  margin-bottom:22px;
  color:var(--bg-primary);
  font-size:26px;
  font-weight:800;
}

.special-offer-product{
  display:grid;
  grid-template-columns:88px minmax(0, 1fr) auto;
  align-items:center;
  gap:18px;
  padding:20px 0;
  border-top:1px solid #eef0f3;
  color:#111827;
  text-decoration:none;
}

.special-offer-product img{
  width:88px;
  height:94px;
  object-fit:cover;
  border-radius:8px;
  background:#f4f6f8;
}

.special-offer-product span,
.special-offer-product b,
.special-offer-product em{
  display:block;
  min-width:0;
}

.special-offer-product b{
  overflow:hidden;
  text-overflow:ellipsis;
  white-space:nowrap;
  font-size:18px;
  margin-bottom:8px;
}

.special-offer-product em{
  color:#111827;
  font-size:16px;
  font-style:normal;
}

.special-offer-product > strong{
  padding:13px 20px;
  border-radius:999px;
  background:var(--bg-primary);
  color:#fff;
  font-size:14px;
  white-space:nowrap;
}

@media (max-width: 1199.98px){
  .product-card-buy-row button{
    min-height:38px;
    font-size:11px;
  }

  .product-action-btn{
    width:36px;
    height:36px;
  }

  .special-offer-pop{
    width:min(960px, calc(100vw - 40px));
    max-height:calc(100vh - 40px);
    grid-template-columns:.95fr 1.05fr;
  }

  .special-offer-head{
    min-height:470px;
    padding:52px 32px;
  }

  .special-offer-head strong{
    font-size:clamp(48px, 7vw, 78px);
    margin-bottom:26px;
  }

  .special-offer-products{
    padding:38px 30px;
  }

  .special-offer-product{
    grid-template-columns:76px minmax(0, 1fr) auto;
    gap:14px;
    padding:16px 0;
  }

  .special-offer-product img{
    width:76px;
    height:84px;
  }

  .special-offer-product b{
    font-size:16px;
  }

  .special-offer-product > strong{
    padding:11px 14px;
    font-size:12px;
  }
}

@media (max-width: 991.98px){
  .products-section .product-card,
  .products-section .products-wrapper .product-card,
  .product-list-section .products-wrapper .product-card{
    border-radius:12px;
  }

  .product-card-badges{
    top:8px;
    left:8px;
  }

  .product-card-badges span{
    min-width:38px;
    padding:4px 8px;
    font-size:11px;
  }

  .product-stock-meta{
    font-size:11px;
  }

  .special-offer-backdrop{
    align-items:flex-start;
    overflow:auto;
  }

  .special-offer-pop{
    width:min(720px, calc(100vw - 32px));
    max-height:none;
    grid-template-columns:1fr;
    overflow:visible;
  }

  .special-offer-close{
    top:14px;
    right:14px;
    width:40px;
    height:40px;
  }

  .special-offer-head{
    min-height:auto;
    padding:44px 28px 34px;
  }

  .special-offer-head span{
    margin-bottom:16px;
  }

  .special-offer-head strong{
    font-size:clamp(42px, 10vw, 72px);
    margin-bottom:20px;
  }

  .special-offer-head p{
    font-size:14px;
    margin-bottom:18px;
  }

  .special-offer-code{
    margin-bottom:14px;
  }

  .special-offer-copy{
    min-width:190px;
    padding:13px 18px;
    font-size:13px;
  }

  .special-offer-products{
    padding:28px 24px;
    max-height:none;
  }

  .special-offer-products h6{
    font-size:22px;
    margin-bottom:14px;
  }
}

.search-suggest-panel{
  position:fixed;
  z-index:2200;
  max-height:330px;
  overflow:auto;
  border:1px solid #e5e7eb;
  border-radius:8px;
  background:#fff;
  box-shadow:none;
  opacity:0;
  transform:translateY(8px);
  pointer-events:none;
  transition:opacity .18s ease, transform .18s ease;
}

.search-suggest-panel.is-visible{
  opacity:1;
  transform:translateY(0);
  pointer-events:auto;
}

.search-suggest-item{
  display:grid;
  grid-template-columns:48px minmax(0, 1fr) auto;
  align-items:center;
  gap:10px;
  padding:10px;
  color:#111827;
  text-decoration:none;
}

.search-suggest-item:hover{
  background:#f6f8fb;
}

.search-suggest-item img{
  width:48px;
  height:58px;
  object-fit:cover;
  border-radius:6px;
}

.search-suggest-item span{
  overflow:hidden;
  text-overflow:ellipsis;
  white-space:nowrap;
  font-size:13px;
  font-weight:600;
}

.search-suggest-item strong{
  font-size:12px;
  color:#6b7280;
  white-space:nowrap;
}

.search-suggest-empty{
  padding:14px;
  color:#6b7280;
  font-size:14px;
}


.product-live-meta{
  display:grid;
  gap:8px;
  margin-top:18px;
  padding:14px;
  border:1px solid #eef0f3;
  border-radius:8px;
  background:#f8fafc;
  color:#475569;
  font-size:14px;
}

.product-live-meta div,
.product-live-meta button{
  display:flex;
  align-items:center;
  gap:8px;
}

.product-live-meta i{
  color:var(--bg-primary);
}

.product-live-meta button{
  width:fit-content;
  border:0;
  background:transparent;
  color:var(--bg-primary);
  padding:0;
  font-weight:500;
}

.size-guide-modal{
  border:0;
  border-radius:10px;
}

.size-suggest{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:10px;
  margin-bottom:16px;
}

.size-suggest label{
  display:grid;
  gap:6px;
  font-size:13px;
  color:#6b7280;
}

.size-suggest input{
  border:1px solid #e5e7eb;
  border-radius:8px;
  padding:9px 10px;
}

.size-suggest strong{
  grid-column:1 / -1;
  padding:10px;
  border-radius:8px;
  background:#eef4ff;
  color:var(--bg-primary);
}

@media (hover:none){
  .product-action-btn{
    opacity:1;
    transform:none;
  }

  .product-card-buy-row{
    opacity:1;
    transform:none;
  }
}

@media (max-width: 575.98px){
  .product-hover-actions{
    padding:8px;
  }

  .product-action-btn{
    width:32px;
    height:32px;
  }

  .product-card-buy-row{
    gap:6px;
  }

  .product-card-buy-row button{
    min-height:36px;
    font-size:10px;
  }

  .product-toast{
    top:auto;
    right:16px;
    bottom:calc(131px + 12px);
    padding:12px 14px;
  }

  .quick-view-grid{
    grid-template-columns:1fr;
  }

  .quick-view-img{
    height:280px;
  }

  .quick-view-info{
    padding:24px 18px;
  }

  .quick-view-actions,
  .size-suggest{
    grid-template-columns:1fr;
  }

  .product-action-modal .modal-body{
    padding:26px 18px 18px;
  }

  .product-action-modal__head h4{
    font-size:22px;
  }

  .product-action-modal__product{
    grid-template-columns:82px minmax(0, 1fr);
  }

  .product-action-modal__product img,
  .product-action-modal__placeholder{
    width:82px;
    height:98px;
  }

  .product-action-modal__compare{
    grid-template-columns:1fr 1fr;
  }

  .product-action-modal__actions{
    grid-template-columns:1fr;
  }

  .compare-drawer__body{
    grid-template-columns:1fr 1fr;
  }

  .compare-drawer{
    bottom:10px;
    width:calc(100vw - 20px);
  }

  .special-offer-backdrop{
    padding:10px;
  }

  .special-offer-pop{
    width:100%;
    max-height:none;
    grid-template-columns:1fr;
    overflow:visible;
    border-radius:12px;
  }

  .special-offer-head{
    min-height:auto;
    padding:34px 16px 26px;
  }

  .special-offer-head strong{
    font-size:42px;
    margin-bottom:16px;
  }

  .special-offer-head p{
    font-size:12px;
    line-height:1.35;
    margin-bottom:14px;
    max-width:260px;
  }

  .special-offer-products{
    padding:20px 14px;
  }

  .special-offer-products h6{
    font-size:20px;
  }

  .special-offer-product{
    grid-template-columns:64px minmax(0, 1fr);
    gap:10px;
    padding:13px 0;
  }

  .special-offer-product img{
    width:64px;
    height:70px;
  }

  .special-offer-product b{
    font-size:14px;
  }

  .special-offer-product em{
    font-size:13px;
  }

  .special-offer-product > strong{
    grid-column:2;
    width:fit-content;
    padding:8px 10px;
    font-size:10px;
  }

  .special-offer-code{
    padding:11px 18px;
    margin-bottom:12px;
  }

  .special-offer-copy{
    min-width:170px;
    padding:12px 16px;
    font-size:12px;
  }
}

@media (prefers-reduced-motion: reduce){
  .nx-reveal,
  .heroSwiper .swiper-slide .position-absolute,
  .heroSwiper .swiper-slide-active h1,
  .heroSwiper .swiper-slide-active p,
  .heroSwiper .swiper-slide-active .btn,
  .product-card,
  .product-image img,
  .product-image-hover,
  .product-action-btn,
  .product-toast{
    animation:none !important;
    transition:none !important;
  }

  .nx-reveal{
    opacity:1;
    transform:none;
  }
}

/* Storefront loading, checkout and utility states */
.page-loader{
  position:fixed;
  inset:0;
  z-index:2600;
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:center;
  gap:18px;
  background:#fff;
  opacity:0;
  pointer-events:none;
  transition:opacity .28s ease;
}

.page-loader.is-visible{
  opacity:1;
  pointer-events:auto;
}

.page-loader.is-done{
  opacity:0;
}

.page-loader__mark{
  width:58px;
  height:58px;
  border-radius:50%;
  display:flex;
  align-items:center;
  justify-content:center;
  background:var(--bg-primary);
  color:#fff;
  font-size:28px;
  font-weight:900;
  letter-spacing:0;
}

.page-loader__bar{
  width:180px;
  height:4px;
  border-radius:999px;
  background:#eef0f3;
  overflow:hidden;
}

.page-loader__bar span{
  display:block;
  width:45%;
  height:100%;
  border-radius:inherit;
  background:var(--bg-primary);
  animation:loaderBar 1s ease-in-out infinite;
}

@keyframes loaderBar{
  0%{ transform:translateX(-110%); }
  100%{ transform:translateX(230%); }
}

.page-progress{
  position:fixed;
  top:0;
  left:0;
  right:0;
  z-index:2700;
  height:3px;
  pointer-events:none;
  overflow:hidden;
}

.page-progress span{
  display:block;
  width:100%;
  height:100%;
  background:var(--bg-secondary);
  transform:translateX(-100%);
}

.page-progress.is-active span{
  animation:pageProgress .9s ease forwards;
}

@keyframes pageProgress{
  0%{ transform:translateX(-100%); }
  60%{ transform:translateX(-20%); }
  100%{ transform:translateX(0); }
}

.btn-loader{
  width:15px;
  height:15px;
  border-radius:50%;
  border:2px solid currentColor;
  border-top-color:transparent;
  display:inline-block;
  margin-right:8px;
  vertical-align:-2px;
  animation:spin .75s linear infinite;
}

button.is-loading,
a.is-loading{
  pointer-events:none;
  opacity:.78;
}

@keyframes spin{
  to{ transform:rotate(360deg); }
}

.checkout-empty-state{
  min-height:240px;
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:center;
  gap:10px;
  text-align:center;
  color:#6b7280;
  border:1px dashed #d8dee8;
  border-radius:12px;
  padding:24px;
  margin-bottom:18px;
}

.checkout-empty-state i{
  width:58px;
  height:58px;
  border-radius:50%;
  display:flex;
  align-items:center;
  justify-content:center;
  background:#f3f4f6;
  color:var(--bg-primary);
  font-size:25px;
}

.checkout-empty-state strong{
  color:#111827;
  font-size:18px;
}

.checkout-empty-state a{
  margin-top:4px;
  padding:10px 14px;
  border-radius:8px;
  background:var(--bg-primary);
  color:#fff;
  text-decoration:none;
  font-weight:500;
}

.checkout-item-placeholder{
  width:74px;
  height:86px;
  border-radius:12px;
  background:#f3f4f6;
  display:flex;
  align-items:center;
  justify-content:center;
  color:#94a3b8;
}

.checkout-box .account-input.is-invalid,
.newsletter-form .form-control.is-invalid{
  border-color:#dc2626 !important;
  box-shadow:none;
}

.order-success-modal{
  position:relative;
  border:0;
  border-radius:14px;
  padding:34px;
  text-align:center;
}

.order-success-modal .btn-close{
  position:absolute;
  top:16px;
  right:16px;
}

.order-success-icon{
  width:72px;
  height:72px;
  margin:0 auto 18px;
  border-radius:50%;
  background:#dcfce7;
  color:#16a34a;
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:38px;
}

.order-success-modal h4{
  color:#111827;
  font-size:25px;
  margin-bottom:10px;
}

.order-success-modal p{
  color:#6b7280;
  margin-bottom:22px;
}

.back-to-top{
  position:fixed;
  right:22px;
  bottom:22px;
  z-index:1200;
  width:48px;
  height:48px;
  border:0;
  border-radius:50%;
  background:#111827;
  color:#fff;
  display:flex;
  align-items:center;
  justify-content:center;
  box-shadow:none;
  opacity:0;
  transform:translateY(12px);
  pointer-events:none;
  transition:opacity .22s ease, transform .22s ease, background .2s ease;
}

.back-to-top.is-visible{
  opacity:1;
  transform:translateY(0);
  pointer-events:auto;
}

.back-to-top:hover{
  background:#053F70 !important;
}

.checkout-summary .btn-brand:disabled{
  opacity:.55;
  cursor:not-allowed;
}

@media (max-width: 575.98px){
  .page-loader__mark{
    width:50px;
    height:50px;
    font-size:24px;
  }

  .back-to-top{
    width:42px;
    height:42px;
    right:16px;
    bottom:16px;
  }

  .order-success-modal{
    padding:28px 20px;
  }
}

/* Remaining storefront modules */
.top-promo-code{
  margin-left:10px;
  border:1px solid rgba(255,255,255,.42);
  border-radius:999px;
  background:rgba(255,255,255,.12);
  color:#fff;
  padding:3px 10px;
  font-size:12px;
  font-weight:800;
}

.top-promo-code.is-copied,
.top-promo-code:hover{
  background:#fff;
  color:var(--bg-primary);
}

.global-search-overlay{
  position:fixed;
  inset:0;
  z-index:2400;
  display:flex;
  align-items:flex-start;
  justify-content:center;
  padding:88px 20px 20px;
  background:rgba(0, 17, 39, .72);
  opacity:0;
  pointer-events:none;
  transition:opacity .24s ease;
}

.global-search-overlay.is-open{
  opacity:1;
  pointer-events:auto;
}

.global-search-panel{
  position:relative;
  width:min(760px, 100%);
  border-radius:14px;
  background:#fff;
  padding:30px;
  box-shadow:none;
}

.global-search-close{
  position:absolute;
  top:14px;
  right:14px;
  width:38px;
  height:38px;
  border:0;
  border-radius:50%;
  background:#f3f6fa;
  color:var(--bg-primary);
  font-size:22px;
}

.global-search-panel > span{
  display:block;
  color:var(--bg-primary);
  font-weight:800;
  margin-bottom:14px;
}

.global-search-input{
  display:flex;
  align-items:center;
  gap:10px;
  border:1px solid #e5e7eb;
  border-radius:12px;
  padding:0 14px;
  height:54px;
}

.global-search-input i{
  color:var(--bg-primary);
  font-size:20px;
}

.global-search-input input{
  width:100%;
  border:0;
  outline:0;
  font-size:16px;
}

.global-search-tags{
  display:flex;
  flex-wrap:wrap;
  gap:8px;
  margin:16px 0;
}

.global-search-tags button{
  border:0;
  border-radius:999px;
  background:#eef4ff;
  color:var(--bg-primary);
  padding:8px 12px;
  font-weight:500;
}

.global-search-results{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:10px;
}

.global-search-result{
  display:flex;
  align-items:center;
  gap:12px;
  padding:10px;
  border:1px solid #eef0f3;
  border-radius:10px;
  color:#111827;
  text-decoration:none;
}

.global-search-result img{
  width:58px;
  height:68px;
  border-radius:8px;
  object-fit:cover;
}

.global-search-result strong,
.global-search-result em{
  display:block;
}

.global-search-result strong{
  font-size:14px;
}

.global-search-result em{
  color:#6b7280;
  font-style:normal;
  font-size:13px;
}

.global-search-empty{
  grid-column:1 / -1;
  color:#6b7280;
  padding:16px;
  border:1px dashed #d8dee8;
  border-radius:10px;
}

.mobile-shop-nav{
  display:none;
}

.instagram-showcase{
  background:#f8fafc;
}

.instagram-showcase__head{
  display:flex;
  align-items:end;
  justify-content:space-between;
  gap:16px;
  margin-bottom:20px;
}

.instagram-showcase__head span{
  display:block;
  color:var(--bg-secondary);
  font-weight:800;
  margin-bottom:4px;
}

.instagram-showcase__head h3{
  margin:0;
  color:var(--bg-primary);
  font-size:30px;
  font-weight:800;
}

.instagram-showcase__head a{
  color:var(--bg-primary);
  text-decoration:none;
  font-weight:800;
}

.instagram-showcase__grid{
  display:grid;
  grid-template-columns:repeat(6, minmax(0, 1fr));
  gap:10px;
}

.instagram-tile{
  position:relative;
  aspect-ratio:1 / 1;
  border-radius:10px;
  overflow:hidden;
  background:#eef0f3;
}

.instagram-tile img{
  width:100%;
  height:100%;
  object-fit:cover;
  transition:transform .35s ease;
}

.instagram-tile span{
  position:absolute;
  inset:0;
  display:flex;
  align-items:center;
  justify-content:center;
  background:rgba(0,41,92,.42);
  color:#fff;
  font-size:26px;
  opacity:0;
  transition:opacity .25s ease;
}

.instagram-tile:hover img{
  transform:scale(1.06);
}

.instagram-tile:hover span{
  opacity:1;
}

.bundle-box{
  border:1px solid #e5e7eb;
  border-radius:14px;
  padding:24px;
  background:#fff;
}

.bundle-head span{
  color:var(--bg-secondary);
  font-weight:800;
  font-size:13px;
}

.bundle-head h3{
  color:var(--bg-primary);
  font-size:26px;
  margin:4px 0 18px;
}

.bundle-items{
  display:grid;
  grid-template-columns:repeat(3, minmax(0, 1fr));
  gap:12px;
}

.bundle-item{
  display:grid;
  grid-template-columns:auto 72px minmax(0, 1fr);
  align-items:center;
  gap:10px;
  border:1px solid #eef0f3;
  border-radius:10px;
  padding:10px;
  cursor:pointer;
}

.bundle-item input{
  accent-color:var(--bg-primary);
}

.bundle-item img{
  width:72px;
  height:82px;
  object-fit:cover;
  border-radius:8px;
}

.bundle-item strong,
.bundle-item em{
  display:block;
  min-width:0;
  overflow:hidden;
  text-overflow:ellipsis;
  white-space:nowrap;
}

.bundle-item strong{
  color:#111827;
  font-size:14px;
}

.bundle-item em{
  color:#6b7280;
  font-style:normal;
  font-size:13px;
}

.bundle-summary{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:16px;
  margin-top:18px;
  padding-top:18px;
  border-top:1px solid #eef0f3;
}

.bundle-summary strong{
  color:var(--bg-primary);
  font-size:24px;
}

.bundle-summary button{
  border:0;
  border-radius:10px;
  background:var(--bg-primary);
  color:#fff;
  padding:13px 18px;
  font-weight:800;
}

@media (max-width: 991.98px){
  .instagram-showcase__grid{
    grid-template-columns:repeat(3, minmax(0, 1fr));
  }

  .bundle-items{
    grid-template-columns:1fr;
  }

  .bundle-summary{
    align-items:stretch;
    flex-direction:column;
  }
}

@media (max-width: 767.98px){
  body{
    padding-bottom:74px;
  }

  .mobile-shop-nav{
    position:fixed;
    left:10px;
    right:10px;
    bottom:10px;
    z-index:1500;
    display:grid;
    grid-template-columns:repeat(5, 1fr);
    gap:4px;
    padding:8px;
    border-radius:16px;
    background:#fff;
    box-shadow:none;
  }

  .mobile-shop-nav a,
  .mobile-shop-nav button{
    position:relative;
    border:0;
    background:transparent;
    color:var(--bg-primary);
    text-decoration:none;
    display:flex;
    flex-direction:column;
    align-items:center;
    justify-content:center;
    gap:3px;
    min-height:44px;
    font-size:9px;
    font-weight:600;
  }

  .mobile-shop-nav i{
    font-size:16px;
    line-height:1;
    display:flex;
    align-items:center;
    justify-content:center;
  }

  .mobile-shop-nav .wishlist-count,
  .mobile-shop-nav .cart-count{
    top:2px;
    right:14px;
    box-shadow:none;
  }

  .global-search-overlay{
    padding:64px 12px 12px;
  }

  .global-search-panel{
    padding:24px 16px 18px;
  }

  .global-search-results{
    grid-template-columns:1fr;
  }

  .instagram-showcase__head{
    align-items:flex-start;
    flex-direction:column;
  }

  .instagram-showcase__grid{
    grid-template-columns:repeat(2, minmax(0, 1fr));
  }

  .bundle-box{
    padding:16px;
  }

  .top-promo-code{
    display:inline-flex;
    margin-top:0;
    margin-left:8px;
  }

  /* Top-bar tek satıra sığsın */
  .top-bar-text{
    font-size:13px;
    white-space:nowrap;
  }

  .top-bar .col-12{
    display:flex;
    align-items:center;
    justify-content:center;
    flex-wrap:nowrap;
    gap:0;
  }
}

/* Final Anvogue parity modules */
.locale-controls{
  position:relative;
  z-index:1700;
  display:flex;
  align-items:center;
  flex-wrap:wrap;
  gap:6px;
}

.locale-control{
  position:relative;
}

.locale-control > button{
  min-width:0;
  min-height:32px;
  border:1px solid rgba(255,255,255,.35);
  border-radius:999px;
  background:rgba(255,255,255,.12);
  color:#fff;
  padding:0 11px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:6px;
  font-size:12px;
  font-weight:800;
  line-height:1;
  white-space:nowrap;
}

.locale-menu{
  position:absolute;
  top:calc(100% + 6px);
  left:0;
  width:max-content;
  min-width:64px;
  display:none;
  grid-template-columns:1fr;
  gap:4px;
  padding:6px;
  border-radius:10px;
  background:#fff;
  border:1px solid rgba(15,23,42,.08);
  box-shadow:none;
  z-index:1800;
}

.locale-control[data-locale-control="currency"] .locale-menu{
  width:max-content;
  grid-template-columns:1fr;
}

.top-bar .dropdown{
  width:fit-content;
  max-width:100%;
}

.anvogue-listing .listing-toolbar{
  position:sticky;
  top:82px;
  z-index:25;
  padding:12px;
  border:1px solid #e8edf4;
  border-radius:14px;
  background:rgba(255,255,255,.96);
  box-shadow:none;
  backdrop-filter:blur(8px);
}

.anvogue-listing,
.anvogue-detail{
  overflow:visible;
}

.listing-active-filters{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:12px;
  margin:-4px 0 16px;
  padding:10px 12px;
  border:1px solid #e8edf4;
  border-radius:12px;
  background:#f8fafc;
}

.listing-active-filters.is-empty{
  display:none;
}

.listing-active-filters__chips{
  display:flex;
  flex-wrap:wrap;
  gap:8px;
}

.listing-active-filters button{
  border:0;
  border-radius:999px;
  font-weight:800;
}

.listing-active-filters__chips button{
  display:inline-flex;
  align-items:center;
  gap:6px;
}

.listing-active-filters > button{
  flex-shrink:0;
  padding:8px 12px;
  background:transparent;
  color:#1F1F1F;
  border:1px solid #f2f2f2;
  font-size:12px;
  border:1px solid rgba(15,23,42,.08);
}

.anvogue-listing #productGrid{
  position:relative;
  transition:opacity .2s ease, transform .2s ease;
}

.anvogue-listing #productGrid.is-refreshing{
  opacity:.55;
  transform:translateY(8px);
  pointer-events:none;
}

.anvogue-listing #productGrid::after{
  content:"";
  position:absolute;
  inset:0;
  z-index:20;
  opacity:0;
  pointer-events:none;
  background:linear-gradient(110deg, transparent 0%, rgba(255,255,255,.75) 45%, transparent 70%);
  transform:translateX(-100%);
}

.anvogue-listing #productGrid.is-refreshing::after{
  opacity:1;
  animation:listingShimmer .6s ease;
}

@keyframes listingShimmer{
  from{ transform:translateX(-100%); }
  to{ transform:translateX(100%); }
}

.anvogue-listing #filterPanel:not(.show):not(.collapsing){
  position:sticky;
  top:94px;
}

.anvogue-listing .accordion-item{
  border-color:#e8edf4 !important;
  box-shadow:none;
}

.anvogue-listing .form-check-input:checked{
  background-color:var(--bg-primary);
  border-color:var(--bg-primary);
}

.anvogue-detail{
  background:#fff;
}

.anvogue-detail > .container-fluid > .row{
  display:grid;
  grid-template-columns:minmax(0, 1.08fr) minmax(360px, .92fr);
  gap:44px;
  align-items:start;
}

.anvogue-detail > .container-fluid > .row > [class*="col-"]{
  width:auto;
  max-width:none;
  padding:0;
}

.anvogue-detail .product-gallery{
  position:sticky;
  top:112px;
  display:grid;
  grid-template-columns:86px minmax(0, 1fr);
  gap:16px;
  align-items:start;
  animation:productDetailRise .55s ease both;
}

.detail-media-badge{
  position:absolute;
  z-index:2;
  top:18px;
  right:18px;
  min-height:30px;
  padding:6px 12px;
  border-radius:999px;
  background:#dc2626;
  color:#fff;
  font-size:13px;
  font-weight:900;
}

.anvogue-detail .main-image{
  position:relative;
  overflow:hidden;
  border-radius:8px;
  background:#f5f5f5;
  aspect-ratio:4 / 5;
  --zoom-x:50%;
  --zoom-y:50%;
}

.anvogue-detail .main-image img{
  width:100%;
  height:100%;
  object-fit:contain;
  background:#f7f7f7;
  border-radius:0;
  opacity:0;
  transform-origin:var(--zoom-x) var(--zoom-y);
  transition:opacity .22s ease, transform .45s ease;
}

.anvogue-detail .main-image img.is-loaded{
  opacity:1;
}

.anvogue-detail .main-image:hover img{
  transform:scale(1.08);
}

.detail-gallery-nav{
  position:absolute;
  left:16px;
  right:16px;
  top:50%;
  z-index:3;
  display:flex;
  justify-content:space-between;
  pointer-events:none;
  transform:translateY(-50%);
}

.detail-gallery-nav button{
  width:40px;
  height:40px;
  border:0;
  border-radius:50%;
  background:rgba(255,255,255,.92);
  color:#111827;
  display:flex;
  align-items:center;
  justify-content:center;
  pointer-events:auto;
  opacity:0;
  transform:translateY(8px);
  box-shadow:none;
  transition:opacity .2s ease, transform .2s ease, background .2s ease, color .2s ease;
}

.anvogue-detail .main-image:hover .detail-gallery-nav button{
  opacity:1;
  transform:translateY(0);
}

.detail-gallery-nav button:hover{
  background:#111827;
  color:#fff;
}

.anvogue-detail .thumbs{
  order:-1;
  display:grid;
  gap:12px;
  margin-top:0;
  overflow:visible;
  padding-bottom:0;
}

.anvogue-detail .thumbs img{
  width:86px;
  height:108px;
  min-width:86px;
  max-width:86px;
  flex:0 0 86px;
  aspect-ratio:86 / 108;
  object-fit:contain;
  background:#f7f7f7;
  border:1px solid #e5e7eb;
  border-radius:8px;
  opacity:.72;
  transition:opacity .2s ease, border-color .2s ease, transform .2s ease;
}

.anvogue-detail .thumbs img:hover,
.anvogue-detail .thumbs img.active{
  opacity:1;
  border-color:#111827;
  transform:translateX(2px);
}

.anvogue-detail .product-info{
  max-width:560px;
  padding:0;
  animation:productDetailRise .55s ease .08s both;
}

.anvogue-detail .product-info-text{
  border-bottom:0;
  margin-bottom:0;
}

.anvogue-detail .product-code{
  width:fit-content;
  max-width:none;
  margin-bottom:14px;
  padding:0;
  background:transparent;
  color:#6b7280;
  font-size:14px;
  font-weight:600;
}

.anvogue-detail .product-info .product-info-text .product-title{
  margin-bottom:12px;
  color:#111827;
  font-size:36px;
  line-height:1.15;
  font-weight:500;
}

.anvogue-detail .rating{
  display:flex;
  align-items:center;
  gap:8px;
  margin-bottom:16px;
  color:#f5a623;
}

.anvogue-detail .rating span{
  margin:0;
  color:#6b7280;
}

.anvogue-detail .price{
  display:flex;
  flex-wrap:wrap;
  align-items:baseline;
  gap:10px;
  margin:12px 0;
  color:#111827;
  font-size:0;
}

.detail-current-price{
  color:#111827;
  font-size:30px;
  font-weight:800;
}

.detail-compare-price{
  color:#9ca3af;
  font-size:18px;
  font-weight:600;
}

.detail-price-unit{
  color:#6b7280;
  font-size:15px;
  font-weight:600;
}

.anvogue-detail .desc{
  max-width:52ch;
  margin-bottom:16px;
  color:#4b5563;
  line-height:1.7;
}

.anvogue-detail .price-box,
.anvogue-detail .set{
  display:none;
}

.detail-sale-badge{
  display:flex;
  align-items:center;
  gap:8px;
  margin-bottom:12px;
}

.detail-sale-badge span,
.detail-sale-badge strong{
  display:inline-flex;
  align-items:center;
  min-height:28px;
  padding:5px 10px;
  border-radius:999px;
  font-size:13px;
  font-weight:900;
}

.detail-sale-badge span{
  background:rgba(0,41,92,.08);
  color:var(--bg-primary);
}

.detail-sale-badge strong{
  background:#dc2626;
  color:#fff;
}

.detail-stock-meter{
  margin:16px 0 18px;
  padding:0;
  border:0;
  border-radius:0;
  background:transparent;
}

.detail-stock-meter__row{
  display:flex;
  justify-content:space-between;
  gap:12px;
  color:#6b7280;
  font-size:14px;
  margin-bottom:10px;
}

.detail-stock-meter__row strong{
  color:var(--bg-primary);
}

.detail-stock-meter__bar{
  height:8px;
  border-radius:999px;
  background:#f1f5f9;
  overflow:hidden;
}

.detail-stock-meter__bar span{
  display:block;
  height:100%;
  border-radius:inherit;
  background:#111827;
  width:0;
  transition:width .9s cubic-bezier(.22, 1, .36, 1);
}

.detail-stock-meter.is-visible .detail-stock-meter__bar span{
  width:var(--stock-width, 0);
}

.detail-viewing-count{
  display:flex;
  align-items:center;
  gap:8px;
  margin:10px 0 18px;
  color:#111827;
  font-size:14px;
  font-weight:500;
}

.detail-viewing-count i{
  color:#dc2626;
}

.detail-variant-options{
  display:grid;
  gap:16px;
  margin:18px 0;
}

.detail-option-title{
  margin-bottom:10px;
  color:#111827;
  font-size:14px;
  font-weight:800;
}

.detail-color-options,
.detail-size-options{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
}

.detail-color-options button{
  width:46px;
  height:46px;
  border:1px solid #d8dee8;
  border-radius:50%;
  background:#fff;
  display:flex;
  align-items:center;
  justify-content:center;
  transition:border-color .2s ease, box-shadow .2s ease, transform .2s ease;
}

.detail-color-options button span{
  width:32px;
  height:32px;
  border-radius:50%;
  display:block;
}

.detail-color-options button.active,
.detail-size-options button.active{
  border-color:#111827;
  box-shadow:none;
}

.detail-size-options button{
  min-width:48px;
  height:42px;
  border:1px solid #d8dee8;
  border-radius:4px;
  background:#fff;
  color:#111827;
  font-weight:800;
  transition:background .2s ease, color .2s ease, border-color .2s ease, transform .2s ease;
}

.detail-color-options button:hover,
.detail-size-options button:hover{
  transform:translateY(-2px);
}

.detail-size-options button.active{
  background:#111827;
  color:#fff;
}

.anvogue-detail .form-row{
  display:grid;
  grid-template-columns:minmax(0, 1fr) 150px;
  gap:14px;
  align-items:end;
  margin-top:18px;
}

.anvogue-detail .select-box,
.anvogue-detail .qty-box{
  min-width:0;
}

.anvogue-detail .select-box .asorti-label,
.anvogue-detail .qty-box > label{
  color:#111827;
  font-size:14px;
  font-weight:800;
}

.anvogue-detail .asorti-badge{
  color:#6b7280;
  font-size:13px;
  font-weight:500;
}

.anvogue-detail .nx-select__head{
  min-height:48px;
  border-radius:4px;
  border-color:#e5e7eb;
  background:#fff;
}

.anvogue-detail .nx-qty .nx-select__head{
  justify-content:space-between;
}

.anvogue-detail .d-flex.gap-3.mt-5{
  display:grid !important;
  grid-template-columns:1fr 1fr;
  gap:12px !important;
  margin-top:18px !important;
}

.anvogue-detail .btn-cart,
.anvogue-detail .btn-buy{
  min-height:52px;
  border-radius:16px;
  font-size:15px;
  font-weight:600;
  transition:all .2s ease;
}

.anvogue-detail .btn-cart{
  background:#fff;
  border:1px solid #e4e8ef;
  color:#4b5563;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  cursor:pointer;
}

.anvogue-detail .btn-buy{
  background:var(--bg-primary) !important;
  border:1px solid transparent !important;
  color:#fff !important;
}

.anvogue-detail .btn-cart:hover{
  background:#f4f7fb;
  border-color:#cfd8e6;
}

.anvogue-detail .btn-cart:hover,
.anvogue-detail .btn-buy:hover{
  transform:translateY(-2px);
}

.anvogue-detail .btn-buy:hover{
  background:var(--bg-secondary) !important;
  border-color:transparent !important;
  color:#fff !important;
  transform:translateY(-1px);
  box-shadow:none;
}

.anvogue-detail .delivery{
  display:grid;
  gap:10px;
  margin-top:18px;
  padding:0;
  border:0;
}

.anvogue-detail .delivery-item{
  display:flex;
  align-items:center;
  gap:12px;
  padding:0;
  color:#4b5563;
}

.anvogue-detail .delivery-item .icon{
  width:34px;
  height:34px;
  flex:0 0 34px;
  display:flex;
  align-items:center;
  justify-content:center;
  border:1px solid #e5e7eb;
  border-radius:50%;
}

.anvogue-detail .delivery-item .icon img{
  width:18px;
  height:18px;
  object-fit:contain;
}

.anvogue-detail .delivery-item .title{
  color:#111827;
  font-weight:800;
}

.detail-action-icons{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
  margin:14px 0 0;
}

.detail-action-icons button{
  min-height:auto;
  border:0;
  border-radius:0;
  background:transparent;
  color:#111827;
  display:flex;
  align-items:center;
  justify-content:center;
  gap:8px;
  padding:0 12px 0 0;
  font-weight:500;
  transition:background .2s ease, color .2s ease, border-color .2s ease, transform .2s ease;
}

.detail-action-icons button:hover,
.detail-action-icons button.is-active{
  background:transparent;
  border-color:transparent;
  color:var(--bg-primary);
  transform:none;
}

.detail-action-icons span{
  overflow:hidden;
  text-overflow:ellipsis;
  white-space:nowrap;
}

.detail-service-links{
  display:flex;
  flex-wrap:wrap;
  gap:12px;
  margin-top:16px;
}

.detail-service-links button{
  flex:1 1 180px;
  min-height:46px;
  border:1px solid #e5e7eb;
  border-radius:4px;
  background:#fff;
  color:#111827;
  font-weight:800;
  transition:background .2s ease, color .2s ease, border-color .2s ease, transform .2s ease;
}

.detail-service-links button:hover{
  background:#111827;
  border-color:#111827;
  color:#fff;
  transform:translateY(-2px);
}

.detail-trust-row{
  display:none;
  grid-template-columns:repeat(3, minmax(0, 1fr));
  gap:10px;
  margin-top:14px;
}

.detail-trust-row div{
  display:flex;
  align-items:center;
  justify-content:center;
  gap:8px;
  min-height:50px;
  padding:10px;
  border:1px solid #e8edf4;
  border-radius:12px;
  background:#f8fafc;
  color:var(--bg-primary);
  font-weight:800;
  font-size:13px;
  text-align:center;
}

.detail-product-meta{
  display:grid;
  gap:8px;
  margin-top:18px;
  padding:0;
  border:0;
  border-radius:0;
  background:#fff;
}

.detail-product-meta div{
  display:flex;
  flex-wrap:wrap;
  gap:6px;
  color:#6b7280;
  font-size:14px;
}

.detail-product-meta span{
  color:#111827;
  font-weight:800;
}

.detail-product-meta strong,
.detail-product-meta a{
  color:#111827;
  font-weight:800;
  text-decoration:none;
}

.detail-safe-checkout{
  margin-top:18px;
  padding:18px 0 0;
  border:0;
  border-top:1px solid #eef0f3;
  border-radius:0;
  background:transparent;
}

.detail-safe-checkout strong{
  display:block;
  margin-bottom:12px;
  color:#111827;
  font-size:14px;
}

.detail-safe-checkout div{
  display:flex;
  flex-wrap:wrap;
  align-items:center;
  gap:10px;
}

.detail-safe-checkout img{
  width:48px;
  height:30px;
  object-fit:contain;
  padding:4px;
  border-radius:6px;
  background:#fff;
  border:1px solid #eef0f3;
}

.detail-info-panel{
  padding:10px 4px 4px;
}

.detail-info-panel__head{
  text-align:center;
  margin-bottom:20px;
}

.detail-info-panel__head span{
  width:52px;
  height:52px;
  margin:0 auto 12px;
  border-radius:50%;
  background:#111827;
  color:#fff;
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:22px;
}

.detail-info-panel__head h4{
  margin:0 0 8px;
  color:#111827;
  font-size:24px;
  font-weight:800;
}

.detail-info-panel__head p{
  margin:0;
  color:#6b7280;
  line-height:1.6;
}

.detail-info-list{
  display:grid;
  gap:12px;
}

.detail-info-list div{
  display:flex;
  gap:10px;
  padding:13px;
  border:1px solid #eef0f3;
  border-radius:8px;
  color:#4b5563;
}

.detail-info-list i{
  color:#111827;
  font-size:18px;
}

.detail-info-list strong{
  color:#111827;
}

.detail-info-form{
  display:grid;
  gap:12px;
}

.detail-info-form input,
.detail-info-form textarea{
  width:100%;
  border:1px solid #e5e7eb;
  border-radius:6px;
  padding:12px 14px;
  outline:none;
}

.detail-info-form input:focus,
.detail-info-form textarea:focus{
  border-color:#111827;
}

.detail-info-form button{
  min-height:48px;
  border:0;
  border-radius:6px;
  background:#111827;
  color:#fff;
  font-weight:800;
}

@keyframes productDetailRise{
  from{
    opacity:0;
    transform:translateY(18px);
  }
  to{
    opacity:1;
    transform:translateY(0);
  }
}

@media (prefers-reduced-motion: reduce){
  .anvogue-detail .product-gallery,
  .anvogue-detail .product-info{
    animation:none;
  }

  .anvogue-detail .main-image img,
  .detail-stock-meter__bar span,
  .detail-gallery-nav button,
  .detail-color-options button,
  .detail-size-options button,
  .anvogue-detail .btn-cart,
  .anvogue-detail .btn-buy,
  .detail-service-links button{
    transition:none;
  }
}

.locale-control.is-open .locale-menu{
  display:grid;
}

.locale-menu button{
  border:0;
  border-radius:8px;
  background:#eef4ff;
  color:var(--bg-primary);
  min-height:30px;
  min-width:52px;
  padding:6px 10px;
  font-size:12px;
  font-weight:800;
}

.locale-control[data-locale-control="currency"] .locale-menu button{
  min-height:30px;
  font-size:12px;
}

.locale-menu button:hover{
  background:var(--bg-primary);
  color:#fff;
}

.campaign-countdown{
  padding:18px 0;
}

.campaign-countdown__inner{
  display:grid;
  grid-template-columns:auto 1fr auto auto;
  align-items:center;
  gap:18px;
  padding:18px 22px;
  border-radius:14px;
  background:linear-gradient(135deg, var(--bg-primary), var(--bg-secondary));
  color:#fff;
}

.campaign-countdown__inner > span{
  padding:7px 12px;
  border-radius:999px;
  background:rgba(255,255,255,.14);
  font-weight:800;
  white-space:nowrap;
}

.campaign-countdown__inner strong{
  font-size:18px;
}

.campaign-timer{
  display:grid;
  grid-template-columns:repeat(4, auto auto);
  align-items:end;
  gap:4px 6px;
}

.campaign-timer b{
  min-width:34px;
  padding:7px 8px;
  border-radius:8px;
  background:#fff;
  color:var(--bg-primary);
  text-align:center;
}

.campaign-timer em{
  color:#d9ecff;
  font-style:normal;
  font-size:12px;
  margin-right:6px;
}

.campaign-countdown__inner a{
  border-radius:10px;
  background:#fff;
  color:var(--bg-primary);
  padding:10px 14px;
  text-decoration:none;
  font-weight:800;
  white-space:nowrap;
}

.keyword-strip{
  overflow:hidden;
  border-top:1px solid #e8edf4;
  border-bottom:1px solid #e8edf4;
  background:#fff;
}

.keyword-strip__track{
  display:flex;
  width:max-content;
  animation:keywordMove 30s linear infinite;
}

.keyword-strip span{
  display:flex;
  align-items:center;
  gap:10px;
  padding:13px 22px;
  color:var(--bg-primary);
  font-weight:900;
  text-transform:uppercase;
  white-space:nowrap;
}

.keyword-strip span::after{
  content:"";
  width:7px;
  height:7px;
  border-radius:50%;
  background:var(--bg-secondary);
}

@keyframes keywordMove{
  from{ transform:translateX(0); }
  to{ transform:translateX(-50%); }
}

.sticky-product-cart{
  position:fixed;
  left:50%;
  bottom:20px;
  z-index:1450;
  width:min(720px, calc(100vw - 32px));
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:16px;
  padding:10px;
  border-radius:16px;
  background:#fff;
  box-shadow:none;
  transform:translate(-50%, 140%);
  opacity:0;
  pointer-events:none;
  transition:transform .25s ease, opacity .25s ease;
}

.sticky-product-cart.is-visible{
  transform:translate(-50%, 0);
  opacity:1;
  pointer-events:auto;
}

.sticky-product-cart__info{
  min-width:0;
  display:flex;
  align-items:center;
  gap:10px;
}

.sticky-product-cart__info img{
  width:54px;
  height:62px;
  border-radius:8px;
  object-fit:cover;
}

.sticky-product-cart__info strong,
.sticky-product-cart__info em{
  display:block;
  min-width:0;
  overflow:hidden;
  text-overflow:ellipsis;
  white-space:nowrap;
}

.sticky-product-cart__info strong{
  color:#111827;
}

.sticky-product-cart__info em{
  color:#6b7280;
  font-style:normal;
}

.sticky-product-cart > button{
  border:0;
  border-radius:10px;
  background:var(--bg-primary);
  color:#fff;
  padding:12px 18px;
  font-weight:800;
  white-space:nowrap;
}

.order-track-fab{
  position:fixed;
  right:22px;
  bottom:82px;
  z-index:1300;
  border:0;
  border-radius:999px;
  background:var(--bg-primary);
  color:#fff;
  padding:12px 16px;
  display:flex;
  align-items:center;
  gap:8px;
  box-shadow:none;
  font-weight:800;
}

.sticky-product-cart.is-visible ~ .order-track-fab{
  bottom:118px;
}

.order-track-panel{
  position:fixed;
  inset:0;
  z-index:2450;
  display:flex;
  align-items:center;
  justify-content:center;
  padding:20px;
  background:rgba(0,17,39,.64);
  opacity:0;
  pointer-events:none;
  transition:opacity .24s ease;
}

.order-track-panel.is-open{
  opacity:1;
  pointer-events:auto;
}

.order-track-card{
  position:relative;
  width:min(430px, 100%);
  border-radius:14px;
  background:#fff;
  padding:28px;
  box-shadow:none;
}

.order-track-close{
  position:absolute;
  top:12px;
  right:12px;
  width:36px;
  height:36px;
  border:0;
  border-radius:50%;
  background:#f3f6fa;
  color:var(--bg-primary);
}

.order-track-card h4{
  color:var(--bg-primary);
  margin-bottom:8px;
}

.order-track-card p{
  color:#6b7280;
  margin-bottom:16px;
}

.order-track-card input{
  width:100%;
  height:46px;
  border:1px solid #e5e7eb;
  border-radius:10px;
  padding:0 12px;
  margin-bottom:10px;
}

.order-track-card [data-track-order]{
  width:100%;
  border:0;
  border-radius:10px;
  background:var(--bg-primary);
  color:#fff;
  padding:12px;
  font-weight:800;
}

.order-track-result{
  margin-top:14px;
}

.track-steps{
  display:grid;
  grid-template-columns:repeat(4, 1fr);
  gap:6px;
}

.track-steps span{
  padding:8px 6px;
  border-radius:8px;
  background:#eef4ff;
  color:var(--bg-primary);
  text-align:center;
  font-size:12px;
  font-weight:800;
}

.track-steps span.done{
  background:var(--bg-primary);
  color:#fff;
}

@media (max-width: 991.98px){
  .anvogue-detail > .container-fluid > .row{
    grid-template-columns:1fr;
    gap:28px;
  }

  .anvogue-listing .listing-toolbar,
  .anvogue-detail .product-gallery{
    position:relative;
    top:auto;
  }

  .anvogue-detail .product-info{
    max-width:none;
  }

  .anvogue-listing .listing-toolbar{
    padding:10px;
    border-radius:12px;
  }

  .detail-action-icons,
  .detail-trust-row{
    grid-template-columns:1fr;
  }

  .campaign-countdown__inner{
    grid-template-columns:1fr;
    text-align:center;
  }

  .campaign-timer{
    justify-content:center;
  }

  .locale-controls{
    display:none;
  }
}

@media (max-width: 767.98px){
  .anvogue-detail .product-gallery{
    grid-template-columns:1fr;
  }

  .anvogue-detail .thumbs{
    order:0;
    display:flex;
    overflow-x:auto;
  }

  .anvogue-detail .thumbs img{
    flex:0 0 72px;
    width:72px;
    height:88px;
  }

  .anvogue-detail .product-info .product-info-text .product-title{
    font-size:28px;
  }

  .anvogue-detail .form-row,
  .anvogue-detail .d-flex.gap-3.mt-5{
    grid-template-columns:1fr;
  }

  .wishlist-slide__shell{
    inset:0;
    width:100%;
    border-radius:0;
  }

  .wishlist-slide__body{
    padding:24px 16px 14px;
  }

  .wishlist-slide-item{
    grid-template-columns:76px minmax(0, 1fr);
    gap:12px;
  }

  .wishlist-slide-item img,
  .wishlist-slide-item__placeholder{
    width:76px;
    height:88px;
  }

  .wishlist-slide-item > button{
    grid-column:2;
    width:fit-content;
  }

  .wishlist-slide__footer{
    padding:18px 16px 22px;
  }

  .cart-slide-modal__shell{
    inset:0;
    width:100%;
    border-radius:0;
  }

  .cart-slide-modal .product-action-cart{
    min-height:100vh;
  }

  .product-action-modal--cart .modal-dialog{
    max-width:100%;
    min-height:100%;
    margin:0;
  }

  .product-action-modal--cart .modal-content{
    border-radius:0;
  }

  .product-action-cart{
    grid-template-columns:1fr;
    min-height:100vh;
  }

  .product-action-cart__suggestions{
    display:none;
  }

  .product-action-cart__panel{
    padding:24px 16px;
  }

  .product-action-cart h4{
    font-size:24px;
  }

  .product-action-cart-item{
  grid-template-columns:minmax(100px, 128px) minmax(0, 1fr);
  grid-template-rows:auto auto;
  gap:16px;
}

  .product-action-cart-item img{
  width:128px;
  height:225px;
  border-radius:16px 16px 0 0;
  object-fit:cover;
  object-position:top center;
  background:#f4f6f8;
}

  .product-action-cart-item > button{
    grid-column:2;
    width:fit-content;
  }

  .product-action-cart__tools{
    margin:0 -16px;
  }

  .product-action-cart__tools button{
    font-size:12px;
  }

  .product-action-cart__total{
    font-size:20px;
  }

  .product-action-cart__actions{
    grid-template-columns:1fr;
  }

  .listing-active-filters{
    align-items:stretch;
    flex-direction:column;
  }

  .listing-active-filters > button{
    width:100%;
  }

  .detail-action-icons{
    gap:8px;
  }

  .detail-action-icons button{
    justify-content:flex-start;
  }

  .detail-trust-row div{
    justify-content:flex-start;
  }

  .campaign-countdown__inner{
    padding:16px;
    gap:12px;
  }

  .campaign-timer{
    grid-template-columns:repeat(4, auto);
  }

  .campaign-timer em{
    display:none;
  }

  .keyword-strip span{
    padding:11px 16px;
    font-size:12px;
  }

  .sticky-product-cart{
    bottom:86px;
    width:calc(100vw - 20px);
  }

  .sticky-product-cart__info img{
    width:46px;
    height:52px;
  }

  .sticky-product-cart__info strong{
    max-width:150px;
    font-size:13px;
  }

  .sticky-product-cart > button{
    padding:11px 12px;
    font-size:12px;
  }

  .order-track-fab{
    right:16px;
    bottom:86px;
    width:42px;
    height:42px;
    padding:0;
    justify-content:center;
  }

  .sticky-product-cart.is-visible ~ .order-track-fab{
    bottom:150px;
  }

  .order-track-fab span{
    display:none;
  }

  .track-steps{
    grid-template-columns:1fr 1fr;
  }
}

/* Product list view hardening */
.product-list-section .products-wrapper.list-view{
  row-gap:16px;
}

.product-list-section .products-wrapper.list-view > [class*="col-"]{
  flex:0 0 100% !important;
  max-width:100% !important;
}

.product-list-section .products-wrapper.list-view .product-card{
  display:grid !important;
  grid-template-columns:210px minmax(0, 1fr);
  grid-template-rows:auto auto auto 1fr auto;
  align-items:start;
  gap:10px 22px;
  min-height:260px;
  padding:20px;
  border:1px solid #e8edf4;
  border-radius:16px;
  background:#fff;
  overflow:hidden;
  box-shadow:none;
}

.product-list-section .products-wrapper.list-view .product-card:hover{
  transform:translateY(-2px);
}

.product-list-section .products-wrapper.list-view .product-card::after{
  display:none;
}

.product-list-section .products-wrapper.list-view .product-image{
  grid-column:1;
  grid-row:1 / -1;
  width:210px !important;
  height:260px;
  aspect-ratio:auto !important;
  border-radius:14px;
}

.product-list-section .products-wrapper.list-view .product-image > img:first-child,
.product-list-section .products-wrapper.list-view .product-image-hover{
  width:100%;
  height:100%;
  object-fit:cover;
}

.product-list-section .products-wrapper.list-view .product-hover-actions{
  padding:10px;
}

.product-list-section .products-wrapper.list-view .product-card-utility{
  gap:8px;
}

.product-list-section .products-wrapper.list-view .product-action-btn{
  width:42px;
  min-width:42px;
  height:42px;
  padding:0;
  justify-content:center;
  opacity:1;
  transform:none;
}

.product-list-section .products-wrapper.list-view .product-action-btn span{
  display:none;
}

.product-list-section .products-wrapper.list-view .product-card-buy-row{
  grid-template-columns:1fr;
  align-self:end;
  opacity:1;
  transform:none;
}

.product-list-section .products-wrapper.list-view .product-card-buy-row button{
  min-height:38px;
  font-size:11px;
}

.product-list-section .products-wrapper.list-view .product-stock-line,
.product-list-section .products-wrapper.list-view .color-swatches,
.product-list-section .products-wrapper.list-view .product-title,
.product-list-section .products-wrapper.list-view .product-rating,
.product-list-section .products-wrapper.list-view .product-bottom{
  grid-column:2;
  min-width:0;
}

.product-list-section .products-wrapper.list-view .product-stock-line{
  grid-row:1;
  width:100%;
  margin:0 0 8px;
}

.product-list-section .products-wrapper.list-view .color-swatches{
  grid-row:2;
  margin:0;
}

.product-list-section .products-wrapper.list-view .product-title{
  grid-row:3;
  margin:8px 0 2px;
  font-size:22px;
  line-height:1.25;
}

.product-list-section .products-wrapper.list-view .product-rating{
  grid-row:4;
  margin:0;
  font-size:14px;
}

.product-list-section .products-wrapper.list-view .product-bottom{
  grid-row:5;
  align-self:end;
  display:flex;
  align-items:flex-end;
  justify-content:space-between;
  gap:16px;
  padding-top:18px;
}

.product-list-section .products-wrapper.list-view .product-bottom .price{
  font-size:22px;
  white-space:nowrap;
}

@media (max-width: 767.98px){
  .product-list-section .products-wrapper.list-view .product-card{
    grid-template-columns:128px minmax(0, 1fr);
    min-height:184px;
    gap:8px 12px;
    padding:12px;
    border-radius:14px;
  }

  .product-list-section .products-wrapper.list-view .product-image{
    width:128px !important;
    height:184px;
  }

  .product-list-section .products-wrapper.list-view .product-card-buy-row{
    display:none;
  }

  .product-list-section .products-wrapper.list-view .product-stock-meta{
    font-size:10px;
  }

  .product-list-section .products-wrapper.list-view .swatch{
    width:30px;
    height:30px;
  }

  .product-list-section .products-wrapper.list-view .product-title{
    font-size:15px;
  }

  .product-list-section .products-wrapper.list-view .product-rating{
    font-size:12px;
  }

  .product-list-section .products-wrapper.list-view .product-bottom{
    padding-top:8px;
  }

  .product-list-section .products-wrapper.list-view .product-bottom .price{
    font-size:14px;
    white-space:normal;
  }
}

@media (max-width: 480px){
  .product-list-section .products-wrapper.list-view .product-card{
    grid-template-columns:1fr;
  }

  .product-list-section .products-wrapper.list-view .product-image{
    grid-column:1;
    grid-row:auto;
    width:100% !important;
    height:auto;
    aspect-ratio:1 / 1 !important;
  }

  .product-list-section .products-wrapper.list-view .product-stock-line,
  .product-list-section .products-wrapper.list-view .color-swatches,
  .product-list-section .products-wrapper.list-view .product-title,
  .product-list-section .products-wrapper.list-view .product-rating,
  .product-list-section .products-wrapper.list-view .product-bottom{
    grid-column:1;
    grid-row:auto;
  }
}

/* Existing product detail bottom bars compact style */
.sticky-bottom-bar.sticky-bottom-bar-compact{
  position:fixed;
  left:50%;
  bottom:18px;
  z-index:1800;
  width:min(1440px, calc(100vw - 48px));
  padding:0 !important;
  border:0;
  border-radius:24px;
  background:#fff;
  box-shadow:none;
  transform:translateX(-50%);
  overflow:hidden;
}

.sticky-bottom-bar.sticky-bottom-bar-compact.is-near-footer{
  transform:translate(-50%, 140%);
  opacity:0;
  pointer-events:none;
}

.sticky-bottom-bar-compact .container-fluid{
  padding:20px !important;
}

.sticky-bottom-bar-compact .row{
  align-items:center !important;
  --bs-gutter-x:16px;
  --bs-gutter-y:12px;
}

.sticky-bottom-bar-compact .product-info-small{
  display:flex;
  align-items:center;
  gap:16px;
  min-width:0;
}

.sticky-bottom-bar-compact .product-info-small img{
  width:78px;
  height:92px;
  flex:0 0 78px;
  border-radius:10px;
  object-fit:cover;
  background:#f4f6f8;
}

.sticky-bottom-bar-compact .product-info-small span{
  min-width:0;
}

.sticky-bottom-bar-compact .product-info-small strong,
.sticky-bottom-bar-compact .product-info-small em{
  display:block;
  overflow:hidden;
  text-overflow:ellipsis;
  white-space:nowrap;
}

.sticky-bottom-bar-compact .product-info-small strong{
  color:#111827;
  font-size:22px;
  font-weight:900;
  line-height:1.2;
}

.sticky-bottom-bar-compact .product-info-small em{
  margin-top:6px;
  color:#6b7280;
  font-size:20px;
  font-style:normal;
  font-weight:500;
}

.sticky-bottom-bar-compact .sticky-summary-col{
  display:none;
}

.sticky-bottom-bar-compact .sticky-actions{
  justify-content:flex-end;
}

.sticky-bottom-bar-compact .bottom-bar-action-btn{
  width:auto;
  min-width:220px;
  height:68px;
  border-radius:14px;
  background:var(--bg-primary);
  border:1px solid var(--bg-primary);
  color:#fff;
  padding:0 36px;
  font-size:22px;
  font-weight:900;
}

body:has(.sticky-bottom-bar-compact){
  padding-bottom:142px;
}

@media (max-width: 991.98px){
  .sticky-bottom-bar.sticky-bottom-bar-compact{
    left:12px !important;
    right:12px !important;
    bottom:12px !important;
    width:auto !important;
    transform:none !important;
    border-radius:18px;
    padding:0 !important;
  }

  .sticky-bottom-bar.sticky-bottom-bar-compact.is-near-footer{
    transform:none !important;
    opacity:1 !important;
    pointer-events:auto !important;
  }

  .sticky-bottom-bar-compact .container-fluid{
    padding:12px !important;
  }

  .sticky-bottom-bar-compact .row > [class*="col-"]{
    flex:0 0 auto !important;
    max-width:none !important;
  }

  .sticky-bottom-bar-compact .row > [class*="col-"]:first-child{
    flex:1 1 0 !important;
    min-width:0;
  }

  .sticky-bottom-bar-compact .row > [class*="col-"]:last-child{
    flex:0 0 auto !important;
  }

  .sticky-bottom-bar-compact .product-info-small{
    display:flex !important;
    gap:10px;
  }

  .sticky-bottom-bar-compact .product-info-small img{
    width:54px;
    height:64px;
    flex-basis:54px;
  }

  .sticky-bottom-bar-compact .product-info-small strong{
    font-size:14px;
  }

  .sticky-bottom-bar-compact .product-info-small em{
    font-size:13px;
  }

  .sticky-bottom-bar-compact .sticky-actions{
    width:auto;
  }

  .sticky-bottom-bar-compact .bottom-bar-action-btn{
    min-width:118px;
    height:52px;
    padding:0 18px;
    border-radius:12px;
    font-size:14px;
  }

  body:has(.sticky-bottom-bar-compact){
    padding-bottom:calc(env(safe-area-inset-bottom, 0px) + 104px) !important;
  }
}

@media (max-width: 480px){
  .sticky-bottom-bar-compact .product-info-small strong{
    max-width:130px;
  }

  .sticky-bottom-bar-compact .bottom-bar-action-btn{
    min-width:104px;
    padding:0 12px;
  }
}

/* Stabilize optional storefront widgets */
.detail-trust-row,
.product-live-meta,
.campaign-countdown,
.keyword-strip,
.order-track-fab,
.order-track-panel{
  display:none !important;
}

/* Responsive product card hardening */
.products-section .products-wrapper > [class*="col-"],
.product-list-section #productGrid > [class*="col-"],
.product-list-section .products-wrapper > [class*="col-"]{
  min-width:0;
}

.products-section .product-card,
.products-section .products-wrapper .product-card,
.product-list-section .products-wrapper .product-card{
  min-width:0;
  display:flex;
  flex-direction:column;
}

.products-section .product-card .product-image,
.products-section .products-wrapper .product-image,
.product-list-section .products-wrapper .product-image{
  flex:0 0 auto;
  width:100%;
}

.products-section .product-card .product-title,
.products-section .products-wrapper .product-title,
.product-list-section .products-wrapper .product-title{
  display:block;
  overflow:hidden;
  white-space:nowrap;
  text-overflow:ellipsis;
  line-height:1.25;
  margin-bottom:2px;
}

.products-section .product-card .product-bottom,
.products-section .products-wrapper .product-bottom,
.product-list-section .products-wrapper .product-bottom{
  min-width:0;
}

@media (min-width: 992px) {
  .products-section .product-card .product-bottom,
  .products-section .products-wrapper .product-bottom,
  .product-list-section .products-wrapper .product-bottom{
    margin-top:auto;
  }
}

.products-section .product-card .price,
.products-section .products-wrapper .price,
.product-list-section .products-wrapper .price{
  min-width:0;
  overflow-wrap:anywhere;
  line-height:1.25;
}

.product-stock-meta span{
  min-width:0;
  overflow:hidden;
  text-overflow:ellipsis;
  white-space:nowrap;
}

@media (min-width: 768px) and (max-width: 991.98px){
  .products-section .tab-content .row > [class*="col-"],
  .products-section .products-wrapper > [class*="col-"],
  .product-list-section #productGrid > [class*="col-"],
  .product-list-section .products-wrapper > [class*="col-"]{
    flex:0 0 50% !important;
    max-width:50% !important;
  }

  .products-section .product-card,
  .products-section .products-wrapper .product-card,
  .product-list-section .products-wrapper .product-card{
    padding:10px !important;
    border-radius:14px;
  }

  .products-section .product-card .product-title,
  .products-section .products-wrapper .product-title,
  .product-list-section .products-wrapper .product-title{
    font-size:15px !important;
  }

  .products-section .product-card .product-rating,
  .products-section .products-wrapper .product-rating,
  .product-list-section .products-wrapper .product-rating{
    font-size:12px !important;
  }

  .products-section .product-card .price,
  .products-section .products-wrapper .price,
  .product-list-section .products-wrapper .price{
    font-size:14px !important;
  }

  .products-section .product-card .swatch,
  .products-section .products-wrapper .swatch,
  .product-list-section .products-wrapper .swatch{
    width:32px !important;
    height:32px !important;
    border-radius:8px;
  }

  .product-hover-actions{
    padding:9px;
  }

  .product-action-btn{
    width:36px !important;
    min-width:36px !important;
    height:36px !important;
    padding:0 !important;
    justify-content:center;
  }

  .product-action-btn span{
    display:none !important;
  }

  .product-card-buy-row{
    gap:6px;
  }

  .product-card-buy-row button{
    min-height:34px !important;
    padding:0 6px;
    font-size:10px !important;
    line-height:1.1;
    white-space:normal;
  }

  .product-list-section .listing-toolbar{
    position:static;
    margin-bottom:16px;
  }

  .product-list-section .products-wrapper.list-view > [class*="col-"]{
    flex:0 0 100% !important;
    max-width:100% !important;
  }

  .product-list-section .products-wrapper.list-view .product-card{
    display:grid !important;
    grid-template-columns:176px minmax(0, 1fr);
    min-height:220px;
    gap:10px 16px;
    padding:16px !important;
  }

  .product-list-section .products-wrapper.list-view .product-image{
    width:176px !important;
    height:220px !important;
  }

  .product-list-section .products-wrapper.list-view .product-title{
    font-size:18px !important;
  }

  .product-list-section .products-wrapper.list-view .product-bottom .price{
    font-size:18px !important;
  }
}

@media (max-width: 767.98px){
  .products-section .tab-content .row > [class*="col-"],
  .products-section .products-wrapper > [class*="col-"],
  .product-list-section #productGrid > [class*="col-"],
  .product-list-section .products-wrapper > [class*="col-"]{
    flex:0 0 50% !important;
    max-width:50% !important;
  }

  .products-section .product-card,
  .products-section .products-wrapper .product-card,
  .product-list-section .products-wrapper .product-card{
    padding:8px !important;
    border-radius:12px;
  }

  .product-card-badges{
    top:7px !important;
    left:7px !important;
  }

  .product-card-badges span{
    min-width:34px !important;
    padding:4px 7px !important;
    font-size:10px !important;
  }

  .product-hover-actions{
    padding:7px;
  }

  .product-action-btn{
    width:32px !important;
    min-width:32px !important;
    height:32px !important;
    padding:0 !important;
    justify-content:center;
  }

  .product-action-btn span{
    display:none !important;
  }

  .product-card-buy-row{
    grid-template-columns:1fr;
    gap:5px;
  }

  .product-card-buy-row button{
    min-height:30px !important;
    padding:0 5px;
    font-size:9px !important;
    line-height:1.05;
    white-space:normal;
  }

  .products-section .product-card .color-swatches,
  .products-section .products-wrapper .color-swatches,
  .product-list-section .products-wrapper .color-swatches{
    gap:4px;
    margin:7px 0;
    overflow-x:auto;
    scrollbar-width:none;
  }

  .products-section .product-card .color-swatches::-webkit-scrollbar,
  .products-section .products-wrapper .color-swatches::-webkit-scrollbar,
  .product-list-section .products-wrapper .color-swatches::-webkit-scrollbar{
    display:none;
  }

  .products-section .product-card .swatch,
  .products-section .products-wrapper .swatch,
  .product-list-section .products-wrapper .swatch{
    width:26px !important;
    height:26px !important;
    border-radius:7px;
  }

  .products-section .product-card .product-bottom,
  .products-section .products-wrapper .product-bottom,
  .product-list-section .products-wrapper .product-bottom{
    align-items:flex-start;
    flex-direction:column;
    gap:6px;
  }
}

@media (max-width: 380px){
  .products-section .tab-content .row > [class*="col-"],
  .products-section .products-wrapper > [class*="col-"],
  .product-list-section #productGrid > [class*="col-"],
  .product-list-section .products-wrapper > [class*="col-"]{
    flex:0 0 100% !important;
    max-width:100% !important;
  }

  .product-card-buy-row{
    grid-template-columns:1fr 1fr;
  }
}

/* Responsive modal hardening */
.modal,
.cart-slide-modal,
.wishlist-slide-modal,
.special-offer-backdrop{
  overscroll-behavior:contain;
}

.quick-view-modal .modal-dialog,
.product-action-modal .modal-dialog{
  width:min(100%, calc(100vw - 24px));
  margin-left:auto;
  margin-right:auto;
}

.quick-view-modal .modal-content,
.product-action-modal .modal-content,
.cart-slide-modal__shell,
.wishlist-slide__shell,
.special-offer-pop,
.size-guide-modal{
  max-width:100%;
}

@media (min-width: 768px) and (max-width: 991.98px){
  .quick-view-modal .modal-dialog{
    max-width:720px;
  }

  .quick-view-grid{
    grid-template-columns:.9fr 1.1fr;
  }

  .quick-view-img{
    min-height:420px;
    height:auto;
  }

  .quick-view-info{
    padding:34px 28px;
  }

  .quick-view-info h3{
    font-size:32px;
  }

  .quick-view-actions{
    grid-template-columns:1fr;
  }

  .cart-slide-modal__shell{
    top:12px;
    right:12px;
    bottom:12px;
    width:calc(100vw - 24px);
    border-radius:22px;
  }

  .cart-slide-modal .product-action-cart,
  .product-action-cart{
    grid-template-columns:1fr;
    height:100%;
    min-height:0;
  }

  .product-action-cart__suggestions{
    max-height:34vh;
    padding:28px;
    border-right:0;
    border-bottom:1px solid #e8edf4;
  }

  .product-action-cart__panel{
    min-height:0;
    padding:28px;
    overflow:auto;
  }

  .product-action-suggest{
    grid-template-columns:78px minmax(0, 1fr);
  }

  .product-action-suggest img{
    width:78px;
  }

  .product-action-cart-item img{
    width:78px;
    height:88px;
  }

  .wishlist-slide__shell{
    top:12px;
    right:12px;
    bottom:12px;
    width:min(560px, calc(100vw - 24px));
    border-radius:22px;
  }

  .wishlist-slide__body{
    padding:30px 28px 18px;
  }

  .wishlist-slide__footer{
    padding:20px 28px 24px;
  }

  .special-offer-backdrop{
    align-items:center;
    padding:18px;
  }

  .special-offer-pop{
    width:min(720px, calc(100vw - 36px));
    max-height:calc(100dvh - 36px);
    overflow:auto;
  }

  .product-action-modal--cart .modal-dialog{
    max-width:calc(100vw - 24px);
    margin:12px;
    min-height:calc(100dvh - 24px);
  }

  .product-action-modal--cart .modal-content{
    max-height:calc(100dvh - 24px);
    overflow:hidden;
  }
}

@media (max-width: 767.98px){
  .modal-dialog{
    margin:10px auto;
  }

  .quick-view-modal .modal-dialog,
  .product-action-modal .modal-dialog{
    width:calc(100vw - 20px);
    max-width:calc(100vw - 20px);
  }

  .quick-view-modal .modal-content,
  .product-action-modal .modal-content{
    max-height:calc(100dvh - 20px);
    border-radius:16px;
    overflow:auto;
  }

  .quick-view-grid{
    grid-template-columns:1fr !important;
  }

  .quick-view-img{
    height:min(52vh, 360px) !important;
    min-height:220px;
  }

  .quick-view-info{
    padding:22px 16px 18px !important;
  }

  .quick-view-info h3{
    font-size:26px;
    line-height:1.12;
  }

  .quick-view-info p{
    font-size:14px;
  }

  .quick-view-options{
    flex-wrap:wrap;
  }

  .quick-view-actions{
    grid-template-columns:1fr !important;
    gap:8px;
  }

  .quick-view-actions .btn-cart,
  .quick-view-actions .btn-add-cart-outline{
    min-height:46px;
  }

  .quick-view-close,
  .product-action-modal__close,
  .cart-slide-modal__close,
  .wishlist-slide__close,
  .special-offer-close{
    top:10px !important;
    right:10px !important;
    width:36px !important;
    height:36px !important;
  }

  .product-action-modal .modal-body{
    padding:22px 14px 16px !important;
  }

  .product-action-modal__head{
    padding-right:38px;
  }

  .product-action-modal__head > span{
    width:44px;
    height:44px;
    font-size:20px;
  }

  .product-action-modal__head h4{
    font-size:21px !important;
    line-height:1.15;
  }

  .product-action-modal__product{
    grid-template-columns:68px minmax(0, 1fr) !important;
    gap:10px;
    padding:10px;
  }

  .product-action-modal__product img,
  .product-action-modal__placeholder{
    width:68px !important;
    height:78px !important;
  }

  .product-action-modal__product strong,
  .product-action-modal__product em,
  .wishlist-slide-item strong,
  .wishlist-slide-item em,
  .product-action-cart-item strong,
  .product-action-cart-item span,
  .product-action-cart-item em,
  .product-action-suggest strong,
  .product-action-suggest em{
    white-space:normal !important;
  }

  .product-action-modal__compare{
    grid-template-columns:1fr 1fr !important;
  }

  .product-action-modal__actions{
    grid-template-columns:1fr !important;
  }

  .cart-slide-modal__shell,
  .wishlist-slide__shell{
    top:0;
    right:0;
    bottom:0;
    left:0;
    width:100vw;
    border-radius:0;
  }

  .cart-slide-modal__body,
  .wishlist-slide__body{
    height:100%;
  }

  .cart-slide-modal .product-action-cart,
  .product-action-cart{
    display:flex !important;
    flex-direction:column;
    height:100%;
    min-height:0;
  }

  .product-action-cart__suggestions{
    flex:0 0 auto;
    max-height:30vh;
    padding:22px 16px 14px;
    border-right:0;
    border-bottom:1px solid #e8edf4;
    overflow:auto;
  }

  .product-action-cart h4{
    font-size:24px;
    margin-bottom:14px;
  }

  .product-action-suggest{
    grid-template-columns:64px minmax(0, 1fr);
    gap:0 10px;
    padding:12px 0;
  }

  .product-action-suggest img{
    width:64px;
  }

  .product-action-suggest button{
    width:32px;
    height:32px;
    min-width:32px;
    padding:0;
  }

  .product-action-cart__panel{
    flex:1 1 auto;
    min-height:0;
    padding:22px 16px 16px;
    overflow:auto;
  }

  .product-action-cart__notice{
    align-items:flex-start;
    padding:12px;
    font-size:14px;
  }

  .product-action-cart-item{
    grid-template-columns:70px minmax(0, 1fr);
    gap:12px;
    padding:14px 0;
  }

  .product-action-cart-item img{
    width:70px;
    height:80px;
  }

  .product-action-cart-item > button{
    grid-column:2;
    justify-self:start;
    padding:0;
  }

  .product-action-cart__tools{
    position:sticky;
    bottom:0;
    z-index:2;
    margin:0 -16px;
  }

  .product-action-cart__tools button{
    min-width:0;
    flex-direction:column;
    gap:4px;
    padding:10px 4px;
    font-size:12px;
  }

  .product-action-cart__total{
    padding:18px 0 12px;
    font-size:22px;
  }

  .product-action-cart__actions{
    grid-template-columns:1fr !important;
    gap:8px;
  }

  .product-action-cart__actions a{
    min-height:50px;
  }

  .wishlist-slide__body{
    padding:24px 16px 14px !important;
  }

  .wishlist-slide__body h3{
    font-size:26px;
    margin-right:42px;
  }

  .wishlist-slide-item{
    grid-template-columns:70px minmax(0, 1fr);
    gap:12px;
    align-items:start;
    padding:14px 0;
  }

  .wishlist-slide-item img,
  .wishlist-slide-item__placeholder{
    width:70px !important;
    height:80px !important;
  }

  .wishlist-slide-item > button{
    grid-column:2;
    justify-self:start;
    padding:0;
  }

  .wishlist-slide__footer{
    padding:16px;
  }

  .wishlist-slide__footer a{
    min-height:50px;
  }

  .special-offer-backdrop{
    align-items:flex-start;
    padding:12px 8px calc(env(safe-area-inset-bottom, 0px) + 12px) !important;
    overflow:auto;
  }

  .special-offer-pop{
    width:100% !important;
    max-height:none !important;
    min-height:auto;
    grid-template-columns:1fr !important;
    border-radius:14px !important;
    overflow:visible !important;
    margin:auto 0;
  }

  .special-offer-head{
    padding:34px 14px 24px !important;
  }

  .special-offer-head strong{
    font-size:clamp(38px, 15vw, 56px) !important;
  }

  .special-offer-products{
    padding:18px 12px !important;
  }

  .special-offer-product{
    grid-template-columns:62px minmax(0, 1fr) !important;
    gap:10px !important;
  }

  .special-offer-product img{
    width:62px !important;
    height:70px !important;
  }

  .special-offer-product > strong{
    grid-column:2;
    width:fit-content;
  }

  .compare-drawer{
    left:8px !important;
    right:8px !important;
    bottom:8px !important;
    width:auto !important;
    transform:translateY(130%);
  }

  .compare-drawer.is-visible{
    transform:translateY(0);
  }

  .compare-drawer__body{
    grid-template-columns:1fr !important;
    max-height:45vh;
    overflow:auto;
  }
}

@media (max-width: 380px){
  .quick-view-img{
    height:240px !important;
  }

  .quick-view-info h3,
  .wishlist-slide__body h3,
  .product-action-cart h4{
    font-size:22px;
  }

  .product-action-modal__product,
  .wishlist-slide-item,
  .product-action-cart-item{
    grid-template-columns:58px minmax(0, 1fr) !important;
    grid-template-rows:auto auto !important;
  }

  .product-action-cart-item > .cart-item-price-row{
    grid-column:1 / -1 !important;
    grid-row:2 !important;
  }

  .product-action-cart-item > .cart-item-content{
    grid-column:2 !important;
    grid-row:1 !important;
  }

  .product-action-cart-item > img{
    grid-row:1 / 3 !important;
  }

  .product-action-cart-item > .cart-item-img-wrap{
    grid-row:1 / 3 !important;
    height:auto !important;
    align-self:start !important;
  }

  .product-action-modal__product img,
  .product-action-modal__placeholder,
  .wishlist-slide-item img,
  .wishlist-slide-item__placeholder,
  .product-action-cart-item img{
    width:58px !important;
    height:68px !important;
  }
}

/* Mobile product card actions */
@media (max-width: 767.98px){
  .products-section .product-image,
  .product-list-section .products-wrapper:not(.list-view) .product-image{
    border-radius:14px;
  }

  .products-section .product-hover-actions,
  .product-list-section .products-wrapper:not(.list-view) .product-hover-actions{
    justify-content:flex-start;
    padding:8px;
  }

  .products-section .product-card-utility,
  .product-list-section .products-wrapper:not(.list-view) .product-card-utility{
    align-self:flex-end;
    gap:7px;
  }

  .products-section .product-action-btn,
  .product-list-section .products-wrapper:not(.list-view) .product-action-btn{
    width:34px !important;
    min-width:34px !important;
    height:34px !important;
    padding:0 !important;
    border-radius:50% !important;
    background:rgba(255,255,255,.94);
    color:#111827;
    box-shadow:none;
  }

  .products-section .product-action-btn[data-wishlist-toggle],
  .product-list-section .products-wrapper:not(.list-view) .product-action-btn[data-wishlist-toggle]{
    background:var(--bg-primary);
    color:#fff;
  }

  .products-section .product-action-btn i,
  .product-list-section .products-wrapper:not(.list-view) .product-action-btn i{
    font-size:16px;
  }

  .products-section .product-card-buy-row,
  .product-list-section .products-wrapper:not(.list-view) .product-card-buy-row{
    position:absolute;
    right:8px;
    bottom:8px;
    display:flex;
    gap:7px;
    opacity:1;
    transform:none;
  }

  .products-section .product-card-buy-row button,
  .product-list-section .products-wrapper:not(.list-view) .product-card-buy-row button{
    width:34px !important;
    min-width:34px !important;
    height:34px !important;
    min-height:34px !important;
    padding:0 !important;
    border-radius:50% !important;
    background:rgba(255,255,255,.94);
    color:#111827;
    font-size:0 !important;
    box-shadow:none;
  }

  .products-section .product-card-buy-row button::before,
  .product-list-section .products-wrapper:not(.list-view) .product-card-buy-row button::before{
    font-family:"bootstrap-icons";
    font-size:16px;
    line-height:1;
  }

  .products-section .product-card-buy-row button[data-quick-view]::before,
  .product-list-section .products-wrapper:not(.list-view) .product-card-buy-row button[data-quick-view]::before{
    content:"\f341";
  }

  .products-section .product-card-buy-row button[data-add-cart],
  .product-list-section .products-wrapper:not(.list-view) .product-card-buy-row button[data-add-cart]{
    background:var(--bg-primary);
    color:#fff;
  }

  .products-section .product-card-buy-row button[data-add-cart]::before,
  .product-list-section .products-wrapper:not(.list-view) .product-card-buy-row button[data-add-cart]::before{
    content:"\f243";
  }

  .products-section .product-card-badges,
  .product-list-section .products-wrapper:not(.list-view) .product-card-badges{
    gap:5px;
  }

  .products-section .product-stock-line,
  .product-list-section .products-wrapper:not(.list-view) .product-stock-line{
    margin-top:8px;
  }
}

/* Mobile menu UX */
@media (max-width: 991.98px){
  .sticky-nav-bar{
    z-index:2500;
    padding-top:0;
    padding-bottom:0;
  }

  .sticky-nav-bar .container-fluid{
    min-height:62px;
  }

  .navbar-toggler{
    width:42px;
    height:42px;
    border-radius:14px;
    background:rgba(255,255,255,.12);
    display:inline-flex;
    align-items:center;
    justify-content:center;
  }

  .navbar-toggler:focus{
    box-shadow:none;
  }

  .navbar-toggler-icon{
    width:1.35em;
    height:1.35em;
  }

  .sticky-nav-bar .navbar-brand{
    position:absolute;
    left:50%;
    transform:translateX(-50%);
    margin:0 !important;
    /* Hamburger(42px) + ikonlar(106px) + 2×padding(24px) = 172px → kalan 203px, yarısı ~100px */
    max-width:calc(100% - 180px);
  }

  .sticky-nav-bar .navbar-brand img{
    max-height:42px;
    max-width:100%;
    object-fit:contain;
  }

  .sticky-nav-bar > .container-fluid > .d-flex{
    margin-left:auto;
  }

  body:has(#nav.show){
    overflow:hidden;
  }

  body:has(#nav.show)::before{
    content:"";
    position:fixed;
    inset:0;
    z-index:2490;
    background:rgba(0,17,39,.56);
    backdrop-filter:blur(2px);
  }

  #nav.navbar-collapse{
    position:fixed;
    top:70px;
    left:14px;
    right:14px;
    z-index:2600;
    max-height:calc(100dvh - 88px);
    padding:16px;
    border:1px solid rgba(0,41,92,.08);
    border-radius:18px;
    background:#fff;
    color:#111827;
    box-shadow:none;
    overflow:auto;
  }

  #nav.navbar-collapse.collapsing{
    height:auto !important;
    overflow:hidden;
    transition:opacity .18s ease, transform .18s ease;
  }

  #nav.navbar-collapse.show{
    display:block;
  }

  #nav .navbar-nav{
    gap:4px;
    padding:0;
    text-align:left !important;
  }

  #nav .navbar-nav::before{
    content:"Menü";
    display:flex;
    align-items:center;
    justify-content:space-between;
    min-height:28px;
    margin:0 2px 10px;
    color:var(--bg-primary);
    font-size:18px;
    font-weight:900;
  }

  #nav .nav-item{
    width:100%;
  }

  #nav .nav-link{
    min-height:46px;
    padding:0 12px !important;
    border:0;
    border-bottom:1px solid #edf1f5;
    border-radius:0;
    background:#fff;
    color:#111827 !important;
    display:flex;
    align-items:center;
    justify-content:flex-start;
    gap:10px;
    font-size:15px;
    font-weight:900;
  }

  #nav .nav-link::before{
    content:"\F3D3";
    width:30px;
    height:30px;
    flex:0 0 30px;
    border-radius:10px;
    background:#eef4ff;
    color:var(--bg-primary);
    display:inline-flex;
    align-items:center;
    justify-content:center;
    font-family:"bootstrap-icons";
    font-size:14px;
  }

  #nav .nav-link::after{
    content:"\F285";
    position:static;
    width:auto;
    height:auto;
    background:transparent;
    opacity:1;
    transform:none;
    font-family:"bootstrap-icons";
    color:#9ca3af;
    font-size:14px;
    margin-left:auto;
  }

  #nav .nav-item:last-child .nav-link{
    border-bottom:0;
  }

  #nav .nav-link:hover,
  #nav .nav-link:focus{
    background:#f8fafc;
    color:var(--bg-primary) !important;
  }

  #nav .top-mega-item.is-open > .nav-link{
    background:#eef4ff;
    color:var(--bg-primary) !important;
    border-radius:12px;
    border-bottom-color:transparent;
  }

  #nav .top-mega-panel{
    margin:8px 0 4px;
    border:1px solid #e8edf4;
    border-radius:16px;
    background:#fff;
    color:#111827;
    box-shadow:none;
  }

  #nav .top-mega-panel__inner{
    gap:0;
    padding:10px 12px;
  }

  #nav .top-mega-col{
    padding:10px 0;
    border-bottom:1px solid #eef2f7;
  }

  #nav .top-mega-col:last-child{
    border-bottom:0;
  }

  #nav .top-mega-col h6{
    color:var(--bg-primary);
    font-size:12px;
    margin-bottom:6px;
  }

  #nav .top-mega-col a{
    min-height:34px;
    padding:7px 0;
    color:#4b5563;
    font-size:14px;
    font-weight:800;
  }
}

@media (max-width: 767.98px){
  .mobile-shop-nav{
    left:12px;
    right:12px;
    bottom:calc(env(safe-area-inset-bottom, 0px) + 10px);
    padding:7px;
    border:1px solid rgba(0,41,92,.08);
    border-radius:20px;
    box-shadow:none;
  }

  .mobile-shop-nav a,
  .mobile-shop-nav button{
    min-height:50px;
    border-radius:14px;
    color:#6b7280;
    transition:background .18s ease, color .18s ease;
  }

  .mobile-shop-nav a:hover,
  .mobile-shop-nav button:hover,
  .mobile-shop-nav a:focus-visible,
  .mobile-shop-nav button:focus-visible{
    background:#eef4ff;
    color:var(--bg-primary);
    outline:0;
  }

  .mobile-shop-nav i{
    font-size:17px;
    line-height:1;
    display:flex;
    align-items:center;
    justify-content:center;
  }
}

/* Global image fit guard: uploaded/content images inherit their frame shape. */
:where(
  [data-image-frame],
  .adaptive-image-frame,
  .avatar,
  .product-image,
  .main-image,
  .quick-view-img,
  .announcement-image,
  .mega-images .img-box,
  .product-action-modal__image,
  .support-upload-preview,
  .image-preview,
  .upload-preview,
  .profile-image,
  .category-cart-item,
  .cart-item__img,
  .mini-cart-v2__img,
  .nx-blog-img,
  .ratio-hero,
  .blog-detail-content .ratio,
  .detail-safe-checkout,
  .wishlist-slide-item,
  .product-action-cart-item
){
  overflow:hidden;
}

:where(
  [data-image-frame],
  .adaptive-image-frame,
  .avatar,
  .product-image,
  .main-image,
  .quick-view-img,
  .announcement-image,
  .mega-images .img-box,
  .product-action-modal__image,
  .support-upload-preview,
  .image-preview,
  .upload-preview,
  .profile-image,
  .category-cart-item,
  .cart-item__img,
  .mini-cart-v2__img,
  .nx-blog-img,
  .ratio-hero,
  .blog-detail-content .ratio,
  .detail-safe-checkout
) > img,
img.adaptive-upload-image,
img.fit-frame-image{
  width:100%;
  height:100%;
  max-width:none;
  object-fit:cover;
  object-position:center;
  border-radius:inherit;
}



.account-user > img{
  width:80px;
  height:80px;
  max-width:80px;
  flex:0 0 80px;
  object-fit:cover;
  object-position:center;
  border-radius:50% !important;
}

.account-user__avatar-placeholder{
  display:flex;
  align-items:center;
  justify-content:center;
  width:80px;
  height:80px;
  margin-bottom:12px;
  border-radius:50%;
  background:#f2f4f7;
  color:#9ca3af;
  font-size:2rem;
}

:where(
  .checkout-item,
  .cart-item,
  .wishlist-slide-item,
  .mini-cart-item,
  .order-history-product,
  .blog-card,
  .category-card,
  .featured-card
) img:not([src*="/icons/"]):not([src*="assets/icons/"]):not([src*="logo"]){
  object-fit:cover;
  object-position:center;
  border-radius:inherit;
}

:where(
  .checkout-item,
  .cart-item,
  .wishlist-slide-item,
  .mini-cart-v2,
  .product-action-cart-item
) > img,
:where(
  .checkout-item,
  .cart-item,
  .wishlist-slide-item,
  .mini-cart-v2,
  .product-action-cart-item
) img:not([src*="/icons/"]):not([src*="assets/icons/"]):not([src*="logo"]):not(.fit-contain-image){
  object-fit:cover;
  object-position:center;
}

.category-cart-item{
  aspect-ratio:1 / 1;
  border-radius:50% !important;
  overflow:hidden;
}

.category-cart-item > img,
.category-cart-link .category-cart-item > img{
  width:100% !important;
  height:100% !important;
  max-width:none;
  object-fit:cover !important;
  object-position:center;
  border-radius:inherit;
}

.product-detail .thumbs img,
.product-detail .set-card > img{
  object-fit:contain !important;
}

.category-section{
  overflow:visible;
}

.category-section > .container-fluid,
.category-section .position-relative,
.categorySwiper .swiper-wrapper,
.categorySwiper .swiper-slide{
  overflow:visible;
}

.categorySwiper{
  overflow:hidden !important;
  padding:16px 4px 18px !important;
}

.category-section .swiper-slide{
  align-items:flex-start;
}

.category-cart-link{
  display:inline-block;
  padding:4px 0 2px;
}

.category-cart-link:hover{
  transform:translateY(-4px);
}

:where(
  .navbar-brand,
  .account-menu,
  .footer-contact,
  footer,
  .social-icon-circle,
  .bank-item
) img,
img[src*="/icons/"],
img[src*="assets/icons/"],
img[src*="logo"],
.bank-logo,
.fit-contain-image{
  object-fit:contain;
}

/* Product cards: never crop backend product images on hover or listing pages. */
:where(
  .product-card,
  .products-wrapper,
  .product-list-section
) .product-image{
  background:#f6f7f9;
}

:where(
  .product-card,
  .products-wrapper,
  .product-list-section
) .product-image > img,
:where(
  .product-card,
  .products-wrapper,
  .product-list-section
) .product-image-hover{
  width:100% !important;
  height:100% !important;
  object-fit:cover !important;
  object-position:center top !important;
  border-radius:inherit;
}

:where(
  .product-card,
  .products-wrapper,
  .product-list-section
) .product-card:hover .product-image > img:first-child,
:where(
  .product-card,
  .products-wrapper,
  .product-list-section
) .product-card:hover .product-image-hover{
  transform:none !important;
}

/* Product cards: keep hover layers from fighting variant selection everywhere. */
.product-card .color-swatches,
.product-card .swatch{
  pointer-events:auto;
}

.product-card.is-variant-selected .product-image-hover,
.product-card.is-variant-selected:hover .product-image-hover{
  opacity:0 !important;
}

.product-card .product-image-hover,
.product-card:hover .product-image-hover{
  opacity:0 !important;
  visibility:hidden !important;
}

.product-card.is-variant-selected .product-image > img:first-child,
.product-card.is-variant-selected:hover .product-image > img:first-child{
  opacity:1 !important;
  transform:none !important;
}

.product-card .product-hover-actions{
  pointer-events:none;
}

.product-card .product-action-btn,
.product-card .product-card-buy-row button{
  pointer-events:auto;
}

/* Product detail gallery: keep the main image frame stable when thumbnails change. */
.product-detail .product-gallery .main-image,
.anvogue-detail .product-gallery .main-image{
  width:100%;
  aspect-ratio:4 / 5;
  min-height:0;
  overflow:hidden;
  border-radius:16px;
  background:#f7f7f7;
}

.product-detail .product-gallery .main-image > img,
.anvogue-detail .product-gallery .main-image > img{
  width:100% !important;
  height:100% !important;
  max-width:none;
  object-fit:cover !important;
  object-position:center top !important;
  border-radius:inherit;
}

.product-detail .thumbs img,
.anvogue-detail .thumbs img{
  object-fit:cover !important;
  object-position:center top !important;
}

/* Compact one-column top menu override. */
.sticky-nav-bar .top-mega-panel.top-mega-panel--single{
  left:var(--top-mega-single-left, 16px) !important;
  right:auto !important;
  width:180px !important;
  min-width:180px !important;
  max-width:180px !important;
  border:1px solid rgba(15,23,42,.08) !important;
  border-top:0 !important;
  border-radius:0 0 10px 10px !important;
  box-shadow:none;
}

.sticky-nav-bar .top-mega-panel--single .top-mega-panel__inner{
  display:block !important;
  width:100% !important;
  padding:6px !important;
}

.sticky-nav-bar .top-mega-panel--single .top-mega-col{
  padding:0 !important;
  border:0 !important;
}

.sticky-nav-bar .top-mega-panel--single .top-mega-col a{
  display:flex !important;
  align-items:center !important;
  min-height:32px !important;
  padding:7px 10px !important;
  border-radius:6px !important;
  color:#4b5563 !important;
  font-size:13px !important;
  font-weight:700 !important;
  line-height:1.2 !important;
  white-space:nowrap !important;
}

.sticky-nav-bar .top-mega-panel--single .top-mega-col a:hover,
.sticky-nav-bar .top-mega-panel--single .top-mega-col a:focus{
  background:#eef4ff !important;
  color:var(--bg-primary) !important;
}

/* Product detail set cards shared by all product detail variants. */
.product-detail .set-items{
  display:grid !important;
  grid-template-columns:repeat(3, minmax(0, 1fr));
  grid-auto-flow:row !important;
  grid-auto-columns:auto !important;
  gap:16px;
  align-items:stretch;
  justify-content:stretch;
  overflow:visible !important;
  padding:0 !important;
}

.product-detail .set-card{
  display:grid;
  grid-template-columns:96px minmax(0, 1fr);
  gap:14px;
  align-items:center;
  min-width:0;
  width:100%;
  padding:16px;
  border-radius:10px;
}

.product-detail .set-card > img{
  width:96px;
  height:120px;
  min-width:96px;
  max-width:96px;
  flex:0 0 96px;
  object-fit:cover !important;
  object-position:center top;
  border-radius:16px;
}

.product-detail .set-info{
  min-width:0;
}

.product-detail .set-info p{
  margin-bottom:10px;
  color:#21262d;
  font-size:clamp(15px, .95vw, 18px);
  font-weight:500;
  line-height:1.25;
  overflow-wrap:anywhere;
}

.product-detail .color-row{
  gap:8px;
  margin:0 0 14px;
  color:#21262d;
  font-size:clamp(15px, .95vw, 18px);
  line-height:1.25;
}

.product-detail .color-dot{
  width:18px;
  height:18px;
  flex:0 0 18px;
}

.product-detail .set-actions{
  gap:10px;
  justify-content:flex-start;
  align-items:center;
  min-width:0;
}

.product-detail .qty{
  flex:0 1 118px;
  width:min(118px, 100%);
  height:38px;
  justify-content:space-between;
  border-radius:12px;
}

.product-detail .qty button{
  width:36px;
  height:100%;
  font-size:18px;
  font-weight:500;
  line-height:1;
}

.product-detail .qty span{
  min-width:28px;
  padding:0;
  text-align:center;
  font-size:18px;
  line-height:1;
}

.product-detail .add-cart{
  flex:0 0 42px;
  width:42px;
  height:42px;
  min-width:42px;
  max-width:42px;
  padding:0;
  overflow:hidden;
}

.product-detail .set-card .add-cart img{
  width:18px !important;
  height:18px !important;
  min-width:0 !important;
  max-width:none !important;
  flex:0 0 auto !important;
  background:transparent !important;
  object-fit:contain !important;
  border-radius:0;
}

@media (max-width: 1199.98px){
  .product-detail .set-items{
    grid-template-columns:1fr !important;
  }

  .product-detail .set-card{
    grid-template-columns:110px minmax(0, 1fr);
  }

  .product-detail .set-card > img{
    width:110px;
    height:138px;
    min-width:110px;
    max-width:110px;
  }
}

@media (max-width: 575.98px){
  .product-detail .set-card{
    grid-template-columns:78px minmax(0, 1fr);
    gap:12px;
    padding:14px;
  }

  .product-detail .set-card > img{
    width:78px;
    height:98px;
    min-width:78px;
    max-width:78px;
  }

  .product-detail .set-info p,
  .product-detail .color-row{
    font-size:15px;
  }

  .product-detail .set-info p{
    margin-bottom:14px;
  }

  .product-detail .color-row{
    margin-bottom:16px;
  }

  .product-detail .color-dot{
    width:18px;
    height:18px;
    flex-basis:18px;
  }

  .product-detail .qty{
    flex-basis:104px;
    width:104px;
    height:36px;
  }

  .product-detail .qty button,
  .product-detail .qty span{
    font-size:16px;
  }

  .product-detail .add-cart{
    flex-basis:40px;
    width:40px;
    height:40px;
    min-width:40px;
    max-width:40px;
  }

  .product-detail .set-card .add-cart img{
    width:17px !important;
    height:17px !important;
  }
}

/* Compact cart drawer used from product detail bottom bars. */
.cart-slide-modal--compact .cart-slide-modal__shell{
  top:0 !important;
  right:0 !important;
  bottom:0 !important;
  left:auto !important;
  width:min(460px, 100vw) !important;
  border-radius:18px 0 0 18px !important;
}

.cart-slide-modal--compact .cart-slide-modal__body{
  height:100%;
}

.cart-slide-modal--compact .product-action-cart{
  display:block !important;
  height:100%;
  min-height:0;
}

.cart-slide-modal--compact .product-action-cart__suggestions{
  display:none !important;
}

.cart-slide-modal--compact .product-action-cart__panel{
  height:100%;
  padding:28px 24px 22px;
  overflow:auto;
}

.cart-slide-modal--compact .product-action-cart h4{
  font-size:28px;
  margin-bottom:18px;
}

.cart-slide-modal--compact .product-action-cart__notice{
  padding:14px;
  border-radius:12px;
  font-size:14px;
}

.cart-slide-modal--compact .product-action-cart-item{
  grid-template-columns:76px minmax(0, 1fr) auto;
  gap:14px;
  padding:16px 0;
}

.cart-slide-modal--compact .product-action-cart-item img{
  width:76px;
  height:86px;
}

.cart-slide-modal--compact .product-action-cart__actions{
  gap:10px;
}

.cart-slide-modal--compact .product-action-cart__actions a{
  min-height:48px;
  border-radius:10px;
}

body:has(.cart-slide-modal--compact.is-open) .sticky-bottom-bar{
  transform:translateY(120%) !important;
  opacity:0 !important;
  pointer-events:none !important;
}

@media (max-width: 575.98px){
  .cart-slide-modal--compact .cart-slide-modal__shell{
    width:100vw !important;
    border-radius:0 !important;
  }

  .cart-slide-modal--compact .product-action-cart__panel{
    padding:22px 16px 16px;
  }

  .cart-slide-modal--compact .product-action-cart h4{
    font-size:24px;
  }
}

/* ── Lightbox ── */
.nx-lightbox{
  display:none;
  position:fixed;
  inset:0;
  background:rgba(0,0,0,0.92);
  z-index:99999;
  flex-direction:column;
  align-items:center;
  justify-content:center;
}
.nx-lightbox.is-open{
  display:flex;
}

/* ana görsel alanı */
.nx-lightbox-main{
  position:relative;
  display:flex;
  align-items:center;
  justify-content:center;
  overflow:hidden;
  width:min(88vw, 700px);
  height:min(72vh, 600px);
  flex-shrink:0;
}
.nx-lightbox-main img{
  max-width:100%;
  max-height:100%;
  object-fit:contain;
  border-radius:6px;
  cursor:zoom-in;
  transition:transform 0.3s ease;
  transform-origin:50% 50%;
  user-select:none;
  -webkit-user-drag:none;
}
.nx-lightbox-main.is-zoomed img{
  cursor:zoom-out;
  transition:none;
}

/* kapat */
.nx-lightbox-close{
  position:absolute;
  top:16px;
  right:20px;
  background:rgba(255,255,255,0.1);
  border:none;
  color:#fff;
  font-size:26px;
  line-height:1;
  width:40px;
  height:40px;
  border-radius:50%;
  display:flex;
  align-items:center;
  justify-content:center;
  cursor:pointer;
  transition:background 0.2s;
  z-index:3;
}
.nx-lightbox-close:hover{ background:rgba(255,255,255,0.25); }

/* oklar */
.nx-lightbox-prev,
.nx-lightbox-next{
  position:absolute;
  top:50%;
  transform:translateY(-50%);
  background:rgba(255,255,255,0.12);
  border:none;
  color:#fff;
  font-size:24px;
  width:48px;
  height:48px;
  border-radius:50%;
  display:flex;
  align-items:center;
  justify-content:center;
  cursor:pointer;
  transition:background 0.2s;
  z-index:3;
}
.nx-lightbox-prev{ left:16px; }
.nx-lightbox-next{ right:16px; }
.nx-lightbox-prev:hover,
.nx-lightbox-next:hover{ background:rgba(255,255,255,0.28); }

/* sayaç */
.nx-lightbox-counter{
  color:rgba(255,255,255,0.7);
  font-size:13px;
  margin-top:10px;
}

/* thumbnail şeridi */
.nx-lightbox-thumbs{
  display:flex;
  gap:8px;
  margin-top:12px;
  padding:4px 8px;
  overflow-x:auto;
  scrollbar-width:none;
  max-width:min(88vw,700px);
}
.nx-lightbox-thumbs::-webkit-scrollbar{ display:none; }
.nx-lightbox-thumbs img{
  width:60px;
  height:60px;
  object-fit:cover;
  border-radius:16px;
  cursor:pointer;
  opacity:0.55;
  border:2px solid transparent;
  transition:opacity 0.2s, border-color 0.2s;
  flex-shrink:0;
}
.nx-lightbox-thumbs img.active{
  opacity:1;
  border-color:#fff;
}
.nx-lightbox-thumbs img:hover{
  opacity:0.85;
}

/* ── Wash instructions ── */
.wash-instructions th{
  display:flex;
  align-items:center;
  gap:8px;
}
.wash-instructions th img{
  width:20px;
  height:20px;
}
.wash-instructions th i{
  font-size:18px;
  color:#004E91;
  width:20px;
  text-align:center;
}

/* ── Model info popup ── */
.model-info-gallery{
  display:flex;
  gap:12px;
  margin-bottom:18px;
  justify-content:center;
}
.model-info-gallery img{
  width:50%;
  max-width:220px;
  aspect-ratio:3/4;
  object-fit:cover;
  border-radius:10px;
}
@media (max-width: 575.98px){
  .model-info-gallery img{
    max-width:none;
  }
}

/* ── Navbar icon buttons ── */
.nav-icon-btn{
  width:36px;
  height:36px;
  border-radius:12px;
  border:1px solid rgba(255,255,255,0.6);
  display:flex;
  align-items:center;
  justify-content:center;
  transition:background 0.2s;
}
.nav-icon-btn:hover{
  background:rgba(255,255,255,0.15);
}

/* ── Sticky bar summary right-align ── */
.sticky-right-group .sticky-summary{
  text-align:right;
}
.sticky-right-group .sticky-summary-title{
  text-align:right;
}
.sticky-right-group .price-sticky{
  text-align:right;
}
.sticky-right-group .sticky-summary-sub{
  text-align:right;
}

/* ===== CUSTOM ===== */

.navbar-brand img{
  height: 36px;
  object-fit: contain;
}

.nav-action-btn{
  width: 36px;
  height: 36px;
  overflow:visible;
}

/* Flag dropdown styling (both desktop and mobile) */

.navbar .d-flex .dropdown button.dropdown-toggle {
  width: 36px !important;
  height: 36px !important;
  border: 1px solid #ffffff !important;
  border-radius: 50% !important;
  padding: 0 !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
}

.navbar .d-flex .dropdown button.dropdown-toggle::after {
  display: none !important;
}

@media (max-width: 576px){
  /* Reduce navbar container padding */
  .sticky-nav-bar .container-fluid.px-3 {
    padding-left: 8px !important;
    padding-right: 8px !important;
  }

  /* Reduce gap between action buttons */
  .navbar .d-flex.align-items-center.order-lg-2 {
    gap: 4px !important;
  }

  .navbar-brand {
    max-width: 100px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
  }

  /* Limit logo size to prevent overlap */
  .navbar-brand img{
    height: 24px !important;
    max-height: 24px !important;
    max-width: 90px !important;
    width: auto !important;
  }

  /* Shrink all action buttons */
  .navbar .d-flex .nav-action-btn,
  .navbar .d-flex .dropdown button{
    width: 28px !important;
    height: 28px !important;
  }

  .navbar .d-flex img{
    width: 12px !important;
    height: 12px !important;
  }

  /* language flag inside dropdown button */
  .navbar .d-flex .dropdown button img,
  .navbar .d-flex .dropdown-menu img{
    width: 21px !important;
    height: 14px !important;
    border-radius: 0 !important;
    object-fit: cover;
  }
}

.product-list-section-title{
  color:#1F1F1F;
  font-size:28px;
  font-weight:900;
}

@media (max-width: 768px){

  .product-list-section-title{
    font-size:22px;
  }

  .see-all-link{
    font-size:14px;
    white-space:nowrap;
  }

}

.action-btn:not(.is-active):hover{
  background:#053F70;
  border-color:#004E91;
  color:#fff;
}

.action-btn:not(.is-active):hover span{
  color:#fff;
}

.action-btn:not(.is-active):hover img{
  filter:brightness(0) invert(1);
}

.product-detail-action-bar .action-btn.is-active,
.product-detail-action-bar .action-btn.action-btn--active{
  border-color:#e53935;
  background:#fff5f5;
  color:#e53935;
}

.product-detail-action-bar .action-btn.is-active:hover,
.product-detail-action-bar .action-btn.action-btn--active:hover{
  border-color:#e53935;
  background:#fce4e4;
  color:#e53935;
}

.product-detail-action-bar .action-btn.is-active span,
.product-detail-action-bar .action-btn.action-btn--active span{
  color:#e53935;
}

.product-detail-action-bar .action-btn.is-active:hover span,
.product-detail-action-bar .action-btn.action-btn--active:hover span{
  color:#e53935;
}

.product-detail-action-bar .action-btn.is-active img,
.product-detail-action-bar .action-btn.action-btn--active img{
  filter: invert(27%) sepia(90%) saturate(1500%) hue-rotate(330deg) brightness(95%);
}

.product-detail-action-bar .action-btn.is-active:hover img,
.product-detail-action-bar .action-btn.action-btn--active:hover img{
  filter: invert(27%) sepia(90%) saturate(1500%) hue-rotate(330deg) brightness(95%);
}

.product-detail-action-bar .action-btn.is-active i,
.product-detail-action-bar .action-btn.action-btn--active i,
.product-detail-action-bar .action-btn.is-active i::before,
.product-detail-action-bar .action-btn.action-btn--active i::before{
  color:#e53935;
  font-size:18px;
  line-height:1;
}

.product-detail-action-bar .action-btn.is-active:hover i,
.product-detail-action-bar .action-btn.action-btn--active:hover i,
.product-detail-action-bar .action-btn.is-active:hover i::before,
.product-detail-action-bar .action-btn.action-btn--active:hover i::before{
  color:#e53935;
}



.account-social .account-social-platform{
  flex:0 0 180px;
  width:180px;
}



/* Mobile product card actions */

@media (max-width: 767.98px){
  .products-section .product-image,
  .product-list-section .products-wrapper:not(.list-view) .product-image{
    border-radius:14px;
  }

  .products-section .product-hover-actions,
  .product-list-section .products-wrapper:not(.list-view) .product-hover-actions{
    justify-content:flex-start;
    padding:8px;
  }

  .products-section .product-card-utility,
  .product-list-section .products-wrapper:not(.list-view) .product-card-utility{
    align-self:flex-end;
    gap:7px;
  }

  .products-section .product-action-btn,
  .product-list-section .products-wrapper:not(.list-view) .product-action-btn{
    width:34px !important;
    min-width:34px !important;
    height:34px !important;
    padding:0 !important;
    border-radius:50% !important;
    background:rgba(255,255,255,.94);
    color:#111827;
    box-shadow:none;
  }

  .products-section .product-action-btn[data-wishlist-toggle],
  .product-list-section .products-wrapper:not(.list-view) .product-action-btn[data-wishlist-toggle]{
    background:var(--bg-primary);
    color:#fff;
  }

  .products-section .product-action-btn i,
  .product-list-section .products-wrapper:not(.list-view) .product-action-btn i{
    font-size:16px;
  }

  .products-section .product-card-buy-row,
  .product-list-section .products-wrapper:not(.list-view) .product-card-buy-row{
    position:absolute;
    right:8px;
    bottom:8px;
    display:flex;
    gap:7px;
    opacity:1;
    transform:none;
  }

  .products-section .product-card-buy-row button,
  .product-list-section .products-wrapper:not(.list-view) .product-card-buy-row button{
    width:34px !important;
    min-width:34px !important;
    height:34px !important;
    min-height:34px !important;
    padding:0 !important;
    border-radius:50% !important;
    background:var(--bg-primary) !important;
    color:#fff !important;
    font-size:0 !important;
    box-shadow:none;
  }

  .products-section .product-card-buy-row button::before,
  .product-list-section .products-wrapper:not(.list-view) .product-card-buy-row button::before{
    content:"\f243" !important;
    font-family:"bootstrap-icons" !important;
    font-size:16px !important;
    line-height:1 !important;
  }

  .products-section .product-card-buy-row button[data-quick-view]::before,
  .product-list-section .products-wrapper:not(.list-view) .product-card-buy-row button[data-quick-view]::before{
    content:"\f341";
  }

  .products-section .product-card-buy-row button[data-add-cart],
  .product-list-section .products-wrapper:not(.list-view) .product-card-buy-row button[data-add-cart]{
    background:var(--bg-primary);
    color:#fff;
  }

  .products-section .product-card-buy-row button[data-add-cart]::before,
  .product-list-section .products-wrapper:not(.list-view) .product-card-buy-row button[data-add-cart]::before{
    content:"\f243";
  }

  .products-section .product-card-badges,
  .product-list-section .products-wrapper:not(.list-view) .product-card-badges{
    gap:5px;
  }

  .products-section .product-stock-line,
  .product-list-section .products-wrapper:not(.list-view) .product-stock-line{
    margin-top:8px;
  }
}

/* Mobile menu UX */

@media (max-width: 991.98px){
  .sticky-nav-bar{
    z-index:2500;
    padding-top:0;
    padding-bottom:0;
  }

  .sticky-nav-bar .container-fluid{
    min-height:62px;
  }

  .navbar-toggler{
    width:42px;
    height:42px;
    border-radius:14px;
    background:rgba(255,255,255,.12);
    display:inline-flex;
    align-items:center;
    justify-content:center;
  }

  .navbar-toggler:focus{
    box-shadow:none;
  }

  .navbar-toggler-icon{
    width:1.35em;
    height:1.35em;
  }

  .sticky-nav-bar .navbar-brand{
    position:absolute;
    left:50%;
    transform:translateX(-50%);
    margin:0 !important;
    /* Hamburger(42px) + ikonlar(106px) + 2×padding(24px) = 172px → kalan 203px, yarısı ~100px */
    max-width:calc(100% - 180px);
  }

  .sticky-nav-bar .navbar-brand img{
    max-height:42px;
    max-width:100%;
    object-fit:contain;
  }

  .sticky-nav-bar > .container-fluid > .d-flex{
    margin-left:auto;
  }

  body:has(#nav.show){
    overflow:hidden;
  }

  body:has(#nav.show)::before{
    content:"";
    position:fixed;
    inset:0;
    z-index:2490;
    background:rgba(0,17,39,.56);
    backdrop-filter:blur(2px);
  }

  #nav.navbar-collapse{
    position:fixed;
    top:70px;
    left:14px;
    right:14px;
    z-index:2600;
    max-height:calc(100dvh - 88px);
    padding:16px;
    border:1px solid rgba(0,41,92,.08);
    border-radius:18px;
    background:#fff;
    color:#111827;
    box-shadow:none;
    overflow:auto;
  }

  #nav.navbar-collapse.collapsing{
    height:auto !important;
    overflow:hidden;
    transition:opacity .18s ease, transform .18s ease;
  }

  #nav.navbar-collapse.show{
    display:block;
  }

  #nav .navbar-nav{
    gap:4px;
    padding:0;
    text-align:left !important;
  }

  #nav .navbar-nav::before{
    content:"Menü";
    display:flex;
    align-items:center;
    justify-content:space-between;
    min-height:28px;
    margin:0 2px 10px;
    color:var(--bg-primary);
    font-size:18px;
    font-weight:900;
  }

  #nav .nav-item{
    width:100%;
  }

  #nav .nav-link{
    min-height:46px;
    padding:0 12px !important;
    border:0;
    border-bottom:1px solid #edf1f5;
    border-radius:0;
    background:#fff;
    color:#111827 !important;
    display:flex;
    align-items:center;
    justify-content:flex-start;
    gap:10px;
    font-size:15px;
    font-weight:900;
  }

  #nav .nav-link::before{
    content:"\F46D"; /* list (neutral default fallback) */
    width:30px;
    height:30px;
    flex:0 0 30px;
    border-radius:10px;
    background:#eef4ff;
    color:var(--bg-primary);
    display:inline-flex;
    align-items:center;
    justify-content:center;
    font-family:"bootstrap-icons";
    font-size:14px;
  }

  /* Home */
  #nav .nav-link[href$="/"]::before,
  #nav .nav-link[href*="home"]::before {
    content:"\F425"; /* house */
  }

  /* Products / Shop */
  #nav .nav-link[href*="urun"]::before,
  #nav .nav-link[href*="product"]::before,
  #nav .nav-link[href*="kategori"]::before,
  #nav .nav-link[href*="category"]::before {
    content:"\F3EE"; /* grid */
  }

  /* Blog / News */
  #nav .nav-link[href*="blog"]::before,
  #nav .nav-link[href*="haber"]::before,
  #nav .nav-link[href*="news"]::before {
    content:"\F4A5"; /* newspaper */
  }

  /* Contact */
  #nav .nav-link[href*="iletisim"]::before,
  #nav .nav-link[href*="contact"]::before {
    content:"\F32F"; /* envelope */
  }

  /* Corporate / Pages */
  #nav .nav-link[href*="sayfa"]::before,
  #nav .nav-link[href*="page"]::before,
  #nav .nav-link[href*="kurumsal"]::before,
  #nav .nav-link[href*="about"]::before {
    content:"\F410"; /* info-circle */
  }

  #nav .nav-link::after{
    content:"\F285";
    position:static;
    width:auto;
    height:auto;
    background:transparent;
    opacity:1;
    transform:none;
    font-family:"bootstrap-icons";
    color:#9ca3af;
    font-size:14px;
    margin-left:auto;
  }

  #nav .nav-item:last-child .nav-link{
    border-bottom:0;
  }

  #nav .nav-link:hover,
  #nav .nav-link:focus{
    background:#f8fafc;
    color:var(--bg-primary) !important;
  }

  #nav .top-mega-item.is-open > .nav-link{
    background:#eef4ff;
    color:var(--bg-primary) !important;
    border-radius:12px;
    border-bottom-color:transparent;
  }

  #nav .top-mega-panel{
    margin:8px 0 4px;
    border:1px solid #e8edf4;
    border-radius:16px;
    background:#fff;
    color:#111827;
    box-shadow:none;
  }

  #nav .top-mega-panel__inner{
    gap:0;
    padding:10px 12px;
  }

  #nav .top-mega-col{
    padding:10px 0;
    border-bottom:1px solid #eef2f7;
  }

  #nav .top-mega-col:last-child{
    border-bottom:0;
  }

  #nav .top-mega-col h6{
    color:var(--bg-primary);
    font-size:12px;
    margin-bottom:6px;
  }

  #nav .top-mega-col a{
    min-height:34px;
    padding:7px 0;
    color:#4b5563;
    font-size:14px;
    font-weight:800;
  }
}

/* Global image fit guard: uploaded/content images inherit their frame shape. */

:where(
  [data-image-frame],
  .adaptive-image-frame,
  .avatar,
  .product-image,
  .quick-view-img,
  .announcement-image,
  .mega-images .img-box,
  .product-action-modal__image,
  .support-upload-preview,
  .image-preview,
  .upload-preview,
  .profile-image,
  .category-cart-item,
  .cart-item__img,
  .mini-cart-v2__img,
  .nx-blog-img,
  .ratio-hero,
  .blog-detail-content .ratio,
  .detail-safe-checkout,
  .wishlist-slide-item,
  .product-action-cart-item
){
  overflow:hidden;
}

:where(
  [data-image-frame],
  .adaptive-image-frame,
  .avatar,
  .product-image,
  .quick-view-img,
  .announcement-image,
  .mega-images .img-box,
  .product-action-modal__image,
  .support-upload-preview,
  .image-preview,
  .upload-preview,
  .profile-image,
  .category-cart-item,
  .cart-item__img,
  .mini-cart-v2__img,
  .nx-blog-img,
  .ratio-hero,
  .blog-detail-content .ratio,
  .detail-safe-checkout
) > img,
img.adaptive-upload-image,
img.fit-frame-image{
  width:100%;
  height:100%;
  max-width:none;
  object-fit:cover;
  object-position:center;
  border-radius:inherit;
}

/* Product detail gallery: full photo visible, no crop. */

.product-detail .product-gallery,
.anvogue-detail .product-gallery{
  align-self:flex-start;
}

.product-detail .product-gallery .main-image,
.anvogue-detail .product-gallery .main-image{
  width:100%;
  display:block;
  overflow:hidden;
  border-radius:8px;
  background:#f7f7f7;
  line-height:0;
}

.product-detail .product-gallery .main-image > img,
.anvogue-detail .product-gallery .main-image > img{
  width:100%;
  height:auto;
  display:block;
  object-fit:contain;
  object-position:center;
  border-radius:inherit;
  cursor:zoom-in;
}

.product-detail .product-gallery .main-image:hover > img,
.anvogue-detail .product-gallery .main-image:hover > img{
  transform:none;
}

.wishlist-slide-item > a{
  border:0;
  background:transparent;
  color:#ef4444;
  text-decoration:underline;
  font-weight:900;
  cursor:pointer;
}

.g-recaptcha{
  display:block;
  margin-bottom:1rem;
}

.profile-avatar-upload__label{
  display:block;
  margin-bottom:12px;
}

.profile-avatar-upload__row{
  display:flex;
  flex-wrap:wrap;
  align-items:center;
  gap:20px;
}

.profile-avatar-upload__preview{
  position:relative;
  flex-shrink:0;
  width:120px;
  height:120px;
  border-radius:12px;
  overflow:hidden;
  background:#f2f4f7;
}

.profile-avatar-upload__placeholder-icon{
  position:absolute;
  top:50%;
  left:50%;
  transform:translate(-50%, -50%);
  font-size:2.5rem;
  color:#9ca3af;
  pointer-events:none;
}

.profile-avatar-upload__img{
  position:relative;
  z-index:1;
  width:100%;
  height:100%;
  object-fit:cover;
  display:none;
}

.profile-avatar-upload__img.has-image{
  display:block;
}

.profile-avatar-upload__controls{
  min-width:0;
  flex:1;
}

.profile-avatar-upload__title{
  display:block;
  font-size:14px;
  font-weight:600;
  color:#111827;
}

.profile-avatar-upload__hint{
  margin:4px 0 0;
  font-size:13px;
  color:#6b7280;
}

.profile-avatar-upload__file{
  display:flex;
  align-items:center;
  gap:12px;
  width:100%;
  max-width:320px;
  margin-top:12px;
  padding:8px 12px;
  border:1px solid #e5e7eb;
  border-radius:10px;
  background:#fff;
}

.profile-avatar-upload__choose{
  flex-shrink:0;
  margin:0;
  border-radius:16px;
  padding:10px 22px;
  font-size:14px;
  font-weight:600;
  border:1px solid #e4e8ef;
  cursor:pointer;
  transition:all .2s ease;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  background:#fff;
  color:#4b5563;
  white-space:nowrap;
}

.profile-avatar-upload__choose:hover{
  background:#f4f7fb;
  border-color:#cfd8e6;
}

.profile-avatar-upload__filename{
  min-width:0;
  font-size:13px;
  color:#6b7280;
  overflow:hidden;
  text-overflow:ellipsis;
  white-space:nowrap;
}

.profile-avatar-upload__input{
  position:absolute;
  width:1px;
  height:1px;
  padding:0;
  margin:-1px;
  overflow:hidden;
  clip:rect(0, 0, 0, 0);
  white-space:nowrap;
  border:0;
}

.profile-avatar-upload__remove{
  margin-top:10px;
  padding:0;
  border:0;
  background:transparent;
  font-size:13px;
  font-weight:500;
  color:#dc2626;
  cursor:pointer;
  text-decoration:underline;
  text-underline-offset:2px;
}

.profile-avatar-upload__remove:hover:not(:disabled){
  color:#b91c1c;
}

.profile-avatar-upload__remove:disabled,
.profile-avatar-upload__remove.is-marked{
  color:#9ca3af;
  cursor:default;
  text-decoration:none;
}

/* --- Account pages (Laravel-only, b4b-templates karşılığı yok) --- */

.account-filter-pills{
  display:flex;
  flex-wrap:wrap;
  gap:8px;
  margin-bottom:1rem;
  padding:0;
  list-style:none;
}

.account-filter-pills .account-filter-pill{
  border-radius:16px;
  padding:10px 22px;
  font-size:14px;
  font-weight:600;
  border:1px solid #e4e8ef;
  cursor:pointer;
  transition:all .2s ease;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  background:#fff;
  color:#4b5563;
}

.account-filter-pills .account-filter-pill:hover{
  background:#f4f7fb;
  border-color:#cfd8e6;
}

.account-filter-pills .account-filter-pill.active{
  border:1px solid transparent;
  background:var(--bg-primary);
  color:#fff;
}

.account-filter-pills .account-filter-pill.active:hover{
  background:var(--bg-secondary);
  border-color:transparent;
  transform:translateY(-1px);
  box-shadow:none;
}

.account-fab-btn{
  position:fixed;
  bottom:20px;
  right:20px;
  width:56px;
  height:56px;
  border-radius:50%;
  background:var(--bg-primary, #00295C);
  color:#fff;
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:22px;
  box-shadow:none;
  z-index:1000;
  text-decoration:none;
  transition:transform 0.2s ease;
  border:none;
}

.account-fab-btn:hover{
  transform:scale(1.05);
  color:#fff;
}

@media (min-width: 768px){
  .account-fab-btn{
    display:none;
  }
}

.account-modal .modal-body .account-form-group,
.account-modal .modal-body > .mb-3{
  margin-bottom:1rem;
}

.account-modal .modal-body label{
  color:#1F1F1F;
  font-weight:500;
  font-size:14px;
  display:block;
  margin-bottom:6px;
}

.account-modal .modal-footer{
  border-top:1px solid #F2F2F2;
  gap:10px;
}

.announcement-detail-modal .modal-content{
  border:none;
  border-radius:16px;
  overflow:hidden;
}

.announcement-detail-modal .modal-header{
  padding:18px 18px 0;
}

.announcement-detail-modal .modal-body{
  padding:8px 28px 24px;
}

.announcement-detail-modal .modal-footer{
  border-top:none !important;
  padding:0 28px 28px;
  gap:12px;
}

.announcement-detail-modal__title{
  margin:0 0 8px;
  color:#1f1f1f;
  font-size:20px;
  font-weight:500;
  line-height:1.35;
}

.announcement-detail-modal__date{
  margin:0 0 20px;
  color:#9ca3af;
  font-size:14px;
}

.announcement-detail-modal__image{
  width:100%;
  aspect-ratio:16 / 9;
  border-radius:12px;
  background:#f3f4f6;
  margin:0 auto 20px;
}

.announcement-detail-modal__image > img{
  display:block;
  width:100%;
  height:100%;
  object-fit:contain;
  object-position:center;
  border-radius:12px;
}

.announcement-detail-modal__image-placeholder{
  width:100%;
  height:100%;
  display:flex;
  align-items:center;
  justify-content:center;
  color:#cbd5e1;
  font-size:34px;
}

.announcement-detail-modal__text{
  margin:0;
  color:#4b5563;
  font-size:14px;
  line-height:1.6;
}

.announcement-detail-modal .btn-profile-cancel,
.announcement-detail-modal .btn-profile-save{
  justify-content:center;
  min-height:44px;
}

.announcement-detail-modal__info-table{
  width:auto;
  border-collapse:collapse;
  margin:20px auto 20px;
  font-size:14px;
}

.announcement-detail-modal__info-table th{
  color:#1f1f1f;
  font-weight:500;
  padding:0 32px 3px;
  text-align:center;
  border:none;
}

.announcement-detail-modal__info-table td{
  color:#9ca3af;
  text-align:center;
  border:none;
}

.account-table-actions{
  display:flex;
  gap:8px;
}

.account-table-actions a{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  width:36px;
  height:36px;
  border-radius:50%;
  background:#fff;
  border:1px solid #F2F2F2;
  color:#374957;
  cursor:pointer;
  text-decoration:none;
  flex-shrink:0;
  padding:0;
  transition:all 0.25s ease;
}

.account-table-actions a:hover{
  border-color:#053F70;
  background:#053F70;
  color:#fff;
}

.account-table-actions a i{
  font-size:14px;
  line-height:1;
  display:flex;
  align-items:center;
  justify-content:center;
}

.account-table-actions button{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  width:36px;
  height:36px;
  border:1px solid #F2F2F2;
  border-radius:50%;
  background:#FFFFFF;
  color:#374957;
  font-size:0;
  cursor:pointer;
  padding:0;
  flex-shrink:0;
  transition:all .25s ease;
}

.account-table-actions button i{
  color:#374957;
  font-size:14px;
  line-height:1;
  display:flex;
  align-items:center;
  justify-content:center;
}

.account-table-actions button:hover{
  border-color:#053F70;
  background:#053F70;
}

.account-table-actions button:hover i{
  color:#FFFFFF;
}

.account-table-actions button.danger i{
  color:#FF0B0F;
}

.account-table-actions button.danger:hover i{
  color:#FFFFFF;
}

.account-add-btn.is-active{
  background:var(--bg-primary, #00295C);
  color:#fff;
}

.support-info-strip{
  display:flex;
  flex-direction:column;
  gap:12px;
}

@media (min-width: 768px){
  .support-info-strip{
    flex-direction:row;
    align-items:center;
    justify-content:space-between;
  }
}

.support-info-strip__stat{
  display:flex;
  align-items:center;
  gap:14px;
}

.support-info-strip__stat i{
  font-size:28px;
  color:var(--bg-secondary, #004E91);
}

.support-info-strip__stat strong{
  display:block;
  font-size:18px;
  color:var(--bg-primary, #00295C);
}

.support-info-strip__hours{
  display:inline-block;
  width:fit-content;
  background:#F7F7F7;
  border-left:3px solid #004E91;
  padding:12px;
  border-radius:8px;
  font-size:13px;
  color:#6b7280;
  line-height:1.5;
}


.product-card-link{
  position:absolute;
  inset:0;
  z-index:3;
  border-radius:inherit;
  text-decoration:none;
}

.product-card .product-image,
.product-card .product-title,
.product-card .product-rating,
.product-card .product-bottom{
  pointer-events:none;
}

.product-card .product-action-btn,
.product-card .product-card-buy-row button,
.product-card .swatch,
.product-card .color-swatches,
.product-card .actions button{
  pointer-events:auto;
}
.custom-nunito-text h4,
.custom-nunito-text p,
.newsletter-form .newsletter-input-wrapper input,
.newsletter-form .newsletter-input-wrapper button {
    font-family: 'Nunito Sans', sans-serif !important;
}
h4 {
  font-family: 'Nunito Sans', sans-serif !important;
}

/* Yeni Gelen Ürünler — ürün adı (görsel altı) */
.category-section .category-cart-link,
.category-section .category-product-title,
.category-section .category-cart-link small{
  font-family:'Nunito Sans', sans-serif !important;
  font-optical-sizing:auto;
}
.category-section .category-product-title,
.category-section .category-cart-link small{
  color:#000 !important;
  font-weight:500;
}
.category-section .category-cart-link:hover .category-product-title,
.category-section .category-cart-link:hover small{
  color:var(--bg-secondary) !important;
}


/* Çok Satan — öne çıkan kategoriler ile aynı container genişliği, 4 sütun */
.products-section .products-section__row{
  --bs-gutter-x:16px;
  --bs-gutter-y:20px;
  margin-left:calc(var(--bs-gutter-x) * -.5);
  margin-right:calc(var(--bs-gutter-x) * -.5);
}

@media (min-width: 768px){
  .products-section .products-section__row{
    --bs-gutter-x:20px;
    --bs-gutter-y:24px;
  }
}

@media (min-width: 992px){
  .products-section .products-section__row{
    --bs-gutter-x:24px;
  }
}

/* Çok Satan / products-section — Figma ürün kartı */
.products-section .product-card,
.products-section .product-card .product-title,
.products-section .product-card .price,
.products-section .product-card .tab-btn{
  font-family:'Nunito Sans', sans-serif;
  font-optical-sizing:auto;
}

.products-section .product-card{
  padding:0;
  border-radius:0;
  background:transparent;
  box-shadow:none;
  overflow:visible;
  width:100%;
}

.products-section .product-card:hover{
  transform:none;
  box-shadow:none;
}

.products-section .product-card::after{
  display:none;
}

.products-section .product-card .product-image{
  aspect-ratio:4 / 5;
  border-radius:14px;
}

.products-section .product-card .color-swatches{
  margin-top:6px;
  margin-bottom:4px;
  gap:6px;
  flex-wrap:wrap;
  max-width:100%;
  overflow:visible;
}

.products-section .product-card .swatch{
  width:28px;
  height:28px;
  min-width:28px;
  border-radius:8px;
  outline-width:1px;
  flex-shrink:0;
}

.products-section .product-card .product-title,
.product-list-section .product-card .product-title{
  font-size:15px;
  font-weight:500;
  color:#1F1F1F;
  margin-bottom:1px;
  display:block;
  white-space:nowrap;
  overflow:hidden;
  text-overflow:ellipsis;
  line-height:1.3;
  min-height:unset;
  position:relative;
  pointer-events:auto;
  cursor:default;
}

#product-title-tooltip{
  position:fixed;
  background:#fff;
  color:#1F1F1F;
  padding:8px 14px;
  border-radius:10px;
  font-size:13px;
  font-weight:500;
  white-space:normal;
  word-break:break-word;
  overflow-wrap:break-word;
  max-width:280px;
  line-height:1.5;
  z-index:9999;
  box-shadow:none;
  border:1px solid rgba(0,0,0,0.08);
  pointer-events:none;
  opacity:0;
  transition:opacity 0.15s ease;
  font-family:'Nunito Sans', sans-serif;
}

.products-section .product-card .product-rating{
  display:none !important;
}

.products-section .product-card .product-hover-actions{
  justify-content:flex-end;
  align-items:flex-end;
}

.products-section .product-card-buy-row--overlay{
  display:flex;
  flex-direction:row;
  gap:8px;
  grid-template-columns:unset;
  width:auto;
}

.products-section .product-card-buy-row--overlay .product-action-btn{
  width:44px;
  height:44px;
  min-width:44px;
  min-height:44px;
  border-radius:50%;
  background:#fff;
  color:#111827;
  box-shadow:none;
  opacity:0;
  transform:translateY(10px);
  transition:opacity .25s ease, transform .25s ease, background .2s ease, color .2s ease;
}

.products-section .product-card-buy-row--overlay .product-action-btn:nth-child(2){
  transition-delay:.05s;
}

.products-section .product-card-buy-row--overlay .product-action-btn:nth-child(3){
  transition-delay:.1s;
}

.products-section .product-card:hover .product-card-buy-row--overlay .product-action-btn,
.products-section .product-card:focus-within .product-card-buy-row--overlay .product-action-btn{
  opacity:1;
  transform:translateY(0);
}

.products-section .product-card-buy-row--overlay .product-action-btn i{
  font-size:18px;
  line-height:1;
}

.products-section .product-card-buy-row--overlay .product-action-btn::before{
  content:none !important;
}

.products-section .product-card-buy-row--overlay .product-action-btn:hover,
.products-section .product-card-buy-row--overlay .product-action-btn:focus-visible{
  background:var(--bg-primary);
  color:#fff;
}

.products-section .product-card-buy-row--overlay .product-action-btn[data-add-cart]:hover,
.products-section .product-card-buy-row--overlay .product-action-btn[data-add-cart].is-active{
  background:var(--bg-primary);
  color:#fff;
}

.product-list-section .product-card .icon-btn{
  width:44px !important;
  height:44px !important;
  min-width:44px !important;
  min-height:44px !important;
  border-radius:50% !important;
  background:#fff;
  color:#6B7280;
  box-shadow:none;
  border:none;
  transform:none;
}

.product-list-section .product-card .icon-btn i{
  font-size:18px;
  line-height:1;
  color:inherit;
  transition:color .2s ease;
  display:inline-flex;
  align-items:center;
  justify-content:center;
}

.product-list-section .product-card .icon-btn i::before{
  line-height:1;
}

.product-list-section .product-card .icon-btn img{
  display:none;
}

.product-list-section .product-card .icon-btn--cart:hover,
.product-list-section .product-card .icon-btn--cart:focus-visible{
  background:var(--bg-primary, #00295C);
  color:#fff;
  box-shadow:none;
}

.product-list-section .product-card .icon-btn--cart:hover i,
.product-list-section .product-card .icon-btn--cart:focus-visible i{
  color:#fff;
}

.product-list-section .product-card .product-bottom{
  display:flex !important;
  flex-direction:row !important;
  flex-wrap:nowrap !important;
  align-items:center !important;
  justify-content:space-between !important;
  gap:8px !important;
}

.product-list-section .product-card .product-bottom .actions{
  display:flex !important;
  flex:0 0 auto;
  flex-direction:row !important;
  flex-wrap:nowrap !important;
  align-items:center !important;
  gap:6px !important;
  width:auto !important;
  margin-left:auto !important;
}

.products-section .product-card .icon-btn{
  width:44px !important;
  height:44px !important;
  min-width:44px !important;
  min-height:44px !important;
  border-radius:50% !important;
  background:#fff;
  color:#6B7280;
  box-shadow:none;
  border:none;
  transform:none;
}

.products-section .product-card .icon-btn i{
  font-size:18px;
  line-height:1;
  color:inherit;
  transition:color .2s ease;
  display:inline-flex;
  align-items:center;
  justify-content:center;
}

.products-section .product-card .icon-btn i::before{
  line-height:1;
}

.products-section .product-card .icon-btn img{
  display:none;
}

.products-section .product-card .icon-btn--cart:hover,
.products-section .product-card .icon-btn--cart:focus-visible{
  background:var(--bg-primary);
  color:#fff;
  box-shadow:none;
}

.products-section .product-card .icon-btn--cart:hover i,
.products-section .product-card .icon-btn--cart:focus-visible i{
  color:#fff;
}

.products-section .product-card .icon-btn[data-wishlist-toggle]:hover,
.products-section .product-card .icon-btn[data-wishlist-toggle]:focus-visible,
.product-list-section .product-card .icon-btn[data-wishlist-toggle]:hover,
.product-list-section .product-card .icon-btn[data-wishlist-toggle]:focus-visible{
  background:#053F70 !important;
  border-color:#053F70 !important;
  color:#fff !important;
  box-shadow:none;
  transform:none !important;
}

.products-section .product-card .icon-btn[data-wishlist-toggle]:hover i,
.products-section .product-card .icon-btn[data-wishlist-toggle]:focus-visible i,
.product-list-section .product-card .icon-btn[data-wishlist-toggle]:hover i,
.product-list-section .product-card .icon-btn[data-wishlist-toggle]:focus-visible i{
  color:#fff !important;
}

.products-section .product-card .icon-btn[data-wishlist-toggle].is-active,
.product-list-section .product-card .icon-btn[data-wishlist-toggle].is-active{
  background:#053F70 !important;
  color:#fff !important;
  border-color:#053F70 !important;
  box-shadow:none;
}

.products-section .product-card .icon-btn[data-wishlist-toggle].is-active i,
.product-list-section .product-card .icon-btn[data-wishlist-toggle].is-active i{
  color:#fff !important;
}

.products-section .product-card .icon-btn[data-wishlist-toggle].is-active:hover,
.product-list-section .product-card .icon-btn[data-wishlist-toggle].is-active:hover{
  background:#053F70 !important;
  border-color:#053F70 !important;
  color:#fff !important;
}

.products-section .product-card .icon-btn[data-wishlist-toggle].is-active:hover i,
.product-list-section .product-card .icon-btn[data-wishlist-toggle].is-active:hover i{
  color:#fff !important;
}

.products-section .product-action-btn[data-wishlist-toggle].is-active i::before{
  content:inherit;
  font-family:inherit;
}

.products-section .product-card .product-bottom{
  display:flex !important;
  flex-direction:row !important;
  flex-wrap:nowrap !important;
  align-items:center !important;
  justify-content:space-between !important;
  gap:8px !important;
}

.products-section .product-card .product-bottom .price{
  flex:1 1 auto;
  min-width:0;
  margin:0;
  font-size:15px;
  font-weight:400;
  color:#1F1F1F;
  line-height:44px;
}

.products-section .product-card .product-bottom .actions{
  display:flex !important;
  flex:0 0 auto;
  flex-direction:row !important;
  flex-wrap:nowrap !important;
  align-items:center !important;
  gap:6px !important;
  width:auto !important;
  margin-left:auto !important;
}

@media (min-width: 768px){
  .products-section .product-card-buy-row--overlay{
    position:absolute;
    right:12px;
    bottom:12px;
    left:auto;
    opacity:1;
    transform:none;
    pointer-events:none;
  }

  .products-section .product-card-buy-row--overlay .product-action-btn{
    pointer-events:auto;
  }
}

@media (max-width: 767.98px){
  .products-section .product-card-buy-row--overlay{
    position:absolute;
    right:8px;
    bottom:8px;
    opacity:1;
    transform:none;
  }

  .products-section .product-card-buy-row--overlay .product-action-btn{
    width:34px;
    height:34px;
    min-width:34px;
    min-height:34px;
    opacity:1;
    transform:none;
  }

  .products-section .product-card-buy-row--overlay .product-action-btn i{
    font-size:16px;
  }

  .products-section .product-card .icon-btn{
    width:32px !important;
    height:32px !important;
    min-width:32px !important;
    min-height:32px !important;
  }

  .products-section .product-card .icon-btn i{
    font-size:16px;
  }

  .products-section .product-card .product-bottom .price{
    font-size:13px;
    line-height:32px;
  }
}

@media (hover:none){
  .products-section .product-card-buy-row--overlay .product-action-btn{
    opacity:1;
    transform:none;
  }
}
.main-card:hover .discover-link,
.sub-card:hover .discover-link {
    border-bottom-color: #053F70 !important;
}

.discover-link {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    border-bottom: 1.5px solid transparent;
    padding-bottom: 2px;
    transition: border-bottom-color 0.25s ease;
}
.footer-contact {
    align-items: flex-start; /* ikonu üste hizala */
    gap: 12px;
    margin-bottom: 16px;
}

.footer-contact-icon {
    font-size: 20px;

    margin-right: 12px;
    flex-shrink: 0;
    color: #1a1a2e;
}
.footer-contact b {
    font-family: 'Nunito Sans', sans-serif;
    font-weight: 700;
    font-size: 13px;
    line-height: 1;
    color: #000000;
}
.actions {
    display: flex;
    gap: 8px;
    align-items: center;
}

.icon-btn {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: #fff;
    border: 1.3px solid #EEEEEE;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all .18s;
    color: #374957;
    font-size: 14px;
}

.icon-btn--cart {
    background: #053F70;
    border-color: #053F70;
    color: #fff;
}

.icon-btn--cart:hover {
    background: #053F70 !important;
    border-color: #053F70 !important;
    color: #fff !important;
    opacity: 1;
}

.icon-btn--cart:hover i {
    color: #fff !important;
}

.icon-btn:not(.icon-btn--cart):hover {
    border-color: #053F70;
    color: #053F70;
}

.icon-btn.is-active {
    border-color: #053F70;
    color: #053F70;
}
/* ============================================================
   Product Card — Figma tasarımına uygun
   Font: Nunito Sans | Renkler: #1F1F1F, #00295C, #EEEEEE
   ============================================================ */

/* ---------- Grid ---------- */
.products-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  column-gap: 33px; row-gap: 56px;
}

@media (max-width: 1200px) {
  .products-grid { grid-template-columns: repeat(3, 1fr); column-gap: 24px; row-gap: 48px; }
}
@media (max-width: 768px) {
  .products-grid { grid-template-columns: repeat(2, 1fr); column-gap: 16px; row-gap: 36px; }
}
@media (max-width: 480px) {
  .products-grid { grid-template-columns: repeat(2, 1fr); column-gap: 12px; row-gap: 28px; }
}

/* ---------- Card ---------- */
.product-card {
  display: flex;
  flex-direction: column;
  gap: 15px;
  width: 100%;
}

/* ---------- Image Wrap ---------- */
.product-card__image-wrap {
  position: relative;
  width: 100%;
  aspect-ratio: 300 / 318;
  border-radius: 16px;
  overflow: hidden;
  background: #f5f5f5;
}

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

.product-card__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: opacity 0.3s ease;
}

.product-card__img--main  { opacity: 1; }
.product-card__img--hover { opacity: 0; }

.product-card__image-wrap:hover .product-card__img--main  { opacity: 0; }
.product-card__image-wrap:hover .product-card__img--hover { opacity: 1; }

/* ---------- Swatches ---------- */
.product-card__swatches {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 10px;
  height: 40px;
}

.product-card__swatch {
  width: 40px;
  height: 40px;
  border-radius: 6.67px;
  display: inline-block;
  border: 1px solid rgba(0,0,0,0.08);
  flex-shrink: 0;
  transition: transform 0.15s ease;
}

.product-card__swatch:hover { transform: scale(1.08); }

.product-card__swatch-img-wrap {
  width: 40px;
  height: 40px;
  border-radius: 6.67px;
  overflow: hidden;
  flex-shrink: 0;
  border: 1px solid rgba(0,0,0,0.08);
  display: inline-block;
  transition: transform 0.15s ease;
}

.product-card__swatch-img-wrap:hover { transform: scale(1.08); }

.product-card__swatch-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ---------- Info ---------- */
.product-card__info {
  display: flex;
  flex-direction: column;
  gap: 8px;
  width: 100%;
}

.product-card__meta {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.product-card__name {
  font-family: 'Nunito Sans', sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 18px;
  line-height: 25px;
  color: #1F1F1F;
  text-decoration: none;
  display: block;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.product-card__name:hover { color: #00295C; }

/* ---------- Bottom Row ---------- */
.product-card__bottom {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  height: 34px;
}

/* ---------- Prices ---------- */
.product-card__prices {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 8px;
  flex: 1;
}

.product-card__price {
  font-family: 'Nunito Sans', sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 22px;
  color: #1F1F1F;
  white-space: nowrap;
}

.product-card__old-price {
  font-family: 'Nunito Sans', sans-serif;
  font-weight: 400;
  font-size: 14px;
  line-height: 20px;
  color: #888;
  text-decoration: line-through;
  white-space: nowrap;
}

/* ---------- Action Buttons ---------- */
.product-card__actions {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 9px;
  flex-shrink: 0;
}

.product-card__action-btn {
  width: 34px;
  height: 34px;
  border-radius: 109px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.2s ease, border-color 0.2s ease, transform 0.15s ease;
  border: none;
  outline: none;
  padding: 0;
}

.product-card__action-btn:active { transform: scale(0.93); }

/* Cart button — filled dark blue (active/primary state) */
.product-card__action-btn--cart {
  background: #00295C;
  color: #FFFFFF;
}

.product-card__action-btn--cart:hover { background: #001d42; }

/* Favorite button — white outlined */
.product-card__action-btn--fav {
  background: #FFFFFF;
  border: 1.31px solid #EEEEEE;
  color: #374957;
}

.product-card__action-btn--fav:hover {
  border-color: #ccc;
  color: #e74c3c;
}
.product-card__action-btn--fav.is-favorited {
  color: #e74c3c;
  border-color: #e74c3c;
}

.product-card__action-btn--fav.is-favorited svg path {
  fill: #e74c3c;
  stroke: #e74c3c;
}

/* ---------- Tabs ---------- */
.product-tabs {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 1.5rem;
}

.tab-btn {
  font-family: 'Nunito Sans', sans-serif;
  font-size: 14px;
  font-weight: 400;
  padding: 8px 20px;
  border-radius: 100px;
  border: 1.31px solid #EEEEEE;
  background: #fff;
  color: #1F1F1F;
  cursor: pointer;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
}

.tab-btn:hover { border-color: #053F70; color: #053F70; }

.tab-btn.active {
  background: #053F70;
  color: #fff;
  border-color: #053F70;
}

.tab-content { display: none; }
.tab-content.active { display: block; }

/* ---------- Section Title ---------- */
.section-title {
  font-family: 'Nunito Sans', sans-serif;
  font-weight: 700;
  font-size: 28px;
  color: #1F1F1F;
}
/* ============================================================
   Product Card — Figma tasarımına uygun
   Font: Nunito Sans | Renkler: #1F1F1F, #00295C, #EEEEEE
   ============================================================ */

/* ---------- Grid ---------- */
.products-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  column-gap: 33px; row-gap: 56px;
}

@media (max-width: 1200px) {
  .products-grid { grid-template-columns: repeat(3, 1fr); column-gap: 24px; row-gap: 48px; }
}
@media (max-width: 768px) {
  .products-grid { grid-template-columns: repeat(2, 1fr); column-gap: 16px; row-gap: 36px; }
}
@media (max-width: 480px) {
  .products-grid { grid-template-columns: repeat(2, 1fr); column-gap: 12px; row-gap: 28px; }
}

/* ---------- Card ---------- */
.product-card {
  display: flex;
  flex-direction: column;
  gap: 15px;
  width: 100%;
}

/* ---------- Image Wrap ---------- */
.product-card__image-wrap {
  position: relative;
  width: 100%;
  aspect-ratio: 300 / 318;
  border-radius: 16px;
  overflow: hidden;
  background: #f5f5f5;
}

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

.product-card__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: opacity 0.3s ease;
}

.product-card__img--main  { opacity: 1; }
.product-card__img--hover { opacity: 0; }

.product-card__image-wrap:hover .product-card__img--main  { opacity: 0; }
.product-card__image-wrap:hover .product-card__img--hover { opacity: 1; }

/* ---------- Swatches ---------- */
.product-card__swatches {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 10px;
  height: 40px;
}

.product-card__swatch {
  width: 40px;
  height: 40px;
  border-radius: 6.67px;
  display: inline-block;
  border: 1px solid rgba(0,0,0,0.08);
  flex-shrink: 0;
  transition: transform 0.15s ease;
}

.product-card__swatch:hover { transform: scale(1.08); }

.product-card__swatch-img-wrap {
  width: 40px;
  height: 40px;
  border-radius: 6.67px;
  overflow: hidden;
  flex-shrink: 0;
  border: 1px solid rgba(0,0,0,0.08);
  display: inline-block;
  transition: transform 0.15s ease;
}

.product-card__swatch-img-wrap:hover { transform: scale(1.08); }

.product-card__swatch-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ---------- Info ---------- */
.product-card__info {
  display: flex;
  flex-direction: column;
  gap: 6px;
  width: 100%;
}

.product-card__meta {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.product-card__name {
  font-family: 'Nunito Sans', sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 18px;
  line-height: 25px;
  color: #1F1F1F;
  text-decoration: none;
  display: block;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.product-card__name:hover { color: #00295C; }

/* ---------- Bottom Row ---------- */
.product-card__bottom {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  height: 34px;
}

/* ---------- Prices ---------- */
.product-card__prices {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 8px;
  flex: 1;
}

.product-card__price {
  font-family: 'Nunito Sans', sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 22px;
  color: #1F1F1F;
  white-space: nowrap;
}

.product-card__old-price {
  font-family: 'Nunito Sans', sans-serif;
  font-weight: 400;
  font-size: 14px;
  line-height: 20px;
  color: #888;
  text-decoration: line-through;
  white-space: nowrap;
}

/* ---------- Action Buttons ---------- */
.product-card__actions {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 9px;
  flex-shrink: 0;
}

.product-card__action-btn {
  width: 34px;
  height: 34px;
  border-radius: 109px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.2s ease, border-color 0.2s ease, transform 0.15s ease;
  border: none;
  outline: none;
  padding: 0;
}

.product-card__action-btn:active { transform: scale(0.93); }

/* Cart button — filled dark blue (active/primary state) */
.product-card__action-btn--cart {
  background: #00295C;
  color: #FFFFFF;
}

.product-card__action-btn--cart:hover { background: #001d42; }

/* Favorite button — white outlined */
.product-card__action-btn--fav {
  background: #FFFFFF;
  border: 1.31px solid #EEEEEE;
  color: #374957;
}

.product-card__action-btn--fav:hover {
  border-color: #ccc;
  color: #e74c3c;
}

.product-card__action-btn--fav.is-favorited {
  color: #e74c3c;
  border-color: #e74c3c;
}

.product-card__action-btn--fav.is-favorited svg path {
  fill: #e74c3c;
  stroke: #e74c3c;
}

/* ---------- Tabs ---------- */
.product-tabs {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 1.5rem;
}

.tab-btn {
  font-family: 'Nunito Sans', sans-serif;
  font-size: 14px;
  font-weight: 400;
  padding: 8px 20px;
  border-radius: 100px;
  border: 1.31px solid #EEEEEE;
  background: #fff;
  color: #1F1F1F;
  cursor: pointer;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
}

.tab-btn:hover { border-color: #053F70; color: #053F70; }

.tab-btn.active {
  background: #053F70;
  color: #fff;
  border-color: #053F70;
}

.tab-content { display: none; }
.tab-content.active { display: block; }

/* ---------- Section Title ---------- */
.section-title {
  font-family: 'Nunito Sans', sans-serif;
  font-weight: 700;
  font-size: 28px;
  color: #1F1F1F;
}
/* Kartın kapsayıcı olduğundan emin olalım */
.product-card {
  position: relative;
}

/* Tüm kartı kaplayan link katmanı */
.product-card-link {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1; /* Alt katman */
}

/* ÇÖZÜM: Butonların bulunduğu alanı linkin üzerine taşıyoruz */
.product-bottom {
  position: relative;
  z-index: 2; /* 1'den büyük olmalı ki tıklanabilsin */
  /* İçerisindeki elemanların tıklanabilir olduğundan emin olalım */
  pointer-events: auto;
}

/* Butonlar için Hover (Üzerine gelme) Efektleri */
.product-bottom button,
.product-bottom .btn-favorite,
.product-bottom .btn-add-to-cart {
  transition: all 0.3s ease-in-out;
  cursor: pointer;
}

/* Sepete Ekle hover efekti (Kendi tasarımına göre renkleri değiştirebilirsin) */
.product-bottom .btn-add-to-cart:hover {
  background-color: #0056b3; /* Örnek daha koyu mavi */
  transform: translateY(-2px); /* Hafif yukarı kalkma efekti */
  box-shadow:none;
}

/* Favorilere Ekle hover efekti */
.product-bottom .btn-favorite:hover {
  color:#053F70;
  transform: scale(1.1); /* Hafif büyüme efekti */
}
/* Sepete Ekle ve Favorilere Ekle butonları için ORTAK hover efekti */
.product-bottom .btn-add-to-cart:hover,
.product-bottom .btn-favorite:hover {
    background-color: #053F70 !important; /* Yeni tanımladığın renk */
    color: #ffffff; /* Arka plan koyu olduğu için ikon/metin rengini beyaz tutuyoruz */
    transform: translateY(-2px); /* Hafif yukarı kalkma efekti */
    box-shadow:none; /* Hafif gölge efekti */
}
/* 1. Tıklanabilirlik Sorununu Çözme (Önceki Adım) */
.product-bottom {
  position: relative;
  z-index: 2; /* Kart linkinin üzerine çıkarır */
  pointer-events: auto;
}

/* 2. Butonların Temel Geçiş Efekti (Yumuşak animasyon için) */
.actions .icon-btn {
  transition: all 0.3s ease-in-out;
  cursor: pointer;
}

/* 3. İki Buton İçin Ortak Hover Rengi (#053F70) ve Efekti */
.actions .icon-btn:hover {
  background-color: #053F70 !important;
  color: #ffffff; /* İkon rengini beyaz yapar */
  transform: translateY(-2px); /* Hafif yukarı kalkma efekti */
  box-shadow:none; /* Hafif gölge */
}

/* Garanti olması için hover durumunda içindeki ikonun (i etiketinin) rengini beyaza zorlayalım */
.actions .icon-btn:hover i {
  color: #ffffff ;
}

/* Favoriye eklendiğinde kalp beyaz görünsün (mavi arka plan üstünde) */
.actions .icon-btn.is-active i {
  color: #fff !important;
}
/* Swatch'ların (Renk kartlarının) bulunduğu genel kapsayıcı */
.product-card-swatches {
  /* Eğer yan yana sığmazlarsa alt satıra geçmeleri için */
  flex-wrap: wrap;
  /* Aralarındaki boşluğu biraz artırmak isteyebilirsiniz */
  gap: 8px !important;
  margin-bottom: 10px; /* Başlıkla arasına biraz mesafe */
}

/* Tek bir renk yuvarlağı/karesi için hedef sınıf (Tahmini) */
/* Gerçek class ismini bulmak için tarayıcıdan 'incele' yapın */
.product-card-swatches .swatch-item,
.product-card-swatches .swatch,
.product-card-swatches [data-swatch-id] {
  /* Mevcut boyutlarını bilmediğim için tahmini bir büyüklük veriyorum.
     Mevcut boyutu örneğin 20px ise, 30px yapabilirsiniz. */
  width: 30px !important;
  height: 30px !important;

  /* Eğer yuvarlaklarsa, yuvarlak kalmaya devam etmeleri için */
  border-radius: 50% !important;

  /* Eğer border (kenarlık) varsa, boyut büyüyünce çok kalın görünmemesi için ayar gerekebilir */
  border-width: 1px !important;

  /* Tıklanabilir olduklarını belirtmek için imleci değiştir */
  cursor: pointer;

  /* Boyut değişirken yumuşak bir geçiş olması için */
  transition: all 0.2s ease-in-out;
}

/* Swatch Kapsayıcısı (Senin gönderdiğin Figma değerleriyle) */
.product-card-swatches {
  display: flex;
  flex-direction: row;
  align-items: center;
  padding: 0px;
  gap: 10px;
  width: 300px;
  height: 40px;
  margin-bottom: 12px; /* Başlıkla arasına bir tık boşluk */
}

/* Renk yuvarlakları (Boyutları kapsayıcıya uygun olarak 40px'e çıkarıldı) */
/* (Eğer gerçek class isimleri farklıysa .swatch-item yerine onları yazmalısın) */
.product-card-swatches .swatch-item,
.product-card-swatches .swatch,
.product-card-swatches [data-swatch-id] {
  width: 40px !important;
  height: 40px !important;
  border-radius: 50% !important; /* Yuvarlak görünüm için */

  /* İçeriklerin flex yapısında ezilmemesi için (senin kodundaki flex: none) */
  flex: none;
  order: 1;

  cursor: pointer;
  transition: all 0.2s ease-in-out;
  border: 1px solid #ddd; /* Çizgi çok kalınsa değiştirebilirsin */
}

/* Seçili (aktif) olan renk için hover/seçili durumu */
.product-card-swatches .swatch-item.active,
.product-card-swatches .swatch-item.selected,
.product-card-swatches .swatch-item:hover {
  transform: scale(1.1); /* Seçildiğinde veya üzerine gelindiğinde %10 büyür */
  border-color: #053F70 !important; /* Belirlediğin lacivert tema rengi */
  box-shadow:none;
}
/* 1. Renk seçeneklerinin altındaki boşluğu tamamen kaldır */
.product-card-swatches {
  margin-bottom: 0 !important;
}

/* 2. Araya giren ürün başlığının üst ve alt boşluklarını iyice daralt (veya sıfırla) */
.product-title {
  margin-top: 2px !important;
  margin-bottom: 2px !important;
  /* Eğer tamamen yapışsın istersen 2px yerine 0 yazabilirsin */
}

/* 3. Eğer üründe yıldızlı değerlendirme (rating) çıkıyorsa onun da boşluğunu daralt */
.product-rating {
  margin-bottom: 2px !important;
}

/* 4. Fiyatın bulunduğu alt kapsayıcının üst boşluğunu kaldır */
.product-bottom {
  margin-top: 0 !important;
  padding-top: 0 !important;
}
/* 1. Renk kutucuklarının altındaki boşluğu küçült */
.color-swatches {
    margin-bottom: 4px !important; /* İstersen 0 yapıp tamamen yapıştırabilirsin */
}

/* 1. Renk kutucuklarının altındaki boşluğu küçült */
.color-swatches {
  margin-bottom: 4px !important; /* İstersen 0 yapıp tamamen yapıştırabilirsin */
}

/* 2. Araya giren ürün başlığının üst ve alt boşluklarını daralt */
.product-title {
  margin-top: 4px !important;
  margin-bottom: 4px !important;
}

/* 3. Fiyat ve aksiyon butonlarının bulunduğu alt kısmın üst boşluğunu sıfırla */
.product-bottom {
  margin-top: 0 !important;
  padding-top: 0 !important;
}
/* Favoriye eklendiğinde (is-active olduğunda) kalp beyaz olsun */
.actions .icon-btn.is-active i {
  color: #fff !important;
}

/* Aktifken üzerine gelindiğinde kalp beyaz olsun */
.actions .icon-btn.is-active:hover i {
  color: #fff !important;
}
/* 1. Kapsayıcının yüksekliğini yeni boyutlara uyum sağlayacak şekilde serbest bırakıyoruz */
.color-swatches {
  height: auto !important;
  min-height: 50px; /* Kutucuklar sığsın diye minimum yükseklik veriyoruz */
  align-items: center;
}

/* 2. Renk kutucuklarının kendi boyutunu büyütüyoruz (Örn: 48px) */
.color-swatches .swatch {
  width: 40px !important;  /* İstediğin büyüklüğe göre burayı 50px de yapabilirsin */
  height: 48px !important;
  flex: none;
  cursor: pointer;
  transition: all 0.2s ease-in-out;
  border: 1px solid #ddd;
  overflow: hidden; /* İçindeki resmin yuvarlak sınırların dışına taşmasını engeller */
}

/* 3. Kutucuğun içindeki ürün/renk görselinin yeni boyuta tam oturması için */
.color-swatches .swatch img {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover; /* Resmi ezmeden, alanı tam kaplayacak şekilde sığdırır */
}

/* 4. Seçili (aktif) ve üzerine gelme (hover) durumundaki büyüme efekti */
.color-swatches .swatch.active,
.color-swatches .swatch:hover {
  transform: scale(1.1); /* %10 daha da büyür */
  border-color: #053F70 !important; /* Lacivert tema rengin */
  box-shadow:none;
}
product-image {
    margin-bottom: 5px !important; /* Mevcut değere göre küçültün */
}

/* Renk seçenekleri ile başlık arasındaki boşluğu azaltmak için */
.color-swatches {
    margin-bottom: 5px !important;
}

/* Başlık ile fiyat/alt kısım arasındaki boşluğu azaltmak için */
.product-title {
    margin-top: 0;
    margin-bottom: 8px !important;
}
/* Başlığın altındaki tüm boşlukları ve satır yüksekliği fazlalığını alıyoruz */
.product-title {
    margin-bottom: 0 !important;
    padding-bottom: 0 !important;
    line-height: 1.1 !important; /* Görünmez metin kutusu boşluğunu daraltır */
}

/* Fiyat ve butonların olduğu alanın üstündeki olası boşlukları eziyoruz */
.product-bottom {
    margin-top: 4px !important; /* İki öğe arasına sadece 4px boşluk verir, isterseniz 0 yapabilirsiniz */
    padding-top: 0 !important;
}
/* 1. Görsel ile renk seçenekleri arasındaki boşluk (. nokta eklendi) */
.product-image {
    margin-bottom: 0px !important;
}

/* 2. Renk seçenekleri ile başlık arasındaki boşluk */
.color-swatches {
    margin-bottom: 4px !important;
}

/* 3. Başlık ile fiyat/alt kısım arasındaki boşluğu SIFIRLAMAK için */
.product-title {
    margin-top: 0 !important;
    margin-bottom: 0 !important; /* 8px yerine 0 yaptık! */
    line-height: 1.1 !important; /* Metnin kendi görünmez yüksekliğini daralttık */
}

/* 4. Alt kısmın kendi üst boşluğunu sıfırlamak için */
.product-bottom {
    margin-top: 0 !important;
    padding-top: 0 !important;
}
@media (max-width: 576px){
  .product-title{
    font-size:12px;
  }
}
/* Geniş ekranlarda (1400px ve üzeri monitörler) başlık boyutunu büyütmek için */
@media (min-width: 1400px) {
    .product-title,
    .products-section .product-card .product-title,
    .product-list-section .products-wrapper .product-title {
        font-size: 20px !important;
        line-height: 1.3 !important;
    }
}

/* Ekstra büyük ekranlarda (1800px ve üzeri - örneğin 1900x1400 çözünürlükler) daha da büyütmek için */
@media (min-width: 1800px) {
    .product-title,
    .products-section .product-card .product-title,
    .product-list-section .products-wrapper .product-title {
        font-size: 22px !important; /* Gözünüze hala küçük gelirse 24px yapabilirsiniz */
    }
}
/* --- FİYAT YAZISI BOYUTLANDIRMALARI --- */

/* Mobil ekranlarda (768px ve altı) fiyat yazısının çok küçülmesini engellemek için */
@media (max-width: 768px) {
    .product-bottom .price {
        font-size: 14px !important; /* İsteğe göre 13px veya 15px yapılabilir */
    }
}

/* Geniş ekranlarda (1400px ve üzeri monitörler) fiyat yazısını büyütmek için */
@media (min-width: 1400px) {
    .product-bottom .price {
        font-size: 18px !important;
    }
}

/* Ekstra büyük ekranlarda (1800px ve üzeri - örn: 1900x1400) fiyatı daha da büyütmek için */
@media (min-width: 1800px) {
    .product-bottom .price {
        font-size: 20px !important;
    }
}

/* ============================================================
   PRODUCTS-SECTION — RESPONSIVE KART DÜZELTMESİ
   ============================================================ */

/* Tablet: 768–991px — 3 veya 4 sütun, orta boyut */
@media (max-width: 991.98px){
  .products-section .product-card,
  .products-section .products-wrapper .product-card,
  .product-list-section .products-wrapper .product-card{
    height:auto !important;
    justify-content:flex-start !important;
  }
  .products-section .product-card .product-title{
    font-size:14px !important;
    margin-bottom:1px !important;
  }
  .products-section .product-card .product-bottom .price strong{
    font-size:15px !important;
  }
  .products-section .product-card .product-bottom .price small{
    font-size:13px !important;
  }
  .products-section .product-card .color-swatches,
  .product-list-section .product-card .color-swatches{
    gap:5px !important;
    margin-top:0 !important;
    margin-bottom:0 !important;
  }
  .products-section .product-card .swatch,
  .product-list-section .product-card .swatch{
    width:32px !important;
    height:32px !important;
    min-width:32px !important;
  }
  .products-section .product-card .icon-btn,
  .product-list-section .product-card .icon-btn{
    width:36px !important;
    height:36px !important;
    min-width:36px !important;
    min-height:36px !important;
  }
  .products-section .product-card .product-bottom,
  .product-list-section .product-card .product-bottom{
    margin-top:0 !important;
  }
}

/* Mobil: 0–767px — 2 sütun */
@media (max-width: 767.98px){
  .products-section .product-card,
  .products-section .products-wrapper .product-card,
  .product-list-section .products-wrapper .product-card{
    height:auto !important;
    justify-content:flex-start !important;
  }
  .products-section .product-card,
  .product-list-section .product-card{
    padding:6px !important;
    border-radius:12px !important;
  }
  .products-section .product-card .product-title,
  .product-list-section .product-card .product-title{
    font-size:13px !important;
    margin-bottom:0 !important;
    line-height:1.3 !important;
  }
  .products-section .product-card .product-bottom,
  .product-list-section .product-card .product-bottom{
    gap:5px !important;
    align-items:center !important;
    flex-wrap:nowrap !important;
    margin-top:0 !important;
  }
  .products-section .product-card .product-bottom .price strong,
  .product-list-section .product-card .product-bottom .price strong{
    font-size:15px !important;
  }
  .products-section .product-card .product-bottom .price .price-label,
  .products-section .product-card .product-bottom .price .price-amounts .price-label,
  .product-list-section .product-card .product-bottom .price .price-label,
  .product-list-section .product-card .product-bottom .price .price-amounts .price-label{
    font-size:9px !important;
  }
  .products-section .product-card .product-bottom .price small,
  .product-list-section .product-card .product-bottom .price small{
    font-size:10px !important;
  }
  .products-section .product-card .color-swatches,
  .product-list-section .product-card .color-swatches{
    margin-top:0 !important;
    margin-bottom:0 !important;
    gap:4px !important;
  }
  .products-section .product-card .swatch,
  .product-list-section .product-card .swatch{
    width:32px !important;
    height:32px !important;
    min-width:32px !important;
    border-radius:7px !important;
  }
  .products-section .product-card .icon-btn,
  .product-list-section .product-card .icon-btn{
    width:26px !important;
    height:26px !important;
    min-width:26px !important;
    min-height:26px !important;
    border-radius:50% !important;
  }
  .products-section .product-card .icon-btn img,
  .product-list-section .product-card .icon-btn img{
    width:11px !important;
    height:11px !important;
  }
  .products-section .product-card .icon-btn i,
  .product-list-section .product-card .icon-btn i{
    font-size:11px !important;
  }
  .products-section .product-card .icon-btn i{
    font-size:14px !important;
  }
  .products-section .product-card .product-image{
    border-radius:10px !important;
  }
  .products-section .product-card-badges{
    top:8px !important;
    left:8px !important;
    gap:4px !important;
  }
  .products-section .product-card-badges span{
    font-size:10px !important;
    padding:3px 7px !important;
  }
}

/* Küçük mobil: 0–479px */
@media (max-width: 479.98px){
  .products-section .product-card,
  .product-list-section .product-card{
    padding:5px !important;
    border-radius:10px !important;
  }
  .products-section .product-card .product-title,
  .product-list-section .product-card .product-title{
    font-size:12px !important;
    margin-bottom:0 !important;
  }
  .products-section .product-card .product-bottom .price strong,
  .product-list-section .product-card .product-bottom .price strong{
    font-size:10px !important;
  }
  .products-section .product-card .product-bottom .price .price-label,
  .products-section .product-card .product-bottom .price .price-amounts .price-label,
  .product-list-section .product-card .product-bottom .price .price-label,
  .product-list-section .product-card .product-bottom .price .price-amounts .price-label{
    font-size:8px !important;
  }
  .products-section .product-card .product-bottom .price small,
  .product-list-section .product-card .product-bottom .price small{
    font-size:11px !important;
  }
  .products-section .product-card .color-swatches,
  .product-list-section .product-card .color-swatches{
    margin-top:0 !important;
    margin-bottom:0 !important;
  }
  .products-section .product-card .swatch,
  .product-list-section .product-card .swatch{
    width:32px !important;
    height:32px !important;
    min-width:32px !important;
    border-radius:6px !important;
  }
  .products-section .product-card .icon-btn,
  .product-list-section .product-card .icon-btn{
    width:22px !important;
    height:22px !important;
    min-width:22px !important;
    min-height:22px !important;
    border-radius:50% !important;
  }
  .products-section .product-card .icon-btn img,
  .product-list-section .product-card .icon-btn img{
    width:9px !important;
    height:9px !important;
  }
  .products-section .product-card .icon-btn i,
  .product-list-section .product-card .icon-btn i{
    font-size:9px !important;
  }
}

/* Section spacing – uniform across all homepage/inner-page sections */
.section-py {
  padding-top: var(--space-section);
  padding-bottom: var(--space-section);
}
@media (max-width: 767.98px) {
  .section-py {
    padding-top: 1rem;
    padding-bottom: 1rem;
  }
}

/* Standart popup — kampanya popup görsel dili */
.b4b-standard-popup-pop{
  width:min(920px, calc(100vw - 56px));
  max-height:min(580px, calc(100vh - 56px));
  grid-template-columns:1.05fr .95fr;
}

.b4b-standard-popup-pop--solo{
  width:min(520px, calc(100vw - 56px));
  grid-template-columns:1fr;
}

.b4b-standard-popup-media{
  display:flex;
  align-items:center;
  justify-content:center;
  padding:32px;
  background:#f4f7fb;
  overflow:hidden;
}

.b4b-standard-popup-media img{
  width:100%;
  max-height:min(460px, calc(100vh - 120px));
  object-fit:cover;
  border-radius:12px;
  box-shadow:none;
}

.b4b-standard-popup-head{
  min-height:420px;
  padding:52px 40px 44px;
}

.b4b-standard-popup-head strong{
  font-size:clamp(28px, 3.6vw, 44px);
  line-height:1.15;
  margin-bottom:20px;
  font-weight:800;
  text-transform:none;
  letter-spacing:-0.02em;
}

.b4b-standard-popup-body{
  width:100%;
  max-width:360px;
  margin:0 auto 28px;
  color:#e8f2ff;
  font-size:16px;
  font-weight:500;
  line-height:1.65;
  text-transform:none;
}

.b4b-standard-popup-body p{
  margin:0 0 12px;
  color:inherit;
}

.b4b-standard-popup-body p:last-child{
  margin-bottom:0;
}

.b4b-standard-popup-body a{
  color:#fff;
  text-decoration:underline;
}

.b4b-standard-popup-head .special-offer-copy{
  margin-top:4px;
}

body.special-offer-open{
  overflow:hidden;
}

@media (max-width: 991.98px){
  .b4b-standard-popup-pop{
    width:min(720px, calc(100vw - 32px));
    max-height:none;
    grid-template-columns:1fr;
  }

  .b4b-standard-popup-media{
    padding:24px 24px 8px;
  }

  .b4b-standard-popup-media img{
    max-height:280px;
  }

  .b4b-standard-popup-head{
    min-height:0;
    padding:36px 28px 32px;
  }

  .b4b-standard-popup-head strong{
    font-size:clamp(24px, 6vw, 34px);
    margin-bottom:16px;
  }

  .b4b-standard-popup-body{
    max-width:none;
    font-size:15px;
    margin-bottom:22px;
  }
/* ── Ürünler sayfası: gölge yok, #f2f2f2 stroke ── */
.product-list-section .product-card,
.product-list-section .product-card:hover{
  box-shadow:none;
  border:1px solid #f2f2f2;
}

.product-list-section .product-card .icon-btn,
.product-list-section .product-card .icon-btn:hover{
  box-shadow:none;
  border:1px solid #f2f2f2 !important;
}

.product-list-section .product-card .icon-btn--cart:hover,
.product-list-section .product-card .icon-btn--cart:focus-visible{
  border-color:var(--bg-primary, #00295C) !important;
}

.product-list-section .product-card .icon-btn[data-wishlist-toggle]:hover,
.product-list-section .product-card .icon-btn[data-wishlist-toggle]:focus-visible{
  background:#053F70 !important;
  border-color:#053F70 !important;
  color:#fff !important;
}

.product-list-section .product-card .swatch{
  box-shadow:none;
}

.product-list-section .accordion-item,
.product-list-section .accordion-button{
  box-shadow:none;
}

.product-list-section .nx-select__list{
  box-shadow:none;
  border:1px solid #f2f2f2;
}

.product-list-section .page-link{
  box-shadow:none;
}

/* ── Listing toolbar sağ alan: ayrı kutu görünümü ── */
.product-list-section .listing-toolbar-actions{
  background:#fff;
  border:1px solid #f2f2f2;
  border-radius:16px;
  padding:6px 10px;
  display:flex;
  align-items:center;
  gap:8px;
}

.product-list-section .listing-toolbar-actions .nx-select__head{
  border:none;
  box-shadow:none;
  background:transparent;
}

.product-list-section .listing-toolbar-actions .nx-select__head:hover{
  box-shadow:none;
  background:#f7f7f7;
  border-radius:8px;
}

.product-list-section .listing-toolbar-actions .nx-select{
  position:relative;
}

.product-list-section .listing-toolbar-actions .view-switch{
  border-left:1px solid #f2f2f2;
  padding-left:8px;
  margin-left:4px;
}

/* ── Listing toolbar kutusu (ürün sayısı + dropdownlar + view butonları) ── */
.listing-toolbar-box{
  display:flex !important;
  flex-direction:row !important;
  align-items:center;
  gap:12px;
  background:#fff;
  border:1px solid #f2f2f2;
  border-radius:16px;
  padding:8px 14px;
  flex-wrap:nowrap;
}

.listing-toolbar-box .product-grid-text{
  font-size:14px;
  color:#1F1F1F;
  white-space:nowrap;
}

.listing-toolbar-divider{
  width:1px;
  height:28px;
  background:#f2f2f2;
  flex-shrink:0;
}

.listing-toolbar-box .listing-toolbar-actions{
  background:transparent !important;
  border:none !important;
  border-radius:0 !important;
  padding:0 !important;
}

.listing-toolbar-box .listing-toolbar-actions .view-switch{
  border-left:1px solid #f2f2f2;
  padding-left:8px;
  margin-left:4px;
}

/* ── Aktif filtre chip'leri ── */
.listing-active-filters{
  display:flex;
  align-items:center;
  flex-wrap:wrap;
  gap:8px;
}

.listing-active-filters__chips{
  display:flex;
  flex-wrap:wrap;
  gap:6px;
  flex:1;
}

.listing-active-filters__chips .filter-chip{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:8px;
  padding:10px 20px;
  background:#fff;
  border:1px solid #f2f2f2;
  border-radius:16px;
  font-size:15px;
  font-weight:500;
  line-height:1;
  color:var(--bg-primary);
  cursor:default;
}

.listing-active-filters__chips .filter-chip i{
  cursor:pointer;
  font-size:15px;
  color:#9ca3af;
  transition:color .2s;
  line-height:1;
  display:inline-flex;
  align-items:center;
  position:relative;
  top:0;
}

.listing-active-filters__chips .filter-chip i:hover{
  color:#e8192c;
}

.listing-active-filters__clear{
  white-space:nowrap;
  background:transparent;
  color:#1F1F1F;
  border:1px solid #f2f2f2;
  border-radius:16px;
  padding:7px 16px;
  font-size:13px;
  font-weight:500;
  cursor:pointer;
  transition:all .2s;
}

.listing-active-filters__clear:hover,
.listing-active-filters__clear:focus,
.listing-active-filters__clear:active{
  background:#053F70;
  color:#fff;
  border-color:#053F70;
  outline:none;
}

/* ── Listing toolbar: ürün sayısı + toolbar kutusu aynı satırda ── */
.product-list-section .listing-toolbar{
  display:flex;
  flex-direction:row;
  align-items:center;
  justify-content:space-between;
  gap:12px;
  flex-wrap:wrap;
}

.product-list-section .listing-toolbar .listing-active-filters__chips{
  display:flex;
  flex-wrap:wrap;
  gap:6px;
  flex:1;
}

/* ── Toolbar kutusu full-width, ürün sayısı içinde ── */
.product-list-section .listing-toolbar{
  display:flex;
  align-items:center;
  gap:8px;
  flex-wrap:wrap;
}

.product-list-section.section-py{
  padding-top:3rem !important;
}

.product-list-section .listing-toolbar-box{
  display:flex !important;
  flex-direction:row !important;
  align-items:center !important;
  flex-wrap:nowrap !important;
  width:100%;
  justify-content:flex-start;
}

.product-list-section .listing-toolbar-box .product-grid-text{
  font-size:14px;
  color:#1F1F1F;
  white-space:nowrap;
}

/* ── Filtre hover rengi #053F70 ── */
.filter-chip:hover,
.filter-chip i:hover{
  color:#053F70 !important;
}

.product-list-section .accordion-button:hover,
.product-list-section .accordion-button:focus{
  color:#053F70 !important;
}

.product-list-section .cat-row:hover,
.product-list-section .form-check-label:hover{
  color:#053F70 !important;
}

.product-list-section .nx-select__list li:hover{
  color:#053F70 !important;
}

/* ── Toolbar: tam genişlik tek satır ── */
.product-list-section .listing-toolbar-box.w-100{
  width:100% !important;
  justify-content:flex-start;
  flex-wrap:nowrap;
  border:1px solid #F2F2F2;
  border-radius:16px;
  padding:10px 16px;
}

.product-list-section .listing-toolbar-box .product-grid-text{
  margin-right:auto;
  flex-shrink:0;
}

.product-list-section .listing-toolbar-box .nx-select{
  display:block !important;
  width:auto !important;
  min-width:120px !important;
  max-width:200px !important;
  flex-shrink:1 !important;
  flex-grow:0 !important;
}

.product-list-section .listing-toolbar-box .listing-toolbar-divider{
  flex-shrink:0;
}

.product-list-section .listing-toolbar-box .view-btn{
  flex-shrink:0;
}

/* ── View btn: arka plan yok, hover #053F70 ── */
.view-btn{
  background:transparent !important;
  border-color:transparent !important;
}

.view-btn:hover{
  background:#053F70 !important;
  border-color:#053F70 !important;
}

.view-btn:hover i{
  color:#fff !important;
}

/* ── Pagination: hover ve active renkleri ── */
.product-list-section .page-link:hover{
  background:#053F70;
  border-color:#053F70;
  color:#fff !important;
}

.product-list-section .page-item.active .page-link{
  background:#053F70;
  border-color:#053F70;
  color:#fff !important;
  box-shadow:none;
}

.product-list-section .page-link{
  color:#1F1F1F;
}

/* ── Grid view butonu: ikon büyük ve ortalı, aktifken beyaz ── */
.view-btn.gridViewBtn{
  width:44px;
  height:44px;
  display:flex;
  align-items:center;
  justify-content:center;
  cursor:pointer;
  pointer-events:auto !important;
}

.view-btn.gridViewBtn i{
  font-size:22px;
  line-height:1;
  display:flex;
  align-items:center;
  justify-content:center;
  color:#1F1F1F;
}

.view-btn.gridViewBtn:hover i{
  color:#fff !important;
}

/* ── Sticky bottom bar butonları hover #053F70 ── */
.bottom-bar-action-btn-outline{
  cursor:pointer;
  transition:all 0.25s ease;
}

.bottom-bar-action-btn-outline:hover{
  background:#f4f7fb !important;
  border-color:#cfd8e6 !important;
  color:#4b5563 !important;
}

.bottom-bar-action-btn{
  cursor:pointer;
  color:#fff;
  transition:all 0.25s ease;
}

.bottom-bar-action-btn:hover{
  background:rgb(203, 224, 242) !important;
  color:rgb(0, 78, 145) !important;
}

.sticky-bottom-bar .btn-detail-favorite:hover{
  border-color:#053F70 !important;
  background:#053F70 !important;
  color:#fff !important;
}

@media (max-width: 575.98px){
  .product-list-section .listing-toolbar-box,
  .product-list-section .listing-toolbar-box.w-100{
    flex-wrap:wrap !important;
    gap:8px !important;
  }
  .product-list-section .listing-toolbar-box .nx-select{
    flex:1 1 calc(50% - 4px) !important;
    min-width:0 !important;
    max-width:none !important;
    width:auto !important;
  }
  .product-list-section .listing-toolbar-box .listing-toolbar-divider{
    display:none !important;
  }
}

.login-prompt-box {
  transition: border-color 0.2s;
}
.login-prompt-box:hover {
  border-color: #053F70 !important;
}

.login-prompt-btn {
  background: #053F70;
  border: 1px solid #053F70;
  color: #fff;
  transition: background 0.2s, color 0.2s;
}
.login-prompt-btn:hover {
  background: #fff;
  color: #053F70;
}

/* ── Ürün detay: Giriş Yap / Kayıt Ol butonları ── */
.btn-detail-login{
  border-radius:16px !important;
  background:#053F70 !important;
  border:1px solid #053F70 !important;
  color:#fff !important;
  transition:all 0.25s ease;
}

.btn-detail-login:hover{
  background:#fff !important;
  color:#053F70 !important;
  border-color:#053F70 !important;
}

.btn-detail-register{
  border-radius:16px !important;
  background:#fff !important;
  border:1px solid #053F70 !important;
  color:#053F70 !important;
  transition:all 0.25s ease;
}

.btn-detail-register:hover{
  background:#053F70 !important;
  color:#fff !important;
  border-color:#053F70 !important;
}

.btn-detail-register:hover{
  background:#053F70;
  color:#fff;
  border-color:#053F70;
}

/* ── Hemen Al hover: beyaz arka plan ── */
.sticky-bottom-bar .bottom-bar-action-btn:hover,
.bottom-bar-action-btn:hover{
  background:#fff !important;
  color:#053F70 !important;
  border:2px solid #053F70 !important;
}

/* ── Receipt btn hover ── */
.receipt-btn:hover{
  background:#f4f7fb !important;
  border-color:#cfd8e6 !important;
  color:#4b5563 !important;
}

.receipt-btn:hover svg,
.receipt-btn:hover .receipt-icon{
  filter:none;
  opacity:1;
}

/* ── Asorti select rotate ── */
.rotate-180{
  transform:rotate(180deg);
}
}


@media (min-width: 992px){
  /* sütunları eşit yükseklik yap */
  .contact-section .row{
    align-items:stretch !important;
  }

  /* sağ sütunu flex yap → form sütunun tüm yüksekliğini kaplar */
  .contact-section .col-lg-7{
    display:flex;
  }

  .contact-form{
    padding:0 40px;
    width:100%;
    display:flex;
    flex-direction:column;
  }

  .contact-form form{
    flex:1 1 auto;
    display:flex;
    flex-direction:column;
  }

  /* alanları dikeyde dağıt → buton en alta iner */
  .contact-form form .row.g-3{
    flex:1 1 auto;
    align-content:space-between;
  }

  /* formdan sonraki boş yanıt paragrafı alttan boşluk yapmasın */
  .contact-form .ajax-response{
    margin-top:0 !important;
  }
}
.store-section{
  padding-bottom:0 !important;
  padding-top:3rem !important;
}



.product-list-section + * .faq-section,
.faq-section{
  padding-top:1.5rem !important;
  padding-bottom:1.5rem !important;
}
.newsletter-section{
  padding-top:1.5rem !important;
  margin-top:1.5rem !important;
}
.search-input-wrap {
    position: relative;
}

.search-input-wrap .form-control {
    width: 100%;
    padding-right: 40px;          /* ikon için sağda boşluk */
    border-radius: 12px;
    border: 1px solid #e5e7eb;
}

.search-input-wrap .form-control:focus {
    border-color: #00295C;
    box-shadow: none;
}

.search-input-wrap .search-input-icon {
    position: absolute;
    top: 50%;
    right: 14px;
    transform: translateY(-50%);
    font-size: 18px;
    color: #1f2937;
    pointer-events: none;          /* ikon tıklamayı engellemesin */
    display: flex;                 /* flaticon dikey hizalama düzeltmesi */
    align-items: center;
}
/* Fiyat input'larındaki artır/azalt oklarını kaldır */
#collapsePrice input[type="number"]::-webkit-outer-spin-button,
#collapsePrice input[type="number"]::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

#collapsePrice input[type="number"] {
    -moz-appearance: textfield;
    appearance: textfield;
}
.hero-section{
  padding-top:3rem !important;
}
.tabs-section{
  padding-top:0;
  padding-bottom:1.5rem;
}

.product-detail.section-py{
  padding-bottom:1.5rem !important;
}

/* tabs → products-section: toplam 3rem (tabs 1.5 bottom + products 1.5 top) */
#async-similar-products .products-section.section-py,
#async-platinam-products .products-section.section-py{
  padding-top:var(--space-section) !important;
}

/* detail page: son products-section → sticky bar: toplam 3rem (sticky'nin 12px top'u var) */
#async-platinam-products .products-section.section-py{
  padding-bottom:calc(var(--space-section) - 12px) !important;
}
@media (min-width: 768px){
  .products-section .products-wrapper.grid-view{
    row-gap:4rem !important;
  }
}

.features-section{
  padding-top:1.5rem !important;
}
.newsletter-box{
  padding:24px 0;
  border-radius:16px;
  gap:48px;                 /* aradaki mesafe — az ama yapışık değil */
}

/* Sol blok kendi içeriği kadar yer kaplasın */
.newsletter-box > .custom-nunito-text{
  flex:0 0 auto;
}

/* Form esnesin, kalan alanı dengeli doldursun */
.newsletter-form{
  flex:1 1 auto;
  width:auto;
  max-width:720px;          /* aşırı uzamasın */
  margin-left:auto;         /* sağa dengeli hizala */
}

.newsletter-input-wrapper{
  position:relative;
  width:100%;
}

.newsletter-form .form-control{
  width:100%;
  border-radius:16px !important;
  padding:20px 160px 20px 30px !important;
  border:none;
  background:#fff;
  box-shadow:none;
  height:auto !important;
  min-height:70px;          /* input biraz daha büyük */
  font-size:17px;
  color:#1F1F1F;
}
.newsletter-form .form-control::placeholder{
  color:#9aa0a6;
  font-size:17px;
}

.newsletter-btn{
  position:absolute;
  top:50%;
  right:8px;
  transform:translateY(-50%);

  background:var(--bg-primary);
  color:#fff;
  border-radius:16px;
  padding:0 34px;
  border:2px solid var(--bg-primary);

  height:calc(100% - 14px);
  min-width:140px;
  font-size:16px;
  font-weight:500;

  display:flex;
  align-items:center;
  justify-content:center;

  transition:all 0.25s ease;
}
.newsletter-btn:hover{
  background:var(--bg-secondary);
  border-color:var(--bg-secondary);
  color:#fff;
}

@media (max-width: 768px){
  .newsletter-box{
    text-align:center;
    gap:20px;
  }
  .newsletter-form{
    width:100%;
    max-width:100%;
    margin-left:0;
  }
  .newsletter-form .form-control{
    padding:16px 130px 16px 22px !important;
    min-height:60px;
    font-size:15px;
  }
  .newsletter-btn{
    min-width:115px;
    padding:0 22px;
  }
}

.products-section .row,
.products-wrapper {
  --bs-gutter-x: 1rem;
  --bs-gutter-y: 1rem;
}

@media (min-width: 768px) {
  .products-section .row,
  .products-wrapper {
    --bs-gutter-x: 1.5rem;
    --bs-gutter-y: 1.5rem;
  }
}

.products-section .swiper-slide {
  height: auto;
  display: flex;
  flex-direction: column;
}

.products-section .swiper-slide > .product-card {
  flex: 1 1 auto;
  display: flex;
  flex-direction: column;
  width: 100%;
}

.products-section .swiper-slide > .product-card > .product-image {
  flex-shrink: 0;
  width: 100%;
}

.products-section .swiper-slide > .product-card > .product-bottom {
  margin-top: auto;
}

@media (max-width: 991.98px) {
  .products-section .swiper-slide > .product-card > .product-bottom,
  .new-arrivals-swiper-wrap .swiper-slide > .product-card > .product-bottom {
    margin-top: 0 !important;
  }
  .product-card .product-bottom {
    margin-top: 0 !important;
  }
}

@media (min-width: 992px) {
  .product-list-section #productGrid > .col-lg-3 {
    flex: 0 0 33.33333%;
    max-width: 33.33333%;
    width: 33.33333%;
  }
}

.products-section .row.g-2 {
  --bs-gutter-x: 33px;
  --bs-gutter-y: 56px;
}

@media (min-width: 769px) and (max-width: 1200px) {
  .products-section .row.g-2 {
    --bs-gutter-x: 24px;
    --bs-gutter-y: 48px;
  }
  .products-section .row.g-2 > [class*="col-"] {
    flex: 0 0 33.33333%;
    max-width: 33.33333%;
    width: 33.33333%;
  }
}

@media (max-width: 768px) {
  .products-section .row.g-2 {
    --bs-gutter-x: 16px;
    --bs-gutter-y: 36px;
  }
}

@media (max-width: 480px) {
  .products-section .row.g-2 {
    --bs-gutter-x: 12px;
    --bs-gutter-y: 28px;
  }
}

.products-section .related-product-active .swiper-slide,
.products-section .platinam-pro-active .swiper-slide {
  padding-left: 11.5px;
  padding-right: 11.5px;
}

@media (max-width: 991.98px) {
  .products-section .related-product-active .swiper-slide,
  .products-section .platinam-pro-active .swiper-slide {
    padding-left: 7px;
    padding-right: 7px;
  }
}

@media (max-width: 767.98px) {
  .products-section .related-product-active .swiper-slide,
  .products-section .platinam-pro-active .swiper-slide {
    padding-left: 3px;
    padding-right: 3px;
  }
}

@media (max-width: 479.98px) {
  .products-section .related-product-active .swiper-slide,
  .products-section .platinam-pro-active .swiper-slide {
    padding-left: 1px;
    padding-right: 1px;
  }
}
/* ── Career Page ── */
.career-title-section h3 {
  font-family: 'Nunito Sans', sans-serif;
  font-weight: 700;
  font-size: 34px;
  line-height: 1;
  letter-spacing: 0;
}

.career-title-section p {
  font-family: 'Nunito Sans', sans-serif;
  font-weight: 300;
  font-size: 20px;
  line-height: 30px;
  letter-spacing: 0;
}

.career-title-section{
  padding-bottom:0 !important;
}
.career-jobs-section{
  padding-top:3rem !important;
  padding-bottom:3rem !important;
}
.career-form-section{
  padding-top:3rem !important;
  padding-bottom:1.5rem !important;
}
.career-jobs-section h5 {
  font-family: 'Nunito Sans', sans-serif;
  font-weight: 700;
  font-size: 34px;
  line-height: 1;
  letter-spacing: 0;
}

.career-jobs-section p.career-jobs-desc {
  font-family: 'Nunito Sans', sans-serif;
  font-weight: 300;
  font-size: 20px;
  line-height: 30px;
  letter-spacing: 0;
  text-align: center;
  color: #444444;
  max-width: 760px;
  margin: 0 auto 2rem;
}

.career-position-card {
  border-radius: 16px !important;
  border: 1px solid rgba(255,255,255,0.1);
}

.career-position-card h6 {
  font-family: 'Nunito Sans', sans-serif;
  font-weight: 700;
  font-size: 18px;
}

.career-position-card .career-location {
  color: #707376;
  font-size: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
}

.career-position-card .career-location i {
  font-size: 15px;
  color: #707376;
}

.career-position-card .btn-apply {
  background-color: #004E91 !important;
  border-color: #004E91 !important;
  border-radius: 16px !important;
  color: #fff !important;
  transition: all 0.25s ease;
}

.career-position-card .btn-apply:hover {
  background-color: #fff !important;
  color: #004E91 !important;
  border-color: #004E91 !important;
}
#loadMoreBtn:hover {
  background:#fff !important;
  color:#004E91 !important;
  border-color:#004E91 !important;
}
/* ── Career Form Section ── */
.career-form-section h5 {
  font-family: 'Nunito Sans', sans-serif;
  font-weight: 700;
  font-size: 34px;
  line-height: 1;
}

.career-form-section p.text-muted {
  font-family: 'Nunito Sans', sans-serif;
  font-weight: 300;
  font-size: 20px;
  line-height: 30px;
}

.career-form-section .form-control,
.career-form-section .form-select {
  border-radius: 16px !important;
  border: 1px solid #EEEEEE;
  padding: 10px 24px;
}

.career-form-section .form-control::placeholder {
  color: #c6c6c6;
}

.career-input-label {
  display: block;
  font-family: 'Nunito', sans-serif;
  font-weight: 700;
  font-size: 15px;
  line-height: 1;
  letter-spacing: 0;
  margin-bottom: 6px;
  color: rgba(31, 31, 31, 1);
}

.career-form-section .form-select.placeholder-active {
  color: #c6c6c6;
}

.career-form-section .form-select {
  color: rgba(31, 31, 31, 1);
}

.career-form-section .form-control:focus,
.career-form-section .form-select:focus {
  border-color: #004E91;
  box-shadow: none;
}

.career-submit-btn {
  background-color: #004E91 !important;
  border-color: #004E91 !important;
  color: #fff !important;
  border-radius: 16px !important;
  padding: 14px 24px !important;
  font-size: 16px;
  transition: all 0.25s ease;
}

.career-submit-btn:hover {
  background-color: #fff !important;
  color: #004E91 !important;
  border-color: #004E91 !important;
}
.career-file-label {
  display: inline-flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: 1px solid #EEEEEE;
  border-radius: 16px;
  padding: 14px 24px;
  cursor: pointer;
  color: #707376;
  transition: all 0.25s ease;
  background: #fff;
  width: auto !important;
}
.career-file-label i {
  font-size: 18px;
  color: #707376;
  display: inline-flex;
  align-items: center;
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

.career-file-label span {
  font-size: 15px;
  font-weight: 500;
  color: #707376;
}

.career-file-label:hover {
  border-color: #004E91;
  color: #004E91;
}

.career-file-label:hover i {
  color: #004E91;
}
.career-title-section {
  padding-top: 3rem !important;
  padding-bottom: 0 !important;
}

.career-jobs-section {
  background-color: rgba(0, 78, 145, 0.1) !important;
  padding-top: 3rem !important;
  padding-bottom: 3rem !important;
}

.career-form-section {
  padding-top: 3rem !important;
  padding-bottom: 1.5rem !important;
}
.career-position-card {
  border-radius: 16px !important;
  border: 1px solid #EEEEEE;
  padding: 28px !important;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.career-position-card h6 {
  font-family: 'Nunito Sans', sans-serif;
  font-weight: 700;
  font-size: 20px;
  text-align: left;
  margin-bottom: 0;
}

.career-position-card .career-location {
  color: #707376;
  font-size: 14px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 6px;
  margin-bottom: 0;
}

.career-position-card .career-location i {
  font-size: 15px;
  color: #004E91;
}

.career-position-card .btn-apply {
  background-color: #004E91 !important;
  border-color: #004E91 !important;
  border-radius: 16px !important;
  color: #fff !important;
  transition: all 0.25s ease;
  margin-top: auto;
}

.career-position-card .btn-apply:hover {
  background-color: #fff !important;
  color: #004E91 !important;
  border-color: #004E91 !important;
}
/* Ürün Kodu etiketi - "Ürün Kodu:" */
.product-info-small .code {
    font-family: 'Nunito', sans-serif;
    font-weight: 600;
    font-size: 18px;
    line-height: 20px;
    color: #000000;
}

/* Ürün Kodu değeri (numara) */
.product-info-small .code span {
    font-family: 'Nunito', sans-serif;
    font-weight: 500;
    font-size: 18px;
    line-height: 20px;
    color: #1F1F1F;
}

/* Ürün Adı */
.product-info-small .name {
    font-family: 'Nunito', sans-serif;
    font-weight: 400;
    font-size: 20px;
    line-height: 24px;
    color: #1F1F1F;
}

/* "1 Seri 6 Ürün Toplamı:" */
.sticky-summary-title {
    font-family: 'Nunito', sans-serif;
    font-weight: 100 !important;
    font-size: 18px;
    line-height: 20px;
    color: #000000;
}

/* ₺1.249 / adet */
.price-sticky {
    font-family: 'Nunito', sans-serif;
    font-weight: 400;
    font-size: 24px;
    line-height: 1;
    color: #1F1F1F;
}

/* Kdv dahil */
.sticky-summary-sub {
    font-family: 'Nunito', sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 1;
    color: #696C70;
    text-align: right;
}
.sticky-bottom-bar .product-info-small .code {
    font-weight: 400 !important;
    font-family: 'Nunito', sans-serif;
}

.sticky-bottom-bar .product-info-small .code span {
    font-weight: 400 !important;
    font-family: 'Nunito', sans-serif;
    color: #1F1F1F;
}
.product-info-small .code {
    font-weight: 400 !important;
    font-family: 'Nunito', sans-serif;
    color: #000000;
    font-size: 18px;
}

.product-info-small .code span {
    font-weight: 400 !important;
    font-family: 'Nunito', sans-serif;
    color: #1F1F1F;
}

.price-sticky,
.price-sticky span {
    font-weight: 400 !important;
    font-family: 'Nunito', sans-serif;
    font-size: 24px;
    color: #1F1F1F;
}


.product-info-small .code span {
    color: #696C70 !important;
}
.product-info-small .code span,
.price-sticky,
.price-sticky span {
    font-family: BlinkMacSystemFont, 'Segoe UI', sans-serif !important;
    font-weight: 400 !important;
}
.product-info-small .name {
    font-family: BlinkMacSystemFont, 'Segoe UI', sans-serif !important;
    font-weight: 400 !important;
}
.price-sticky,
.price-sticky span {
    font-size: 28px !important;
    width: 152px;
    height: 33px;
}

/* ── Kalp butonu (pc-wishlist-btn) ── */
.pc-wishlist-btn {
  background: #fff !important;
  color: #6B7280 !important;
  border-color: #EEEEEE !important;
}
.pc-wishlist-btn i {
  color: #6B7280 !important;
}
.pc-wishlist-btn.is-active {
  background: #053F70 !important;
  color: #fff !important;
  border-color: #053F70 !important;
}
.pc-wishlist-btn.is-active i {
  color: #fff !important;
}
.pc-wishlist-btn:hover,
.pc-wishlist-btn.is-active:hover {
  background: #053F70 !important;
  color: #fff !important;
  border-color: #053F70 !important;
}
.pc-wishlist-btn:hover i,
.pc-wishlist-btn.is-active:hover i {
  color: #fff !important;
}

/* Aktif favori butonu: ikon kesinlikle beyaz (mavi arka plan üstünde) */
.pc-wishlist-btn.is-active {
  background: #053F70 !important;
  color: #fff !important;
  border-color: #053F70 !important;
}
.pc-wishlist-btn.is-active i,
.pc-wishlist-btn.is-active i::before {
  color: #fff !important;
  filter: none !important;
}
.nx-blog-sidebar-sticky{
  position:sticky;
  top:95px;
  border:1px solid #f2f2f2;
  border-radius:12px;
  overflow:hidden;
}

@media (max-width:991px){
  .nx-blog-sidebar-sticky{
    position:static;
  }
}
section.nx-blog-detail{
  overflow:visible;
}
.product-action-cart{
  display:grid;
  grid-template-columns:1.05fr .95fr;
  min-height:calc(100vh - 36px);
  font-family:'Nunito', sans-serif;
}

.product-action-cart__suggestions{
  padding:40px;
  border-right:1px solid #F2F2F2;
  overflow:auto;
}

.product-action-cart h4{
  color:#000000;
  font-family:'Nunito', sans-serif;
  font-size:24px;
  line-height:33px;
  font-weight:700;
  margin-bottom:24px;
}

.product-action-cart__suggest-list{
  display:grid;
  gap:0;
}

.product-action-suggest{
  display:grid;
  grid-template-columns:120px minmax(0, 1fr);
  grid-template-rows:auto auto;
  align-items:center;
  gap:0 24px;
  padding:18px 0;
  border-bottom:1px solid #F2F2F2;
}

.product-action-suggest img{
  grid-column:1;
  grid-row:1 / 3;
  width:120px;
  height:100%;
  min-height:140px;
  border-radius:16px;
  object-fit:cover;
  object-position:top center;
  background:#f4f6f8;
  align-self:stretch;
}

.product-action-suggest > div:not(.product-action-suggest__actions){
  grid-column:2;
  grid-row:1;
  align-self:end;
}

.product-action-suggest strong{
  display:block;
  color:#000000;
  font-family:'Nunito', sans-serif;
  font-size:17px;
  line-height:24px;
  font-weight:600;
}

.product-action-suggest em{
  display:block;
  margin-top:14px;
  color:#000000;
  font-family:'Nunito', sans-serif;
  font-size:20px;
  line-height:28px;
  font-style:normal;
  font-weight:700;
}

.product-action-suggest em .suggest-price-unit{
  font-weight:400;
}

.product-action-suggest__actions{
  grid-column:2;
  grid-row:2;
  display:flex;
  align-items:center;
  gap:12px;
  margin-top:14px;
  align-self:start;
}

.product-action-suggest button{
  width:36px;
  height:36px;
  min-width:36px;
  padding:0;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  border:1px solid #EEEEEE;
  border-radius:50%;
  background:#FFFFFF;
  color:#374957;
  font-size:0;
  cursor:pointer;
  transition:all .2s ease;
}

.product-action-suggest button i{
  color:#374957;
  font-size:12px;
  line-height:1;
  display:flex;
  align-items:center;
  justify-content:center;
  width:12px;
  height:12px;
}

.product-action-suggest button:hover{
    background:#053F70;
  border-color:#053F70;

}

.product-action-suggest button:hover i{
      color:#FFFFFF;


}

.product-action-cart__panel{
  display:flex;
  flex-direction:column;
  min-width:0;
  padding:30px;
  overflow:visible;
  height:100%;
  max-height:calc(100vh - 36px);
}

.product-action-cart__head{
  background:#F3F7FA;
  margin:-30px -30px 0 -30px;
  padding:20px 30px;
  display:flex;
  align-items:center;
  min-height:64px;
}

.product-action-cart__head h4{
  padding-right:0;
  margin:0;
  align-self:center;
}

.product-action-cart__notice{
  display:flex;
  align-items:center;
  gap:12px;
  padding:16px;
  border-radius:16px;
  background:#eef4ff;
  color:#004E91;
  font-family:'Nunito', sans-serif;
  font-weight:600;
}

.product-action-cart__notice i{
  color:#ef4444;
  font-size:24px;
}

.product-action-cart__shipping{
  margin:18px 0;
}

.product-action-cart__shipping strong{
  display:block;
  color:#000000;
  font-family:'Nunito', sans-serif;
  font-weight:600;
  font-size:16px;
  margin-bottom:10px;
}

.product-action-cart__shipping div{
  height:6px;
  border-radius:999px;
  background:#e5e7eb;
  overflow:hidden;
}

.product-action-cart__shipping span{
  display:block;
  height:100%;
  border-radius:inherit;
  background:#004E91;
}

.product-action-cart__items{
  flex:1;
  min-height:0;
  overflow-y:auto;
  overflow-x:hidden;
  margin-top:18px;
  padding-right:6px;
}

.product-action-cart-item{
  position:relative;
  display:grid;
  grid-template-columns:128px minmax(0, 1fr);
  align-items:stretch;
  column-gap:24px;
  row-gap:0;
  padding:0;
  margin-bottom:30px;
  border-bottom:none;
}

.cart-item-img-wrap{
  grid-column:1;
  grid-row:1 / 3;
  width:128px;
  height:170px;
  background:#f4f6f8;
  border-radius:16px 16px 0 0;
  overflow:hidden;
  align-self:start;
  display:block;
  cursor:pointer;
}

.cart-item-title{
  display:block;
  color:inherit;
  text-decoration:none;
}

.cart-item-title:hover strong{
  text-decoration:underline;
}

.cart-item-img-wrap img{
  width:100%;
  height:100%;
  object-fit:contain;
  object-position:center;
  display:block;
}

.product-action-cart-item img{
  width:100%;
  height:100%;
  border-radius:16px 16px 0 0;
  object-fit:contain;
  object-position:center;
  background:#f4f6f8;
}

.product-action-cart-item strong,
.product-action-cart-item span,
.product-action-cart-item em{
  display:block;
}

.product-action-cart-item strong{
  color:#000000;
  font-family:'Nunito', sans-serif;
  font-size:16px;
  line-height:22px;
  font-weight:600;
  margin-bottom:8px;
}

.product-action-cart-item em{
  color:#000000;
  font-family:'Nunito', sans-serif;
  font-size:16px;
  line-height:22px;
  font-style:normal;
  font-weight:700;
}

.product-action-cart-item > button{
  align-self:center;
  width:34px;
  height:34px;
  min-width:34px;
  padding:0;
  display:flex;
  align-items:center;
  justify-content:center;
  border:1px solid #EEEEEE;
  border-radius:50%;
  background:#FFFFFF;
  color:#FF0B0F;
  font-size:0;
  cursor:pointer;
  transition:all .2s ease;
}

.product-action-cart-item > button i{
  color:#FF0B0F;
  font-size:14px;
  line-height:1;
}

.product-action-cart-item > button:hover{
  border-color:#FF0B0F;
}

.cart-item-price-row{
  display:flex;
  align-items:baseline;
  justify-content:flex-end;
  gap:10px;
  margin-top:20px;
  background:#F3F5F6;
  border-radius:4px;
  padding:8px;
  width:100%;
}

.cart-item-price-row--full{
  grid-column: 1 / -1;
  margin-top:0;
}

.cart-item-price-row .cart-item-price-label{
  font-family:'Nunito', sans-serif;
  font-weight:500;
  font-size:16px;
  line-height:22px;
  letter-spacing:0;
  color:#000000;
}

.cart-item-price-row em{
  margin-top:0 !important;
  color:#000000;
  font-family:'Nunito', sans-serif;
  font-size:16px;
  line-height:22px;
  font-style:normal;
  font-weight:700;
  min-width:100px;
  text-align:right;
}

.product-action-cart__tools{
  display:grid;
  grid-template-columns:repeat(2, 1fr);
  gap:0;
  margin:24px -30px 0;
  border-top:1px solid #F2F2F2;
  border-bottom:1px solid #F2F2F2;
  background:#FFFFFF;
}

.product-action-cart__tools button{
  border:0;
  background:transparent;
  color:#000000;
  padding:16px 8px;
  display:flex;
  align-items:center;
  justify-content:center;
  gap:8px;
  font-family:'Nunito', sans-serif;
  font-weight:600;
  cursor:pointer;
}

.product-action-cart__tools button.is-active,
.product-action-cart__tools button:hover{
  color:#004E91;
  background:#F3F5F6;
}

.product-action-cart__tool-panel{
  display:none;
  margin:14px 0 0;
  padding:14px;
  border:1px solid #F2F2F2;
  border-radius:16px;
  background:#F3F5F6;
}

.product-action-cart__tool-panel:not(:empty){
  display:block;
}

.product-action-cart__tool-panel label{
  display:block;
  color:#000000;
  font-family:'Nunito', sans-serif;
  font-weight:700;
  margin-bottom:8px;
}

.product-action-cart__tool-panel textarea,
.product-action-cart__tool-panel input{
  width:100%;
  border:1px solid #F2F2F2;
  border-radius:12px;
  background:#FFFFFF;
  padding:11px 12px;
  outline:0;
}

.product-action-cart__tool-panel textarea{
  min-height:82px;
  resize:vertical;
}

.cart-tool-row{
  display:grid;
  grid-template-columns:minmax(0, 1fr) auto;
  gap:8px;
}

.product-action-cart__tool-panel button{
  border:0;
  border-radius:12px;
  background:#004E91;
  color:#FFFFFF;
  padding:11px 14px;
  font-family:'Nunito Sans', sans-serif;
  font-weight:400;
  cursor:pointer;
}

.product-action-cart__tool-panel > button{
  margin-top:8px;
}

.product-action-cart__tool-panel span{
  display:block;
  margin-top:8px;
  color:#696C70;
  font-size:13px;
}

.product-action-cart__footer{
  background:#F3F7FA;
  margin-top:24px;
  margin-left:-30px;
  margin-right:-30px;
  margin-bottom:-30px;
  padding:20px 30px 30px;
}

.product-action-cart__total{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:24px;
  color:#000000;
  font-family:'Nunito', sans-serif;
}

.product-action-cart__total span{
  font-weight:500;
  font-size:20px;
  line-height:27px;
}

.product-action-cart__total strong{
  font-weight:700;
  font-size:20px;
  line-height:27px;
}

.product-action-cart__actions{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:16px;
  margin-top:24px;
}

.product-action-cart__actions a{
  min-height:42px;
  padding:10px 24px;
  border-radius:12px;
  border:1px solid #e4e8ef;
  display:flex;
  align-items:center;
  justify-content:center;
  text-decoration:none;
  color:#4b5563;
  background:#fff;
  font-family:'Nunito Sans', sans-serif;
  font-weight:400;
  font-size:16px;
  line-height:22px;
  cursor:pointer;
  transition:all .2s ease;
}

.product-action-cart__actions a:last-child{
  background:var(--bg-primary);
  color:#fff;
  border-color:transparent;
}

.product-action-cart__actions a:hover{
  background:#f4f7fb;
  border-color:#cfd8e6;
  color:#4b5563;
}
.product-action-cart__actions a:last-child:hover{
  background:var(--bg-secondary);
  border-color:transparent;
  color:#fff;
}

.product-action-cart__continue{
  border:1px solid #e4e8ef;
  border-radius:12px;
  background:#fff;
  color:#4b5563;
  padding:10px 0;
  font-family:'Nunito Sans', sans-serif;
  font-weight:400;
  font-size:16px;
  cursor:pointer;
  margin-top:15px;
  display:flex;
  align-items:center;
  justify-content:center;
  width:100%;
  transition:all .2s ease;
}
.product-action-cart__continue:hover{
  background:#f4f7fb;
  border-color:#cfd8e6;
}
.custom-quantity{
  display:flex;
  align-items:center;
  gap:8px;
  width:179px;
  max-width:100%;
  height:34px;
  padding:10px 16px;
  border:1px solid #F2F2F2;
  border-radius:16px;
  background:#FFFFFF;
}

.custom-quantity .cart-input{
  flex:1;
  min-width:24px;
  width:auto;
  height:auto;
  text-align:center;
  border:0;
  border-radius:0;
  background:transparent;
  padding:0;
  font-family:'Nunito', sans-serif;
  font-size:14px;
  line-height:19px;
  font-weight:600;
  color:#696C70;
}

.custom-quantity .cart-minus,
.custom-quantity .cart-plus{
  width:18px;
  height:18px;
  min-width:18px;
  display:flex;
  align-items:center;
  justify-content:center;
  background:transparent;
  border:0;
  border-radius:0;
  font-size:18px;
  line-height:1;
  cursor:pointer;
  user-select:none;
  color:#696C70;
}

.custom-quantity .cart-minus:hover,
.custom-quantity .cart-plus:hover{
  color:#004E91;
}

.custom-quantity .cart-minus.is-disabled{
  opacity:.35;
  cursor:not-allowed;
  pointer-events:none;
}
.product-action-cart-item strong,
.product-action-cart-item em{
  display:block;
}

.product-action-cart-item > div > span{
  display:block;
  margin-top:4px;
  color:#98999C;
  font-family:'Nunito', sans-serif;
  font-size:14px;
  line-height:19px;
  font-weight:400;
}

.product-action-cart-item .custom-quantity{
  margin-top:12px;
}
.product-action-cart .product-action-suggest strong{
  font-family:'Nunito', sans-serif;
  font-weight:400;
  font-size:16px;
  line-height:22px;
  letter-spacing:0;
  min-height:44px;
  max-width:80%;
  display:-webkit-box;
  -webkit-line-clamp:2;
  line-clamp:2;
  -webkit-box-orient:vertical;
  overflow:hidden;
}
.cart-item-qty-row > button{
  margin-left:auto;
  width:34px;
  height:34px;
  min-width:34px;
  padding:0;
  display:flex;
  align-items:center;
  justify-content:center;
  border:1px solid #EEEEEE;
  border-radius:50%;
  background:#FFFFFF;
  color:#FF0B0F;
  font-size:0;
  cursor:pointer;
  transition:all .2s ease;
}

.cart-item-qty-row > button i{
  color:#FF0B0F;
  font-size:14px;
  line-height:1;
  display:flex;
  align-items:center;
  justify-content:center;
}

.cart-item-qty-row > button i::before{
  display:block;
  line-height:1;
}

.cart-item-qty-row > button:hover{
  border-color:#053F70;
  background:#053F70;
}

.cart-item-qty-row > button:hover i{
  color:#FFFFFF;
}
.cart-item-qty-row{
  display:flex !important;
  flex-direction:row !important;
  align-items:center;
  flex-wrap:nowrap;
  gap:8px;
  margin-top:12px;
}

.cart-item-qty-row .cart-item-adet{
  flex:0 0 auto;
}

.cart-item-qty-row .custom-quantity{
  flex:0 0 auto !important;
  margin-top:0;
  width:auto !important;
  min-width:0 !important;
}

@media (max-width: 768px){
  .cart-item-qty-row{
    flex-wrap:nowrap !important;
    gap:4px !important;
    margin-top:8px !important;
  }

  .cart-item-qty-row .cart-item-adet{
    font-size:12px;
    flex:0 0 auto;
  }

  .cart-item-qty-row .custom-quantity{
    gap:2px !important;
    padding:4px 8px !important;
    height:28px !important;
    border-radius:10px !important;
    flex:0 0 auto !important;
    width:auto !important;
  }

  .cart-item-qty-row .cart-input{
    font-size:13px !important;
    min-width:18px !important;
    max-width:28px !important;
  }

  .cart-item-qty-row .cart-minus,
  .cart-item-qty-row .cart-plus{
    font-size:15px !important;
    width:12px !important;
    min-width:12px !important;
  }

  .cart-item-qty-row > button{
    width:28px !important;
    height:28px !important;
    min-width:28px !important;
    margin-left:4px !important;
  }

  .cart-item-qty-row > button i{
    font-size:12px !important;
  }
}

.cart-item-qty-row > button{
  flex:0 0 auto;
  margin-left:8px;
}
.custom-quantity{
  width:auto;
  flex:1;
  min-width:0;
}

/* Sepet kartı grid düzeni */
.product-action-cart-item{
  grid-template-columns:128px minmax(0,1fr);
  grid-template-rows:auto auto;
  align-items:start;
  row-gap:16px;
}

.product-action-cart-item > .cart-item-img-wrap{
  grid-column:1;
  grid-row:1 / 3;
  height:100%;
  align-self:stretch;
  position:relative;
  z-index:1;
}

.product-action-cart-item > .cart-item-content{
  grid-column:2;
  grid-row:1;
  min-width:0;
  align-self:start;
}

.product-action-cart-item > .cart-item-price-row{
  grid-column:1 / -1;
  grid-row:2;
  width:100%;
  box-sizing:border-box;
  align-self:end;
}

.product-action-cart-item strong,
.product-action-cart-item > div > span{
  word-break:break-word;
  overflow-wrap:break-word;
}

.cart-item-qty-row{
  flex-wrap:nowrap;
  max-width:100%;
}

.cart-item-qty-row .custom-quantity{
  min-width:0;
  flex:1 1 auto;
  max-width:150px;
}

.cart-item-price-row{
  width:100%;
  box-sizing:border-box;
  flex-shrink:0;
}

.product-action-cart__panel{
  padding:30px;
}

.faq-section.section-py { padding-top: var(--space-section) !important; }
.blog-list-section.section-py,
.blog-detail.section-py { padding-top: calc(var(--space-section) * 2) !important; }
.basket-toolbar__search .fi-rr-search::before {
    color: #495057;
}
button[onclick="saveCartNote(this)"]:hover {
    background-color: #CBE0F2 !important;
    color: rgb(0, 78, 145) !important;
}
/* Sağ taraftaki banner alanı */
.mega-banners {
    flex: 0 0 420px !important;
    width: 500px !important;
    gap: 20px !important;
    margin-left: auto !important;
    margin-right: auto !important;
    align-self: stretch !important;
}
@media (max-width: 1399px) {
    .mega-banners { flex: 0 0 300px !important; width: 300px !important; align-self: start !important; gap: 16px !important; margin-left: auto !important; margin-right: auto !important; }
}
@media (max-width: 1199px) {
    .mega-banners { flex: 0 0 240px !important; width: 240px !important; align-self: start !important; gap: 12px !important; margin-left: auto !important; margin-right: auto !important; }
    .mega-banner-card { min-height: 140px !important; }
    .mega-banner-card__title { font-size: 14px !important; }
    .mega-banner-card__desc { font-size: 12px !important; }
    .mega-banner-card__content { padding: 14px 12px !important; }
}
@media (max-width: 991px) {
    .mega-banners { flex: 1 1 auto !important; width: 100% !important; flex-direction: row !important; align-self: auto !important; }
    .mega-banner-card { min-height: 110px !important; }
    .mega-banner-card__title { font-size: 16px !important; }
    .mega-banner-card__desc { font-size: 13px !important; }
    .mega-banner-card__content { padding: 16px !important; }
}

/* Kartın genel yüksekliği, arkaplanı ve köşe ovalliği */
.mega-banner-card {
    min-height: 180px !important; /* 110px'den 180px'e çıkardık */
    border-radius: 20px !important;
    background: rgba(178,202,222,0.30) !important;
}

/* Kartın içerik (sol taraf) boşlukları */
.mega-banner-card__content {
    padding: 30px 24px !important; 
    gap: 8px !important;
    justify-content: center !important;
}

/* "Koleksiyon / Yaz Fırsatı" Etiket tasarımı */
.mega-banner-card__badge {
    font-size: 12px !important;
    padding: 6px 14px !important;
    background: #DDE5EE !important;
    color: #1B3B60 !important;
    border-radius: 999px !important;
    margin-bottom: 6px !important;
    font-weight: 600 !important;
}

/* Başlık ve Açıklama Boyutları */
.mega-banner-card__title {
    font-size: 18px !important;
    font-weight: 800 !important;
    color: #111827 !important;
    margin-bottom: 2px !important;
    white-space: nowrap !important;
    overflow: visible !important;
    text-overflow: unset !important;
}

.mega-banner-card__desc {
    font-size: 14px !important;
    color: #555555 !important;
    line-height: 1.4 !important;
}

/* "Keşfet ->" link tasarımı (Altı düz çizgili) */
.mega-banner-card__link {
    font-size: 14px !important;
    font-weight: 700 !important;
    color: #111827 !important;
    text-decoration: none !important;
    border-bottom: 1.5px solid #111827 !important;
    padding-bottom: 2px !important;
    width: fit-content !important;
    margin-top: 6px !important;
    
}
.mega-banner-card__link:hover {
      border-bottom-color: #053F70 !important;
      transform:translateX(2px);


}
/* Fotoğraftaki sağ görselin genişliğini büyütme (90px'den 160px'e) */
.mega-banner-card__img {
    width: 180px !important;
    height: auto !important;
    max-height: 300px !important;
    object-position: center center !important;
    object-fit: cover !important;
    align-self: center !important;
}

.mega-banner-card:hover .mega-banner-card__img {
    transform: scale(1.04) !important;
}
.category-separator {
    width: 92px !important; 
    height: 22px !important;
    background: #696C70;
    opacity: 1;
    align-self: center; 
}
.right-side-container {
    background: #B2CADE4D !important; /* 4D, yaklaşık %30 opaklık demektir */
    
    display: flex;
    flex-direction: row; /* Yan yana dizilim */
    flex-wrap: nowrap;   /* Kesinlikle alt satıra geçmesini engeller */
    align-items: center; /* İçerikleri dikey eksende ortalar */
    
    gap: 16px; 
    
    overflow-x: auto; 
}

.right-side-container > * {
    white-space: nowrap; 
}

/* ── Favori sidebar açıkken sticky bottom bar gizle ── */
body.wishlist-slide-open .sticky-bottom-bar,
body.wishlist-slide-open .sticky-bottom-bar-long {
  transform:translateY(120%) !important;
  opacity:0 !important;
  pointer-events:none !important;
}


.tab-content-text--scrollable {
  max-height: 240px;
  overflow-y: auto;
}

.tab-content-text > *:first-child {
  margin-top: 0;
}

.tab-content-text > *:last-child {
  margin-bottom: 0;
}

/* Vergi Dairesi - input aktifken ok ikonunu gizle */
.account-input-select-wrapper [data-tax-office-input]:not([style*="display: none"]) ~ [data-tax-office-icon],
.account-input-select-wrapper [data-tax-office-input]:not([disabled]) ~ [data-tax-office-icon] {
  display: none;
}

/* Filter sidebar sticky */
section.product-list-section {
  overflow: visible;
}

.filter-sidebar-sticky {
  position: sticky;
  top: 95px;
}

@media (max-width: 991px) {
  .filter-sidebar-sticky {
    position: static;
  }
}

.blog-cat-btn {
  text-decoration: none;
}
.blog-cat-btn:hover {
  text-decoration: none;
}
.account-box-body{
  padding:0 0px 0px !important;
}
.bank-form input::placeholder,
.bank-form textarea::placeholder,
.bank-form select::placeholder,
.account-input::placeholder{
  color:#c6c6c6 !important;
  opacity:1;
}

.legal-footer-box a {
  color: rgb(0, 78, 145);
  text-decoration: none;
}
.legal-footer-box a:hover {
  text-decoration: underline;
}

/* indirimli kart: strong + del + "/ Paket" üst üste gelmesin */
.product-bottom .price:has(del) {
  flex-direction: column !important;
  align-items: flex-start !important;
  gap: 1px !important;
  white-space: normal !important;
  overflow: visible !important;
}

/* ── Yeni Gelen Ürünler (5'li swiper) – özel boyutlar ─────────────────────
   5 kart yan yana gösterildiğinde kartlar dar kalır; fiyat + ikonların
   aynı satırda kalması için font ve buton boyutları küçültülür.
   ───────────────────────────────────────────────────────────────────────── */
.new-arrivals-swiper-wrap .product-card {
  --btn-size:        clamp(28px, 3.2vw, 44px);
  --btn-icon:        clamp(11px, 1.1vw, 14px);
  --price-fs:        clamp(11px, 1.2vw, 14px);
  --price-strong-fs: clamp(13px, 1.5vw, 17px);
  --price-label-fs:  clamp(9px, 0.85vw, 11px);
  --price-del-fs:    clamp(10px, 1vw, 13px);
}

/* product-bottom: tek satır, taşma yok */
.new-arrivals-swiper-wrap .product-bottom {
  display: flex !important;
  flex-wrap: nowrap !important;
  align-items: center !important;
  justify-content: space-between !important;
  gap: clamp(3px, 0.3vw, 6px) !important;
  overflow: hidden;
}

/* fiyat alanı: küçük font, tek satır */
.new-arrivals-swiper-wrap .product-bottom .price {
  font-size: var(--price-fs) !important;
  white-space: nowrap !important;
  flex-shrink: 1 !important;
  min-width: 0 !important;
  margin-top: 0 !important;
  line-height: 1.1;
  overflow: hidden;
  text-overflow: ellipsis;
  /* indirimli kart için sütun modunu iptal et, tek satır kal */
  flex-direction: row !important;
  align-items: center !important;
  gap: clamp(2px, 0.25vw, 4px) !important;
}

/* ana fiyat (strong) */
.new-arrivals-swiper-wrap .product-bottom .price strong {
  font-size: var(--price-strong-fs) !important;
  white-space: nowrap;
  line-height: 1;
}

/* price-amounts satırı */
.new-arrivals-swiper-wrap .product-bottom .price .price-amounts {
  display: flex !important;
  flex-direction: column !important;
  align-items: flex-start !important;
  gap: 0 !important;
  min-width: 0;
  overflow: hidden;
}

.new-arrivals-swiper-wrap .product-bottom .price .price-current {
  display: flex !important;
  flex-wrap: nowrap !important;
  align-items: center !important;
  gap: clamp(2px, 0.25vw, 4px) !important;
}

/* üstü çizili liste fiyatı – küçük göster */
.new-arrivals-swiper-wrap .product-bottom .price .price-amounts del {
  display: block !important;
  font-size: var(--price-del-fs) !important;
  line-height: 1.1 !important;
  white-space: nowrap;
}

/* "/ Paket" etiketi */
.new-arrivals-swiper-wrap .product-bottom .price .price-label,
.new-arrivals-swiper-wrap .product-bottom .price .price-amounts .price-label {
  font-size: clamp(11px, 1.1vw, 14px) !important;
  white-space: nowrap;
  flex-shrink: 0;
}

/* aksiyon butonları: küçük ama kare değil yuvarlak, flex-shrink:0 */
.new-arrivals-swiper-wrap .product-bottom .actions {
  display: flex !important;
  flex-direction: row !important;
  flex-wrap: nowrap !important;
  flex-shrink: 0 !important;
  gap: clamp(3px, 0.3vw, 5px) !important;
}

.new-arrivals-swiper-wrap .product-bottom .actions button,
.new-arrivals-swiper-wrap .product-bottom .actions a {
  flex: 0 0 var(--btn-size) !important;
  width:  var(--btn-size) !important;
  height: var(--btn-size) !important;
  min-width:  var(--btn-size) !important;
  min-height: var(--btn-size) !important;
  padding: 0 !important;
}

.new-arrivals-swiper-wrap .product-bottom .actions i,
.new-arrivals-swiper-wrap .product-bottom .actions img {
  font-size: var(--btn-icon) !important;
  width:  var(--btn-icon) !important;
  height: var(--btn-icon) !important;
}

.new-arrivals-swiper-wrap .product-card .product-title {
  margin-bottom: 1px !important;
}

.new-arrivals-swiper-wrap .product-card .color-swatches {
  margin-top: 0 !important;
  margin-bottom: 0 !important;
}

.new-arrivals-swiper-wrap .product-card .product-bottom {
  margin-top: 0 !important;
}

@media (max-width: 991px) {
  .new-arrivals-swiper-wrap .product-card {
    height: auto !important;
    justify-content: flex-start !important;
  }
}

/* ── mobil (≤ 991px): tek/3'lü görünümde büyütmeye gerek yok ── */
@media (max-width: 991px) {
  .new-arrivals-swiper-wrap .product-card {
    --btn-size:        clamp(26px, 7vw, 36px);
    --btn-icon:        clamp(10px, 3vw, 14px);
    --price-fs:        clamp(9px, 2.5vw, 12px);
    --price-strong-fs: clamp(11px, 3.2vw, 15px);
    --price-label-fs:  clamp(8px, 2vw, 10px);
  }
}

/* ── Banka Hesaplarımız sayfası – logo ve layout ── */
.bank-page .bank-logo {
  width: 160px !important;
  height: 80px !important;
  object-fit: contain;
  object-position: center;
  flex-shrink: 0;
  align-self: center;
}

@media (max-width: 575.98px) {
  .bank-page .bank-logo {
    width: 120px !important;
    height: 60px !important;
  }
}
.product-bottom .price .price-amounts .price-label{
  white-space:nowrap;
  flex-shrink:0;
}

.product-bottom .price .price-amounts del{
  display:block;
  font-size:15px !important;
  line-height:1;
  padding:0;
  margin:0 0 -4px 0;
}

.product-bottom .price .price-amounts del.price-del-hidden{
  visibility:hidden;
}
/* ── Bildirim tablosu – mobilde scroll kaldır, sütunlar sığdır ───────────── */
@media (max-width: 575.98px) {
  .notification-table {
    overflow-x: visible !important;
  }
  .notification-table table {
    min-width: 0 !important;
    width: 100%;
    table-layout: fixed;
  }
  .notification-table th,
  .notification-table td {
    padding: 12px 8px !important;
  }
  .notification-table th:first-child,
  .notification-table td:first-child {
    width: auto;
    word-break: break-word;
  }
  .notification-table th:not(:first-child),
  .notification-table td:not(:first-child) {
    width: 52px;
    min-width: 52px;
    padding: 12px 4px !important;
    font-size: 11px !important;
    white-space: nowrap;
  }
  .notification-table strong {
    font-size: 13px !important;
  }
  .notification-table p {
    font-size: 11px !important;
  }
}

/* ── Hesap tabloları – boş durum metni mobil responsive ─────────────────── */
@media (max-width: 575.98px) {
  .account-table-header,
  .account-table-item {
    min-width: 0 !important;
    width: 100%;
    box-sizing: border-box;
  }
  .account-table {
    overflow-x: visible;
  }
  /* HTML tablo boş td */
  .account-table td[colspan],
  td.text-center[colspan] {
    white-space: normal !important;
    word-break: break-word;
  }
}

/* ── Ödeme bildirim formu – select taşma düzeltmesi (mobil) ──────────────── */
@media (max-width: 575.98px) {
  .bank-form {
    padding: 16px !important;
  }
  .bank-form select.account-input,
  .bank-form select {
    max-width: 100%;
    box-sizing: border-box;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    padding-right: 40px !important;
  }
  .bank-form .account-input-select-wrapper {
    max-width: 100%;
    overflow: hidden;
    border-radius: 12px;
  }
}

/* ── Favori sidebar mobil düzeltmesi ─────────────────────────────────────── */
@media (max-width: 575.98px) {
  .wishlist-slide__body {
    padding: 22px 18px 14px;
  }
  .wishlist-slide__body h3 {
    font-size: 22px;
    margin-bottom: 16px;
  }
  .wishlist-slide-item {
    grid-template-columns: 72px minmax(0, 1fr) 36px;
    gap: 10px;
    padding: 14px 0;
  }
  .wishlist-slide-item img,
  .wishlist-slide-item__placeholder {
    width: 72px;
    height: 84px;
  }
  .wishlist-slide-item strong {
    font-size: 14px;
  }
  .wishlist-slide-item em {
    font-size: 13px;
    margin-top: 4px;
  }
  .wishlist-slide__footer {
    padding: 14px 18px 18px;
    flex-direction: column;
    gap: 8px;
  }
  .wishlist-slide__footer a,
  .wishlist-slide__footer button {
    min-height: 46px;
    font-size: 14px;
  }
}

/* ── Navbar dil butonu ────────────────────────────────────────────────────── */
.nav-lang-btn::after { display: none !important; }
.nav-lang-btn { box-sizing: border-box !important; line-height: 1 !important; padding: 0 !important; }
.nav-lang-switcher { display: flex; align-items: center; }

@media (max-width: 991.98px) {
  .nav-lang-btn {
    width: 28px !important;
    height: 28px !important;
    min-width: 28px !important;
    min-height: 28px !important;
    max-width: 28px !important;
    max-height: 28px !important;
  }
  .nav-lang-btn img { width: 14px !important; height: 9px !important; }
}
