/* ==========================================================
   REGOLA PRODUCT SYSTEM
========================================================== */

:root{
  --regola-red:#d02e2f;
  --regola-black:#0a0a0a;
  --regola-text:#4b4b4b;
  --regola-muted:#777;
  --regola-bg:#f5f5f5;
  --regola-white:#fff;
  --regola-border:#e8e8e8;
  --regola-radius:10px;
  --regola-shadow:0 12px 32px rgba(0,0,0,.08);
}

/* GENERAL */
.regola-page{
  background:#fff;
}

.regola-container{
  width:min(1400px, calc(100% - 40px));
  margin:0 auto;
}

.regola-eyebrow,
.regola-va-label{
  display:inline-block;
  color:var(--regola-red);
  font-size:12px;
  font-weight:800;
  letter-spacing:1.8px;
  text-transform:uppercase;
  margin-bottom:12px;
}

/* ==========================================================
   HOME / ELEMENTOR VERTICAL CATEGORY ACCORDION
========================================================== */

.regola-vertical-accordion{
  display:flex;
  gap:8px;
  height:620px;
  width:100%;
  overflow:hidden;
}

.regola-va-item{
  position:relative;
  flex:.55;
  background-size:cover;
  background-position:center;
  border-radius:4px;
  overflow:hidden;
  cursor:pointer;
  transition:flex .55s ease;
}

.regola-va-item.active{
  flex:4;
}

.regola-va-overlay{
  position:absolute;
  inset:0;
  background:linear-gradient(90deg, rgba(10,10,10,.86), rgba(10,10,10,.48), rgba(10,10,10,.18));
  z-index:1;
}

.regola-va-side-title{
  position:absolute;
  top:50%;
  left:50%;
  width:420px;
  text-align:center;
  transform:translate(-50%, -50%) rotate(-90deg);
  z-index:3;
  color:#fff;
  font-size:14px;
  font-weight:800;
  letter-spacing:1.5px;
  white-space:nowrap;
  text-transform:uppercase;
}

.regola-va-item.active .regola-va-side-title{
  opacity:0;
  visibility:hidden;
}

.regola-va-content{
  position:absolute;
  left:42px;
  right:42px;
  bottom:45px;
  z-index:3;
  max-width:520px;
  color:#fff;
  opacity:0;
  visibility:hidden;
  transform:translateY(18px);
  transition:.35s ease .12s;
}

.regola-va-item.active .regola-va-content{
  opacity:1;
  visibility:visible;
  transform:translateY(0);
}

.regola-va-content h3{
  color:#fff;
  font-size:34px;
  line-height:1.15;
  margin:0 0 15px;
  font-weight:800;
}

.regola-va-desc{
  color:rgba(255,255,255,.84);
  font-size:15px;
  line-height:1.6;
  margin-bottom:24px;
}

.regola-va-content a{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:12px 24px;
  border-radius:999px;
  background:var(--regola-red);
  color:#fff;
  font-size:14px;
  font-weight:700;
  text-decoration:none;
  transition:.25s ease;
}

.regola-va-content a:hover{
  background:#fff;
  color:var(--regola-black);
}

@media (max-width: 991px){
  .regola-va-desc{
    display:none !important;
  }

  .regola-va-content h3{
    margin-bottom:14px;
    font-size:26px;
    line-height:1.15;
  }

  .regola-va-content a{
    margin-top:0;
  }
  .regola-card-desc,
  .regola-category-card-desc{
    display:none !important;
  }
}
/* ==========================================================
   CATEGORY PAGE HERO
   Left image + right content
========================================================== */

/* CATEGORY HERO - BALANCED */
.regola-category-hero{
  padding:38px 0 30px;
  background:#f4f4f4;
}

.regola-category-hero-inner{
  width:calc(100% - 60px);
  margin:0 auto;
  display:grid;
  grid-template-columns:42% 58%;
  gap:26px;
  align-items:stretch;
}

.regola-category-hero-media,
.regola-category-hero-text{
  height:260px;
}

.regola-category-hero-image{
  width:100%;
  height:100%;
  border-radius:14px;
  overflow:hidden;
  background:#f7f7f7;
  box-shadow:0 10px 28px rgba(0,0,0,.05);
}

.regola-category-hero-image img{
  width:100%;
  height:100%;
  object-fit:cover;
  object-position:center;
  display:block;
}

.regola-category-hero-text{
  background:#fff;
  padding:30px 34px;
  border-left:4px solid #d02e2f;
  border-radius:14px;
  box-shadow:0 10px 28px rgba(0,0,0,.05);
  display:flex;
  flex-direction:column;
  justify-content:center;
}

.regola-category-hero-text h1{
  margin:0 0 12px;
  color:#0a0a0a;
  font-size:28px;
  line-height:1.15;
  font-weight:700;
}

.regola-term-short{
  font-size:14px;
  line-height:1.65;
  color:#333;
}

.regola-term-short p{
  margin:0;
}

/* ÜRÜNLER */
.regola-products-section{
  padding:30px 0 38px;
  background:#f4f4f4;
}

.regola-products-section .regola-content-full{
  width:calc(100% - 60px);
  margin:0 auto;
}

.regola-product-grid{
  display:grid;
  grid-template-columns:repeat(2, minmax(0, 1fr));
  gap:26px;
  align-items:stretch;
}

.regola-product-card{
  height:100%;
  border-radius:14px;
  overflow:hidden;
}

.regola-product-card-link{
  height:100%;
  display:grid;
  grid-template-columns:48% 52%;
  align-items:stretch;
}

.regola-product-card-image{
  height:100%;
  min-height:340px;
}

.regola-product-card-image img{
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;
}

.regola-product-card-body{
  min-height:340px;
  height:100%;
  display:flex;
  flex-direction:column;
  padding:32px;
}

.regola-card-more{
  margin-top:auto;
}

/* UZUN AÇIKLAMA */
.regola-category-detail-text{
  padding:44px 0 56px;
  background:#fff;
}

.regola-category-detail-box{
  width:calc(100% - 60px);
  margin:0 auto;
  padding-top:28px;
  border-top:1px solid #e5e5e5;
  color:#333;
  font-size:14px;
  line-height:1.75;
}

.regola-category-detail-box p{
  margin:0 0 14px;
}

.regola-category-detail-box h2,
.regola-category-detail-box h3{
  margin:24px 0 12px;
  color:#0a0a0a;
  font-size:17px;
  line-height:1.3;
  font-weight:700;
}

.regola-category-detail-box li{
  margin-bottom:8px;
}

@media(max-width:900px){
  .regola-category-hero-inner,
  .regola-products-section .regola-content-full,
  .regola-category-detail-box{
    width:calc(100% - 24px);
  }

  .regola-category-hero-inner,
  .regola-product-card-link{
    grid-template-columns:1fr;
  }

  .regola-category-hero-media,
  .regola-category-hero-text{
    height:auto;
  }

  .regola-category-hero-image{
    height:230px;
  }

  .regola-category-hero-text,
  .regola-product-card-body{
    padding:26px;
  }

  .regola-product-card-image,
  .regola-product-card-body{
    min-height:auto;
  }

  .regola-product-card-image{
    height:240px;
  }
}
@media (max-width: 991px){

  .single-urunlerimiz .regola-single-layout,
  .single-urunlerimiz .regola-product-layout,
  .single-urunlerimiz .regola-product-wrap,
  .single-urunlerimiz .regola-product-main{
    display:flex;
    flex-direction:column;
  }

  .single-urunlerimiz .regola-product-content,
  .single-urunlerimiz .regola-main-content,
  .single-urunlerimiz .regola-content-area{
    order:1;
  }

  .single-urunlerimiz .regola-product-sidebar,
  .single-urunlerimiz .regola-sidebar,
  .single-urunlerimiz .regola-category-sidebar,
  .single-urunlerimiz aside{
    order:99;
    margin-top:24px;
  }
}
/* ==========================================================
   CATEGORY PRODUCT GRID
========================================================== */

.regola-products-section{
  padding:42px 0 72px;
  background:var(--regola-bg);
}

.regola-content-full{
  width:100%;
}

.regola-product-grid{
  display:grid;
  grid-template-columns:repeat(2, minmax(0, 1fr));
  gap:24px;
}

.regola-product-card{
  background:transparent;
  border:0;
  border-radius:8px;
  overflow:hidden;
  box-shadow:0 10px 28px rgba(0,0,0,.10);
  transition:.25s ease;
}

.regola-product-card:hover{
  transform:translateY(-3px);
  box-shadow:0 14px 34px rgba(0,0,0,.13);
}

.regola-product-card-link{
  display:grid;
  grid-template-columns:48% 52%;
  min-height:300px;
  text-decoration:none;
  color:inherit;
}

.regola-product-card-image{
  min-height:300px;
  height:100%;
  background:#ddd;
  overflow:hidden;
}

.regola-product-card-image img{
  display:block;
  width:100%;
  height:100%;
  object-fit:cover;
  padding:0;
  transform:none !important;
}

.regola-product-card-body{
  display:flex;
  flex-direction:column;
  background:#fff;
  padding:30px 34px;
}

.regola-product-card-body::before{
  display:none;
}

.regola-product-card h2{
  margin:0 0 14px;
  color:var(--regola-black);
  font-size:21px;
  line-height:1.22;
  font-weight:750;
}

.regola-card-desc{
  display:none;
}

.regola-card-features{
  margin:0 0 22px;
}

.regola-card-features ul{
  margin:0;
  padding:0;
  list-style:none;
}

.regola-card-features li{
  position:relative;
  padding-left:22px;
  margin-bottom:6px;
  color:#222;
  font-size:14px;
  line-height:1.55;
}

.regola-card-features li:before{
  content:"›";
  position:absolute;
  left:0;
  top:-2px;
  color:var(--regola-red);
  font-size:22px;
  font-weight:900;
  line-height:1;
}

.regola-card-more{
  margin-top:auto;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  width:max-content;
  gap:8px;
  padding:12px 22px;
  border-radius:40px;
  background:var(--regola-red);
  color:#fff;
  font-size:13px;
  font-weight:700;
  text-decoration:none;
  transition:.3s ease;
}

.regola-card-more:after{
  content:"→";
  transition:.3s ease;
}

.regola-product-card:hover .regola-card-more{
  background:var(--regola-black);
}

.regola-product-card:hover .regola-card-more:after{
  transform:translateX(4px);
}

.regola-empty{
  padding:30px;
  background:#fff;
  border:1px solid var(--regola-border);
  border-radius:var(--regola-radius);
  color:var(--regola-text);
}

.regola-category-card .regola-category-card-desc{
  display:block !important;
  margin:12px 0 18px;
  color:#555;
  font-size:14px !important;
  line-height:1.6;
}

.regola-category-card .regola-category-card-desc p{
  margin:0;
  font-size:14px !important;
}
/* ==========================================================
   SINGLE PRODUCT LAYOUT
========================================================== */

.regola-single-section{
  padding:60px 0 72px;
  background:#fff;
}

.regola-layout{
  display:grid;
  grid-template-columns:300px 1fr;
  gap:42px;
  align-items:start;
}

.regola-sidebar{
  position:sticky;
  top:110px;
  max-width:300px;
}

.regola-single-content{
  min-width:0;
}

.regola-single-hero{
  display:grid;
  grid-template-columns:1fr 42%;
  gap:40px;
  align-items:center;
  background:var(--regola-bg);
  border-radius:10px;
  padding:38px;
  overflow:hidden;
}

.regola-single-text h1{
  margin:0 0 22px;
  color:var(--regola-red);
  font-size:34px;
  line-height:1.15;
  font-weight:750;
}

.regola-single-features{
  margin-bottom:24px;
}

.regola-single-features ul{
  margin:0;
  padding:0;
  list-style:none;
}

.regola-single-features li{
  position:relative;
  padding-left:21px;
  margin-bottom:8px;
  color:#333;
  font-size:14px;
  line-height:1.55;
}

.regola-single-features li:before{
  content:"";
  position:absolute;
  left:0;
  top:9px;
  width:6px;
  height:6px;
  border-radius:50%;
  background:var(--regola-red);
}

.regola-single-image{
  background:transparent !important;
  border:0 !important;
  box-shadow:none !important;
  padding:0 !important;
}

.regola-single-image img{
  display:block;
  width:100%;
  height:auto;
  object-fit:contain;
}

.regola-single-buttons{
  display:flex;
  flex-wrap:wrap;
  gap:12px;
  margin-top:24px;
}

.regola-btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-height:44px;
  padding:12px 22px;
  border-radius:999px;
  font-size:14px;
  font-weight:700;
  text-decoration:none;
  transition:.25s ease;
}

.regola-btn.primary{
  background:var(--regola-red);
  color:#fff;
}

.regola-btn.dark{
  background:var(--regola-black);
  color:#fff;
}

.regola-btn.outline{
  color:var(--regola-black);
  border:1px solid var(--regola-black);
}

.regola-btn:hover{
  transform:translateY(-2px);
}

.regola-single-desc{
  margin-top:26px;
  padding:30px 34px;
  background:#fff;
  border:1px solid var(--regola-border);
  border-radius:10px;
  color:var(--regola-text);
  font-size:15px;
  line-height:1.75;
  box-shadow:0 10px 28px rgba(0,0,0,.04);
}

.regola-single-desc p:last-child{
  margin-bottom:0;
}

.regola-single-editor{
  margin-top:42px;
}

/* ==========================================================
   SINGLE SIDEBAR MENU
========================================================== */

.regola-side-title{
  background:var(--regola-red);
  color:#fff;
  padding:15px 18px;
  font-size:15px;
  font-weight:750;
  text-transform:uppercase;
  border-radius:8px 8px 0 0;
}

.regola-side-menu{
  background:#fff;
  border:1px solid #ededed;
  border-radius:0 0 8px 8px;
  overflow:hidden;
}

.regola-side-group{
  border-bottom:1px solid #ededed;
}

.regola-side-group:last-child{
  border-bottom:0;
}

.regola-side-parent{
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding:14px 17px;
  color:var(--regola-black);
  background:#fff;
  font-size:14px;
  font-weight:700;
  text-decoration:none;
  transition:.25s ease;
}

.regola-side-parent:after{
  content:"›";
  color:var(--regola-red);
  font-size:20px;
  line-height:1;
}

.regola-side-parent:hover{
  color:var(--regola-red);
  background:#fafafa;
}

.regola-side-children{
  background:#fafafa;
  padding:6px 0 10px;
}

.regola-side-children a{
  display:block;
  position:relative;
  padding:8px 18px 8px 34px;
  color:#555;
  font-size:13px;
  line-height:1.35;
  text-decoration:none;
  transition:.25s ease;
}

.regola-side-children a:before{
  content:"";
  position:absolute;
  left:18px;
  top:15px;
  width:5px;
  height:5px;
  border-radius:50%;
  background:var(--regola-red);
}

.regola-side-children a:hover{
  color:var(--regola-red);
  background:#fff;
}

.regola-side-box{
  margin-top:22px;
  background:#fff;
  border:1px solid #ececec;
  padding:22px;
  border-radius:8px;
}

.regola-side-box h4{
  margin:0 0 10px;
  color:var(--regola-black);
  font-size:17px;
}

.regola-side-box p{
  margin:0 0 16px;
  color:#666;
  font-size:14px;
  line-height:1.6;
}

.regola-side-btn{
  display:flex;
  justify-content:center;
  align-items:center;
  width:100%;
  min-height:44px;
  background:var(--regola-red);
  color:#fff;
  border-radius:6px;
  text-decoration:none;
  font-weight:600;
  font-size:14px;
}

.regola-side-box.dark{
  background:var(--regola-black);
}

.regola-side-box.dark h4,
.regola-side-box.dark p{
  color:#fff;
}

/* ==========================================================
   RESPONSIVE
========================================================== */

@media(max-width:1100px){
  .regola-layout{
    grid-template-columns:1fr;
  }

  .regola-sidebar{
    position:relative;
    top:auto;
    max-width:100%;
  }

  .regola-product-grid{
    grid-template-columns:1fr;
  }

  .regola-single-hero{
    grid-template-columns:1fr;
  }
}

@media(max-width:900px){
  .regola-category-hero-inner{
    grid-template-columns:1fr;
    gap:22px;
  }

  .regola-product-card-link{
    grid-template-columns:1fr;
  }

  .regola-product-card-image{
    min-height:230px;
  }
}

@media(max-width:768px){
  .regola-container{
    width:min(100% - 24px, 1400px);
  }

  .regola-vertical-accordion{
    height:auto;
    flex-direction:column;
  }

  .regola-va-item,
  .regola-va-item.active{
    flex:none;
    height:280px;
  }

  .regola-va-side-title{
    display:none;
  }

  .regola-va-content{
    opacity:1;
    visibility:visible;
    transform:none;
    left:25px;
    right:25px;
    bottom:25px;
  }

  .regola-va-content h3{
    font-size:27px;
  }

  .regola-category-hero{
    padding:34px 0 28px;
  }

  .regola-category-hero-text h1,
  .regola-single-text h1{
    font-size:28px;
  }

  .regola-products-section,
  .regola-single-section{
    padding:38px 0;
  }

  .regola-single-hero{
    padding:26px;
  }

  .regola-product-card-body{
    padding:26px 28px;
  }

  .regola-single-buttons{
    flex-direction:column;
  }

  .regola-btn{
    width:100%;
  }
}


/* Floens page transition / preloader kapatma */
.preloader,
.preloader__image,
.page-wrapper::before,
.page-wrapper::after,
body::before,
body::after {
  display: none !important;
  opacity: 0 !important;
  visibility: hidden !important;
  animation: none !important;
  transition: none !important;
}