/*
* Reworked Theme: Door Handle Manufacturer
* Base: UntreeStore by Untree.co (CC BY 3.0)
* Edits by ChatGPT — palette, icons, fixes, a11y, responsiveness
*/

/* ========================================
   0) CSS Variables (Theme)
======================================== */
:root {
  --brand-red: #dfb425;
  --brand-gold: #dfb425;
  --black: #0b0b0a;
  --text: #6a6a6a;
  --heading: #2f2f2f;
  --bg: #eff2f1;
  --muted: #dce5e4;
  --link: #2f2f2f;
  --white: #fff;

  --radius-sm: 10px;
  --radius-md: 20px;
  --radius-lg: 30px;

  --shadow-sm: 0 1px 4px rgba(0, 0, 0, .2);
  --transition: .25s ease;

  --font: "Inter", system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, "Apple Color Emoji", "Segoe UI Emoji", sans-serif;
}

/* ========================================
   1) Resets & Base
======================================== */
@import url("https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&display=swap");

* {
  box-sizing: border-box
}

html {
  scroll-behavior: smooth
}

body {
  overflow-x: hidden;
  position: relative;
  font-family: var(--font);
  font-weight: 400;
  line-height: 28px;
  color: var(--text);
  font-size: 14px;
  background-color: var(--bg);
}

a {
  color: var(--link);
  text-decoration: underline;
  transition: var(--transition);
}

a:hover {
  color: var(--link);
  text-decoration: none
}

a.more {
  font-weight: 600
}

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

/* Focus visible for a11y */
:focus-visible {
  outline: 2px dashed var(--brand-red);
  outline-offset: 2px
}

/* ========================================
   2) Navbar
======================================== */
.custom-navbar {
  background: var(--black) !important;
  padding: 20px 0;
}

.custom-navbar .navbar-brand {
  font-size: 32px;
  font-weight: 600;
  color: var(--white)
}

.custom-navbar .navbar-brand>span {
  opacity: .4
}

.custom-navbar .navbar-toggler {
  border-color: transparent
}

.custom-navbar .navbar-toggler:active,
.custom-navbar .navbar-toggler:focus {
  box-shadow: none;
  outline: none
}

@media (min-width:992px) {
  .custom-navbar .custom-navbar-nav li {
    margin: 0 15px
  }
}

.custom-navbar .custom-navbar-nav li a {
  font-weight: 500;
  color: var(--white) !important;
  opacity: .7;
  transition: var(--transition);
  position: relative
}

@media (min-width:768px) {
  .custom-navbar .custom-navbar-nav li a:before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 8px;
    right: 8px;
    background: var(--brand-gold);
    height: 4px;
    opacity: 1;
    visibility: visible;
    width: 0;
    transition: .15s ease-out;
  }
}

.custom-navbar .custom-navbar-nav li a:hover {
  opacity: 1
}

.custom-navbar .custom-navbar-nav li a:hover:before {
  width: calc(100% - 16px)
}

.custom-navbar .custom-navbar-nav li.active a {
  opacity: 1
}

.custom-navbar .custom-navbar-nav li.active a:before {
  width: calc(100% - 16px)
}

.custom-navbar .custom-navbar-cta {
  margin-left: 0 !important;
  flex-direction: row
}

@media (min-width:768px) {
  .custom-navbar .custom-navbar-cta {
    margin-left: 40px !important
  }
}

.custom-navbar .custom-navbar-cta li {
  margin: 0
}

.custom-navbar .custom-navbar-cta li:first-child {
  margin-right: 20px
}

/* ========================================
   3) Hero
======================================== */




























/*  */


    @keyframes openCloseHandle {
      0% {
        transform: rotate(0deg);
      }
  
      /* Normal konum */
      50% {
        transform: rotate(45deg);
      }
  
      /* 45 derece aşağı */
      100% {
        transform: rotate(0deg);
      }
  
      /* Geri yukarı */
    }
  
    .door-handle {
      display: block;
      margin: 0 auto;
      transform-origin: left center;
      /* menteşe tarafına göre ayarla */
      animation: openCloseHandle 3s ease-in-out infinite;
    }




 @media (max-width: 480px) {
   .door-handle {
     max-width: 10px;
   }}

       

/*dev1*/
/* Full-bleed hero: container içinde olsa bile ekranın tamamını boyasın */
.hero {
  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  overflow: hidden;
  /* taşmaları kes */
}




/*  */




/* Hover'da durdurma */
.ref-scroller:hover .ref-track {
  animation-play-state: paused;
}

/* Erişilebilirlik: animasyon kapatma tercihine saygı */
@media (prefers-reduced-motion: reduce) {
  .ref-track {
    animation: none;
  }
}

/* Mobil uyum */
@media (max-width: 576px) {
  .ref-scroller {
    --height: 48px;
  }

  .ref-track {
    gap: 32px;
  }

  .ref-track span {
    font-size: 13px;
  }
}

/* Marquee animasyonu */
@keyframes ref-marquee {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }

  /* içerik iki kez yazıldığı için %50 kaydır */
}









    


/*  */


.hero {
  background: var(--black);
  padding: calc(4rem - 30px) 0 0;
}

@media (min-width:768px) {
  .hero {
    padding: calc(4rem - 30px) 0 4rem
  }
}

@media (min-width:992px) {
  .hero {
    padding: calc(8rem - 30px) 0 8rem
  }
}

.hero .intro-excerpt {
  position: relative;
  z-index: 4
}

@media (min-width:992px) {
  .hero .intro-excerpt {
    max-width: 520px
  }
}

.hero h1 {
  font-weight: 800;
  color: var(--white);
  margin-bottom: 18px;
  letter-spacing: .2px
}

@media (min-width:1400px) {
  .hero h1 {
    font-size: 54px
  }
}

.hero p {
  color: rgba(255, 255, 255, .7);
  margin-bottom: 30px;
  /* fixed (was margin-botom) */
}

.hero .hero-img-wrap {
  position: relative
}

.hero .hero-img-wrap img {
  position: relative;
  top: 0;
  right: 0;
  z-index: 2;
  max-width: 780px;
  left: -20px;
}

@media (min-width:768px) {
  .hero .hero-img-wrap img {
    left: -100px
  }
}

@media (min-width:992px) {
  .hero .hero-img-wrap img {
    left: 0;
    top: -80px;
    position: absolute;
    right: -50px
  }
}

@media (min-width:1200px) {
  .hero .hero-img-wrap img {
    left: 0;
    top: -80px;
    right: -100px
  }
}

.hero .hero-img-wrap:after {
  content: "";
  position: absolute;
  width: 255px;
  height: 217px;
  background-image: url("../images/dots-light.svg");
  background-size: contain;
  background-repeat: no-repeat;
  right: -100px;
  top: 0;
}

@media (min-width:1200px) {
  .hero .hero-img-wrap:after {
    top: -40px
  }
}

/* ========================================
   4) Buttons
======================================== */
.btn {
  font-weight: 700;
  padding: 12px 30px;
  border-radius: var(--radius-lg);
  color: var(--white);
  background: var(--heading);
  border-color: var(--heading);
  transition: var(--transition);
}

.btn:hover {
  color: var(--white);
  background: #222;
  border-color: #222
}

.btn:active,
.btn:focus {
  outline: none !important;
  box-shadow: none
}

.btn.btn-primary {
  background: var(--brand-red);
  border-color: var(--brand-red)
}

.btn.btn-primary:hover {
  filter: brightness(.9)
}

.btn.btn-secondary {
  color: var(--black);
  background: var(--brand-gold);
  border-color: var(--brand-gold)
}

.btn.btn-secondary:hover {
  filter: brightness(.95)
}

.btn.btn-white-outline {
  background: transparent;
  border: 2px solid rgba(255, 255, 255, .35);
  color: var(--white)
}

.btn.btn-white-outline:hover {
  border-color: #fff;
  color: var(--white)
}

/* ========================================
   5) Sections & Titles
======================================== */
.section-title {
  color: var(--heading);
  letter-spacing: .2px
}

/* ========================================
   6) Product Grid (cards)
======================================== */
.product-section {
  padding: 7rem 0
}

.product-section .product-item {
  text-align: center;
  text-decoration: none;
  display: block;
  position: relative;
  padding-bottom: 50px;
  cursor: pointer;
}

.product-section .product-item .product-thumbnail {
  margin-bottom: 24px;
  position: relative;
  top: 0;
  transition: var(--transition);
}

.product-section .product-item h3 {
  font-weight: 600;
  font-size: 16px
}

.product-section .product-item strong {
  font-weight: 800 !important;
  font-size: 18px !important
}

.product-section .product-item h3,
.product-section .product-item strong {
  color: var(--heading);
  text-decoration: none
}

.product-section .product-item .icon-cross {
  position: absolute;
  width: 38px;
  height: 38px;
  display: inline-block;
  background: var(--heading);
  bottom: 15px;
  left: 50%;
  transform: translateX(-50%);
  margin-bottom: -19px;
  border-radius: 50%;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
}

.product-section .product-item .icon-cross img {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%)
}

.product-section .product-item:before {
  bottom: 0;
  left: 0;
  right: 0;
  position: absolute;
  content: "";
  background: var(--muted);
  height: 0%;
  z-index: -1;
  border-radius: var(--radius-md);
  transition: var(--transition);
}

.product-section .product-item:hover .product-thumbnail {
  top: -20px
}

.product-section .product-item:hover .icon-cross {
  bottom: 0;
  opacity: 1;
  visibility: visible
}

.product-section .product-item:hover:before {
  height: 70%
}

/* ========================================
   7) Why Choose (image wrap)
======================================== */
.why-choose-section {
  padding: 7rem 0
}

.why-choose-section .img-wrap {
  position: relative
}

.why-choose-section .img-wrap:before {
  position: absolute;
  content: "";
  width: 255px;
  height: 217px;
  background-image: url("../images/dots-yellow.svg");
  background-repeat: no-repeat;
  background-size: contain;
  transform: translate(-40%, -40%);
  z-index: -1
}

.why-choose-section .img-wrap img {
  border-radius: var(--radius-md)
}

.feature {
  margin-bottom: 30px
}

.feature .icon {
  display: inline-block;
  position: relative;
  margin-bottom: 16px;
  width: 50px;
  height: 50px;
  line-height: 50px;
  text-align: center;
  border-radius: 50%;
  background: rgba(229, 9, 20, .15);
  /* brand red tint */
  color: var(--brand-red);
  font-size: 22px;
}

.feature .icon:before {
  display: none
}

.feature h3 {
  font-size: 14px;
  color: var(--heading)
}

.feature p {
  font-size: 14px;
  line-height: 22px;
  color: var(--text)
}

/* ========================================
   8) We Help Grid
======================================== */
.we-help-section {
  padding: 7rem 0
}

.we-help-section .imgs-grid {
  display: grid;
  grid-template-columns: repeat(27, 1fr);
  position: relative;
  gap: 0;
}

.we-help-section .imgs-grid:before {
  position: absolute;
  content: "";
  width: 255px;
  height: 217px;
  background-image: url("../images/dots-green.svg");
  background-size: contain;
  background-repeat: no-repeat;
  transform: translate(-40%, -40%);
  z-index: -1;
}

.we-help-section .imgs-grid .grid {
  position: relative
}

.we-help-section .imgs-grid .grid img {
  border-radius: var(--radius-md);
  max-width: 100%
}

.we-help-section .imgs-grid .grid.grid-1 {
  grid-column: 1 / span 18;
  grid-row: 1 / span 27;
}

.we-help-section .imgs-grid .grid.grid-2 {
  grid-column: 19 / span 9;
  grid-row: 1 / span 5;
  padding-left: 20px;
}

.we-help-section .imgs-grid .grid.grid-3 {
  grid-column: 14 / span 16;
  grid-row: 6 / span 22;
  padding-top: 20px;
}

/* ========================================
   9) Custom List (check bullets)
======================================== */
.custom-list {
  width: 100%
}

.custom-list li {
  display: inline-block;
  width: calc(50% - 20px);
  margin-bottom: 12px;
  line-height: 1.5;
  position: relative;
  padding-left: 20px;
}

.custom-list li:before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  border: 2px solid var(--brand-red);
  position: absolute;
  left: 0;
  top: 8px;
}

/* ========================================
   10) Popular Product (converted to Icon rows)
   - Thumbnail alanı artık ikonla da çalışır.
======================================== */
.popular-product {
  padding: 0 0 7rem
}

.popular-product .product-item-sm h3 {
  font-size: 14px;
  font-weight: 800;
  color: var(--heading)
}

.popular-product .product-item-sm a {
  text-decoration: none;
  color: var(--heading);
  transition: var(--transition)
}

.popular-product .product-item-sm a:hover {
  color: rgba(47, 47, 47, .6)
}

.popular-product .product-item-sm p {
  line-height: 1.5;
  margin-bottom: 10px;
  font-size: 14px
}

.popular-product .product-item-sm .thumbnail {
  margin-right: 12px;
  flex: 0 0 120px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.popular-product .product-item-sm .thumbnail:before {
  content: "";
  position: absolute;
  border-radius: var(--radius-md);
  background: var(--muted);
  width: 98px;
  height: 98px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: -1;
}

/* Icon mode */
.popular-product .product-item-sm .thumbnail i,
.popular-product .product-item-sm .thumbnail svg {
  font-size: 42px;
  line-height: 1;
  color: var(--brand-red);
}

/* ========================================
   11) Testimonials (Tiny Slider defaults kept)
======================================== */
.testimonial-section {
  padding: 3rem 0 7rem
}

.testimonial-slider-wrap {
  position: relative
}

.testimonial-slider-wrap .tns-inner {
  padding-top: 30px
}

.testimonial-slider-wrap .item .testimonial-block blockquote {
  font-size: 16px
}

@media (min-width:768px) {
  .testimonial-slider-wrap .item .testimonial-block blockquote {
    line-height: 32px;
    font-size: 18px
  }
}

.testimonial-slider-wrap .item .testimonial-block .author-info .author-pic {
  margin-bottom: 20px
}

.testimonial-slider-wrap .item .testimonial-block .author-info .author-pic img {
  max-width: 80px;
  border-radius: 50%
}

.testimonial-slider-wrap .item .testimonial-block .author-info h3 {
  font-size: 14px;
  font-weight: 800;
  color: var(--heading);
  margin-bottom: 0
}

.testimonial-slider-wrap #testimonial-nav {
  position: absolute;
  top: 50%;
  z-index: 99;
  width: 100%;
  display: none
}

@media (min-width:768px) {
  .testimonial-slider-wrap #testimonial-nav {
    display: block
  }
}

.testimonial-slider-wrap #testimonial-nav>span {
  cursor: pointer;
  position: absolute;
  width: 58px;
  height: 58px;
  line-height: 58px;
  border-radius: 50%;
  background: rgba(229, 9, 20, .1);
  color: var(--heading);
  transition: var(--transition);
  text-align: center;
}

.testimonial-slider-wrap #testimonial-nav>span:hover {
  background: var(--brand-red);
  color: #fff
}

.testimonial-slider-wrap #testimonial-nav .prev {
  left: -10px
}

.testimonial-slider-wrap #testimonial-nav .next {
  right: 0
}

.testimonial-slider-wrap .tns-nav {
  position: absolute;
  bottom: -50px;
  left: 50%;
  transform: translateX(-50%);
}

.testimonial-slider-wrap .tns-nav button {
  background: none;
  border: none;
  display: inline-block;
  position: relative;
  width: 0 !important;
  height: 7px !important;
  margin: 2px
}

.testimonial-slider-wrap .tns-nav button:active,
.testimonial-slider-wrap .tns-nav button:focus,
.testimonial-slider-wrap .tns-nav button:hover {
  outline: none;
  box-shadow: none;
  background: none
}

.testimonial-slider-wrap .tns-nav button:before {
  display: block;
  width: 7px;
  height: 7px;
  left: 0;
  top: 0;
  position: absolute;
  content: "";
  border-radius: 50%;
  transition: var(--transition);
  background-color: #d6d6d6
}

.testimonial-slider-wrap .tns-nav button:hover:before,
.testimonial-slider-wrap .tns-nav button.tns-nav-active:before {
  background-color: var(--brand-red)
}

/* ========================================
   12) Blog
======================================== */
.blog-section {
  padding: 7rem 0 12rem
}

.blog-section .post-entry a {
  text-decoration: none
}

.blog-section .post-entry .post-thumbnail {
  display: block;
  margin-bottom: 20px
}

.blog-section .post-entry .post-thumbnail img {
  border-radius: var(--radius-md);
  transition: var(--transition)
}

.blog-section .post-entry .post-content-entry {
  padding: 0 15px
}

.blog-section .post-entry .post-content-entry h3 {
  font-size: 16px;
  margin: 0 0 7px;
  font-weight: 700;
  color: var(--heading)
}

.blog-section .post-entry .post-content-entry .meta {
  font-size: 14px
}

.blog-section .post-entry .post-content-entry .meta a {
  font-weight: 600
}

.blog-section .post-entry:hover .post-thumbnail img,
.blog-section .post-entry:focus .post-thumbnail img {
  opacity: .8
}

/* ========================================
   13) Before Footer spacing
======================================== */
.before-footer-section {
  padding: 7rem 0 12rem !important
}

/* ========================================
   14) Footer
======================================== */
.footer-section {
  padding: 80px 0;
  background: var(--white);
  position: relative
}

.footer-section .relative {
  position: relative
}

.footer-section a {
  text-decoration: none;
  color: var(--heading);
  transition: var(--transition)
}

.footer-section a:hover {
  color: rgba(47, 47, 47, .6)
}

.footer-section .subscription-form {
  margin: 100px 0 40px;
  position: relative;
  z-index: 2
}

@media (min-width:992px) {
  .footer-section .subscription-form {
    margin: 0 0 80px
  }
}

.footer-section .subscription-form h3 {
  font-size: 18px;
  font-weight: 600;
  color: var(--brand-red)
}

.footer-section .subscription-form .form-control {
  height: 50px;
  border-radius: var(--radius-sm);
  font-family: var(--font)
}

.footer-section .subscription-form .form-control:active,
.footer-section .subscription-form .form-control:focus {
  outline: none;
  box-shadow: var(--shadow-sm);
  border-color: var(--brand-red)
}

.footer-section .subscription-form .btn {
  border-radius: var(--radius-sm) !important
}

.footer-section .sofa-img {
  position: absolute;
  top: -200px;
  z-index: 1;
  right: 0
}

.footer-section .sofa-img img {
  max-width: 380px
}

.footer-section .links-wrap {
  margin-top: 0
}

@media (min-width:992px) {
  .footer-section .links-wrap {
    margin-top: 54px
  }
}

.footer-section .links-wrap ul li {
  margin-bottom: 10px
}

.footer-section .footer-logo-wrap .footer-logo {
  font-size: 32px;
  font-weight: 700;
  text-decoration: none;
  color: var(--brand-red)
}

.footer-section .custom-social li {
  margin: 2px;
  display: inline-block
}

.footer-section .custom-social li a {
  width: 40px;
  height: 40px;
  text-align: center;
  line-height: 40px;
  display: inline-block;
  background: var(--muted);
  color: var(--brand-red);
  border-radius: 50%;
}

.footer-section .custom-social li a:hover {
  background: var(--brand-red);
  color: #fff
}

.footer-section .border-top {
  border-color: var(--muted)
}

.footer-section .border-top.copyright {
  font-size: 14px !important
}

/* ========================================
   15) Forms & Tables
======================================== */
.untree_co-section {
  padding: 7rem 0
}

.form-control {
  height: 50px;
  border-radius: var(--radius-sm);
  font-family: var(--font)
}

.form-control:active,
.form-control:focus {
  outline: none;
  box-shadow: var(--shadow-sm);
  border-color: var(--brand-red)
}

.form-control::placeholder {
  font-size: 14px;
  color: #9aa3a2
}

textarea {
  height: auto !important
}

.service {
  line-height: 1.5
}

.service .service-icon {
  border-radius: var(--radius-sm);
  flex: 0 0 50px;
  height: 50px;
  line-height: 50px;
  text-align: center;
  background: var(--brand-red);
  margin-right: 20px;
  color: #fff
}

.site-blocks-table {
  overflow: auto
}

.site-blocks-table .product-thumbnail {
  width: 200px
}

.site-blocks-table .btn {
  padding: 2px 10px;
  background: none !important;
  color: #000;
  border: none;
  height: auto !important
}

.site-blocks-table thead th {
  padding: 30px;
  text-align: center;
  border-width: 0 !important;
  vertical-align: middle;
  color: rgba(0, 0, 0, .85);
  font-size: 18px
}

.site-blocks-table td {
  padding: 20px;
  text-align: center;
  vertical-align: middle;
  color: rgba(0, 0, 0, .85)
}

.site-blocks-table tbody tr:first-child td {
  border-top: 1px solid var(--brand-red) !important
}

.site-block-order-table th {
  border-top: none !important;
  border-bottom-width: 1px !important
}

.site-block-order-table td,
.site-block-order-table th {
  color: #000
}

.couponcode-wrap input {
  border-radius: var(--radius-sm) !important
}

.text-primary {
  color: var(--brand-red) !important
}

.thankyou-icon {
  position: relative;
  color: var(--brand-red)
}

.thankyou-icon:before {
  position: absolute;
  content: "";
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: rgba(229, 9, 20, .15)
}

/* ========================================
   16) Utilities
======================================== */
.icon-xxl {
  font-size: 56px
}

.icon-xl {
  font-size: 42px
}

.icon-lg {
  font-size: 32px
}

.badge-pill {
  display: inline-block;
  padding: .4rem .7rem;
  border-radius: 999px;
  background: rgba(0, 0, 0, .06);
  color: var(--heading);
  font-weight: 600;
  font-size: .8rem;
}

/* ========================================
   17) Responsive Tweaks
======================================== */
@media (max-width:991.98px) {
  .custom-list li {
    width: 100%
  }

  .popular-product .product-item-sm .thumbnail {
    flex: 0 0 90px
  }

  .popular-product .product-item-sm .thumbnail:before {
    width: 84px;
    height: 84px
  }
}

@media (max-width:575.98px) {
  .btn {
    padding: 10px 20px
  }

  .hero h1 {
    font-size: 34px
  }
}

/* ========================================
   18) Optional: Dark on Light badges for “guarantees”
   (Zamanında Teslimat, Projeye Özel Tasarım, Satış Sonrası Destek)
======================================== */
.guarantee {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 14px
}

.guarantee i {
  color: var(--brand-red)
}

.guarantee h4 {
  margin: 0 0 4px;
  color: var(--heading);
  font-size: 15px;
  font-weight: 800
}
@media (max-width: 576px) {
  .post-article {
    border-radius: 12px;
    padding: 14px;
  }
.guarantee p {
  margin: 0;
  color: var(--text);
  font-size: 13px;
  line-height: 1.5
}







