:root {
  --main-color: #e31e24;
  --dark-color: #151515;
  --text-color: #202020;
  --soft-bg: #f6f6f6;
  --border-color: #eeeeee;
}

* {
  box-sizing: border-box;
}

body {
  font-family: "Inter", "Segoe UI", Arial, sans-serif;
  font-size: 17px;
  font-weight: 400;
  color: var(--text-color);
  background: #fff;
}

a {
  text-decoration: none;
}

.btn {
  border-radius: 40px;
  padding: 13px 28px;
  font-weight: 700;
}

.btn-danger {
  background: var(--main-color);
  border-color: var(--main-color);
}

.btn-danger:hover {
  background: #c9141a;
  border-color: #c9141a;
}

.btn-outline-danger {
  color: var(--main-color);
  border-color: var(--main-color);
}

.btn-outline-danger:hover {
  background: var(--main-color);
  border-color: var(--main-color);
}

/* Header */

.site-header {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 30;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 8px 35px rgba(0, 0, 0, 0.06);
}

.header-container {
  padding-left: 42px;
  padding-right: 42px;
}

.navbar {
  padding: 18px 0;
}

.navbar-brand img {
  max-height: 69px;
}

.nav-link {
  font-size: 17px;
  font-weight: 700;
  color: #1f1f1f;
  letter-spacing: -0.2px;
  padding: 14px 20px !important;
}

.nav-link:hover,
.lang-link {
  color: var(--main-color);
}

.header-action {
  align-items: center;
  gap: 10px;
  background: #f4f4f4;
  color: #1f1f1f;
  padding: 13px 20px;
  border-radius: 40px;
  font-weight: 700;
  font-size: 16px;
  transition: 0.25s ease;
  white-space: nowrap;
}

.header-action i {
  width: 34px;
  height: 34px;
  background: var(--main-color);
  color: #fff;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 15px;
  transition: 0.25s ease;
}

.header-action:hover {
  background: var(--main-color);
  color: #fff;
}

.header-action:hover i {
  background: #fff;
  color: var(--main-color);
}

/* Slider */

.hero-slider,
.carousel-item {
  height: 100vh;
  min-height: 650px;
}

.carousel-item {
  position: relative;
}

.carousel-item img {
  height: 100%;
  object-fit: cover;
}

.carousel-item::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(0, 0, 0, 0.62),
    rgba(0, 0, 0, 0.28),
    rgba(0, 0, 0, 0.12)
  );
  z-index: 1;
}

.carousel-caption {
    left: 8%;
    right: auto;
    top: 53%;
    transform: translateY(-50%);
    z-index: 2;
    max-width: 720px;
    text-align: left;
}

.carousel-caption span {
  display: inline-block;
  background: rgba(227, 30, 36, 0.92);
  color: #fff;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  padding: 8px 18px;
  border-radius: 40px;
  margin-bottom: 18px;
}

.carousel-caption h1,
.carousel-caption h2 {
  font-size: 58px;
  line-height: 1.05;
  font-weight: 800;
  letter-spacing: -2px;
  margin-bottom: 22px;
}

.carousel-caption p {
  font-size: 22px;
  line-height: 1.55;
  margin-bottom: 30px;
}

/* Sections */

.product-section,
.info-four-section {
  padding: 90px 0;
}

.section-title {
  margin-bottom: 45px;
}

.section-title span,
.info-content span {
  display: inline-block;
  color: var(--main-color);
  font-weight: 800;
  font-size: 14px;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.section-title h2,
.info-content h2 {
  font-size: 42px;
  font-weight: 800;
  letter-spacing: -1px;
  margin-bottom: 16px;
}

.section-title p {
  font-size: 18px;
  color: #666;
  margin-bottom: 0;
}

/* Product Slider */

.product-marquee {
  overflow: hidden;
  position: relative;
  padding: 10px 0 25px;
}

.product-track {
  display: flex;
  gap: 28px;
  width: max-content;
  animation: productSlide 42s linear infinite;
}

.product-marquee:hover .product-track {
  animation-play-state: paused;
}

.product-card {
  width: 260px;
  flex: 0 0 260px;
  background: #fff;
  border: 1px solid var(--border-color);
  border-radius: 22px;
  padding: 18px;
  text-align: center;
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.06);
  transition: 0.25s ease;
}

.product-card-link,
.grid-product-card.product-card-link {
  display: block;
  color: inherit;
  text-decoration: none;
}

.products-empty {
  padding: 32px;
  border: 1px dashed var(--border-color);
  border-radius: 20px;
  color: #777;
  text-align: center;
  background: #fafafa;
}

.product-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.12);
}

.product-card img {
  width: 100%;
  height: 210px;
  object-fit: contain;
  background: #f8f8f8;
  border-radius: 18px;
  padding: 18px;
}

.product-card h3 {
  font-size: 18px;
  line-height: 1.25;
  font-weight: 800;
  color: #222;
  margin: 18px 0 0;
}

@keyframes productSlide {
  from {
    transform: translateX(0);
  }

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

/* About + Catalog */

.info-four-section {
  background: #fff;
}

.info-image {
  height: 100%;
  min-height: 430px;
  overflow: hidden;
}

.info-image img{
    width:100%;
    height:100%;
    object-fit:cover;
    object-position:center;
}

.info-content {
  min-height: 430px;
  padding: 55px 45px;
  background: var(--soft-bg);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.info-content.dark {
  background: var(--dark-color);
  color: #fff;
}

.info-content p {
  color: #666;
  line-height: 1.75;
  margin: 8px 0 28px;
}

.info-content.dark p {
  color: #ddd;
}

.text-link {
  color: var(--main-color);
  font-weight: 800;
}

.text-link:hover {
  color: #b80f15;
}

/* Footer */

.site-footer {
  background: #111;
  color: #ccc;
  padding: 60px 0 25px;
  margin-top: 49px;
}

.footer-logo {
  max-height: 70px;
  margin-bottom: 20px;
}

.site-footer h4 {
  color: #fff;
  font-size: 20px;
  font-weight: 800;
  margin-bottom: 20px;
}

.site-footer p {
  line-height: 1.7;
}

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

.site-footer li {
  margin-bottom: 9px;
}

.site-footer a {
  color: #ccc;
}

.site-footer a:hover {
  color: #fff;
}

.footer-bottom {
  border-top: 1px solid #333;
  margin-top: 40px;
  padding-top: 22px;
  display: flex;
  justify-content: space-between;
  gap: 20px;
}

.footer-bottom a {
  margin-left: 18px;
}

/* Responsive */

@media (max-width: 1199px) {
  .site-header {
    position: relative;
  }

  .header-container {
    padding-left: 16px;
    padding-right: 16px;
  }

  .navbar-brand img {
    max-height: 70px;
  }

  .navbar-collapse {
    padding-top: 20px;
  }

  .nav-link {
    padding: 10px 0 !important;
  }

  .hero-slider,
  .carousel-item {
    height: 650px;
    min-height: 650px;
  }
}

@media (max-width: 991px) {
  .carousel-caption {
    left: 6%;
    right: 6%;
    bottom: 22%;
  }

  .carousel-caption h1,
  .carousel-caption h2 {
    font-size: 42px;
  }

  .carousel-caption p {
    font-size: 18px;
  }

  .section-title h2,
  .info-content h2 {
    font-size: 34px;
  }

  .product-card {
    width: 230px;
    flex-basis: 230px;
  }

  .product-card img {
    height: 190px;
  }

  .info-content,
  .info-image {
    min-height: 340px;
  }
}

@media (max-width: 575px) {
  body {
    font-size: 16px;
  }

  .hero-slider,
  .carousel-item {
    height: 560px;
    min-height: 560px;
  }

  .carousel-caption {
    bottom: 16%;
  }

  .carousel-caption h1,
  .carousel-caption h2 {
    font-size: 32px;
  }

  .carousel-caption p {
    font-size: 16px;
  }

  .product-section,
  .info-four-section {
    padding: 60px 0;
  }

  .product-card {
    width: 210px;
    flex-basis: 210px;
  }

  .product-card h3 {
    font-size: 16px;
  }

  .info-content {
    padding: 40px 28px;
  }

  .footer-bottom {
    flex-direction: column;
  }

  .footer-bottom a {
    margin-left: 0;
    margin-right: 15px;
  }
}


.carousel-control-prev{
    justify-content: flex-start;
    padding-left: 30px;
}

.carousel-control-next{
    justify-content: flex-end;
    padding-right: 30px;
}


.carousel-control-prev,
.carousel-control-next{
    width: 70px;
    top: 55%;
    bottom: auto;
    transform: translateY(-50%);
}

.carousel-control-prev{
    left: 15px;
}

.carousel-control-next{
    right: 15px;
}

.carousel-caption h1,
.carousel-caption h2{
    font-size: 72px;
    line-height: 0.95;
    font-weight: 800;
    letter-spacing: -3px;
}


/*ÜRÜNLER*/


.inner-header {
  position: relative;
}

.page-hero {
  background: #f6f6f6;
  padding: 65px 0 45px;
  text-align: center;
}

.page-hero span {
  display: inline-block;
  background: var(--main-color);
  color: #fff;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  padding: 8px 20px;
  border-radius: 40px;
  margin-bottom: 18px;
}

.page-hero h1 {
  font-size: 58px;
  font-weight: 800;
  letter-spacing: -2px;
  margin-bottom: 15px;
}

.page-hero p {
  font-size: 20px;
  color: #666;
  margin: 0;
}

.products-grid-section {
  padding: 80px 0 95px;
  background: #fff;
}

.grid-product-card {
  background: #fff;
  border: 1px solid var(--border-color);
  border-radius: 24px;
  padding: 18px;
  height: 100%;
  text-align: center;
  cursor: pointer;
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.06);
  transition: 0.25s ease;
}

.grid-product-card:hover {
  transform: translateY(-7px);
  box-shadow: 0 22px 45px rgba(0, 0, 0, 0.12);
}

.grid-product-card img {
  width: 100%;
  height: 245px;
  object-fit: contain;
  background: #f8f8f8;
  border-radius: 18px;
  padding: 20px;
}

.grid-product-card h3 {
  font-size: 18px;
  line-height: 1.25;
  font-weight: 800;
  color: #222;
  margin: 18px 0 0;
}

.product-detail-section {
  padding: 80px 0 100px;
}

.product-detail-gallery {
  position: sticky;
  top: 30px;
}

.product-detail-main-image {
  width: 100%;
  height: 520px;
  object-fit: contain;
  padding: 35px;
  border: 1px solid var(--border-color);
  border-radius: 28px;
  background: #f8f8f8;
}

.product-detail-thumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 16px;
}

.product-detail-thumbs button {
  width: 86px;
  height: 86px;
  padding: 7px;
  border: 2px solid transparent;
  border-radius: 14px;
  background: #f8f8f8;
}

.product-detail-thumbs button.active {
  border-color: var(--main-color);
}

.product-detail-thumbs img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.product-detail-content {
  padding: 20px 0;
}

.product-detail-content .product-code {
  display: inline-block;
  margin-bottom: 16px;
  padding: 7px 14px;
  border-radius: 30px;
  color: var(--main-color);
  background: rgba(204, 0, 0, 0.08);
  font-weight: 700;
}

.product-detail-content h2 {
  margin-bottom: 24px;
  font-size: 44px;
  font-weight: 800;
}

.product-description,
.product-specifications {
  margin-bottom: 30px;
  color: #555;
  line-height: 1.8;
}

.product-specifications {
  padding: 25px;
  border-radius: 20px;
  background: #f8f8f8;
}

.product-specifications h3 {
  margin-bottom: 18px;
  color: #222;
  font-size: 24px;
  font-weight: 800;
}

@media (max-width: 767px) {
  .product-detail-section {
    padding: 55px 0 70px;
  }

  .product-detail-gallery {
    position: static;
  }

  .product-detail-main-image {
    height: 360px;
    padding: 20px;
  }

  .product-detail-content h2 {
    font-size: 34px;
  }
}

.product-lightbox .modal-content {
  border: 0;
  border-radius: 28px;
  overflow: hidden;
  position: relative;
}

.product-lightbox .modal-dialog {
  max-width: 1150px;
}

.product-close {
  position: absolute;
  top: 22px;
  right: 22px;
  z-index: 5;
  background-color: #fff;
  opacity: 1;
  width: 42px;
  height: 42px;
  border-radius: 50%;
}

.lightbox-image {
  background: #f7f7f7;
  padding: 45px;
  min-height: 620px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.lightbox-image img {
  max-width: 100%;
  max-height: 540px;
  object-fit: contain;
}

.lightbox-content {
  padding: 60px 50px;
}

.lightbox-content span {
  display: inline-block;
  color: var(--main-color);
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 14px;
}

.lightbox-content h2 {
  font-size: 38px;
  font-weight: 800;
  letter-spacing: -1px;
  margin-bottom: 18px;
}

.lightbox-content p {
  font-size: 18px;
  line-height: 1.7;
  color: #666;
  margin-bottom: 28px;
}

@media (max-width: 991px) {
  .page-hero {
    padding: 70px 0 55px;
  }

  .page-hero h1 {
    font-size: 42px;
  }

  .grid-product-card img {
    height: 210px;
  }

  .lightbox-image {
    min-height: auto;
    padding: 35px;
  }

  .lightbox-content {
    padding: 40px 30px;
  }

  .lightbox-content h2 {
    font-size: 30px;
  }
}


.lightbox-image{
    background:#fff;
}

.lightbox-image img{
    max-width:85%;
    transition:.3s;
}

.lightbox-image img:hover{
    transform:scale(1.03);
}



.about-company-section {
    padding: 90px 0;
    background: #fff;
}

.about-company-box {
    background: linear-gradient(135deg, #f7f7f7 0%, #ffffff 45%, #eeeeee 100%);
    border-radius: 34px;
    overflow: hidden;
    box-shadow: 0 18px 55px rgba(0, 0, 0, 0.08);
}

.about-image {
    height: 100%;
    min-height: 560px;
    padding: 28px;
    background: #f4f4f4;
    display: flex;
    align-items: stretch;
}

.about-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    border-radius: 26px;
    background: #fff;
}

.about-content {
    min-height: 560px;
    padding: 60px 60px;
    background: linear-gradient(
        135deg,
        rgba(20, 20, 20, 0.96) 0%,
        rgba(38, 38, 38, 0.94) 48%,
        rgba(227, 30, 36, 0.88) 100%
    );
    color: #fff;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.about-content span {
    color: #fff;
    font-weight: 800;
    font-size: 14px;
    letter-spacing: 1.4px;
    text-transform: uppercase;
    margin-bottom: 14px;
}

.about-content h2 {
    font-size: 40px;
    line-height: 1.12;
    font-weight: 800;
    letter-spacing: -1.5px;
    margin-bottom: 24px;
}

.about-content p {
    color: rgba(255, 255, 255, 0.88);
    font-size: 17px;
    line-height: 1.75;
    margin-bottom: 15px;
}

@media (max-width: 991px) {
    .about-image {
        height: auto;
        min-height: 360px;
    }

    .about-image img {
        max-height: 460px;
    }

    .about-content {
        min-height: auto;
        padding: 45px 32px;
    }

    .about-content h2 {
        font-size: 32px;
    }
}

/*İKONLAR*/

.value-box {
    background: #fff;
    padding: 40px 30px;
    border-radius: 24px;
    height: 100%;
    border: 1px solid #ececec;
    transition: .3s ease;
}

.value-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0,0,0,.08);
}

.value-box i {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    width: 90px;
    height: 90px;

    font-size: 42px;

    color: #e31e24;
    background: #f7f7f7;

    border-radius: 50%;

    margin-bottom: 22px;

    transition: .3s ease;
}

.value-box:hover i {
    background: #e31e24;
    color: #fff;
}

.value-box h3 {
    font-size: 24px;
    font-weight: 800;
    margin-bottom: 12px;
}

.value-box p {
    color: #666;
    line-height: 1.7;
    margin: 0;
}

/*iletişim*/

.contact-simple-section {
    padding: 90px 0;
    background: #fff;
}

.contact-simple-box,
.contact-map-simple {
    height: 100%;
    min-height: 520px;
    border-radius: 28px;
    overflow: hidden;
    box-shadow: 0 18px 55px rgba(0,0,0,.08);
}

.contact-simple-box {
    padding: 55px;
    background: linear-gradient(135deg, #151515 0%, #242424 55%, #e31e24 100%);
    color: #fff;
}

.contact-simple-box > span {
    display: inline-block;
    font-size: 14px;
    font-weight: 800;
    letter-spacing: 1.3px;
    text-transform: uppercase;
    margin-bottom: 12px;
}

.contact-simple-box h2 {
    font-size: 42px;
    font-weight: 800;
    margin-bottom: 34px;
}

.contact-simple-item {
    display: flex;
    gap: 18px;
    margin-bottom: 26px;
}

.contact-simple-item i {
    width: 58px;
    height: 58px;
    background: rgba(255,255,255,.15);
    border: 1px solid rgba(255,255,255,.25);
    border-radius: 50%;
    display: grid;
    place-items: center;
    font-size: 24px;
    flex: 0 0 58px;
}

.contact-simple-item h4 {
    font-size: 20px;
    font-weight: 800;
    margin-bottom: 6px;
}

.contact-simple-item p,
.contact-simple-item a {
    color: rgba(255,255,255,.88);
    font-size: 17px;
    line-height: 1.6;
    margin: 0;
}

.contact-map-simple iframe {
    width: 100%;
    height: 100%;
    min-height: 520px;
    border: 0;
}

@media (max-width: 991px) {
    .contact-simple-box {
        padding: 40px 28px;
    }

    .contact-simple-box h2 {
        font-size: 32px;
    }

    .contact-simple-box,
    .contact-map-simple,
    .contact-map-simple iframe {
        min-height: 420px;
    }
}

/*online katalog*/

.catalog-section {
    padding: 90px 0;
    background: #fff;
}

.catalog-card {
    background: #fff;
    border-radius: 30px;
    padding: 45px;
    border: 1px solid #ececec;
    box-shadow: 0 18px 55px rgba(0,0,0,.08);
    transition: .3s;
}

.catalog-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 25px 60px rgba(0,0,0,.12);
}

.catalog-icon {
    width: 120px;
    height: 120px;
    margin: auto;
    border-radius: 50%;
    background: linear-gradient(
        135deg,
        #151515 0%,
        #e31e24 100%
    );

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

.catalog-icon i {
    color: #fff;
    font-size: 56px;
}

.catalog-content span {
    display: inline-block;
    color: #e31e24;
    font-size: 14px;
    font-weight: 800;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    margin-bottom: 12px;
}

.catalog-content h2 {
    font-size: 36px;
    font-weight: 800;
    margin-bottom: 15px;
}

.catalog-content p {
    font-size: 17px;
    color: #666;
    line-height: 1.8;
    margin: 0;
}

@media(max-width:991px){

    .catalog-card{
        text-align:center;
        padding:35px 25px;
    }

    .catalog-icon{
        margin-bottom:25px;
    }

    .catalog-content{
        margin-bottom:25px;
    }

    .catalog-content h2{
        font-size:30px;
    }
}

/*BİZE YAZIN*/

.contact-form-page {
    padding: 90px 0;
    background: #fff;
}

.contact-honeypot {
  position: absolute !important;
  left: -10000px !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
}

.contact-form-wrapper {
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 18px 55px rgba(0,0,0,.08);
}

.contact-form-content {
    padding: 60px;
    background: #fff;
    height: 100%;
}

.contact-form-content span {
    display: inline-block;
    color: #e31e24;
    font-size: 14px;
    font-weight: 800;
    letter-spacing: 1.3px;
    text-transform: uppercase;
    margin-bottom: 12px;
}

.contact-form-content h2 {
    font-size: 42px;
    font-weight: 800;
    margin-bottom: 35px;
}

.contact-form-content .form-control {
    height: 58px;
    border-radius: 14px;
    border: 1px solid #e4e4e4;
    padding: 14px 18px;
    font-size: 16px;
}

.contact-form-content textarea.form-control {
    height: auto;
    resize: none;
}

.contact-form-content .form-control:focus {
    border-color: #e31e24;
    box-shadow: none;
}

.contact-form-image {
    position: relative;
    height: 100%;
    min-height: 700px;
}

.contact-form-image::before {
    content: "";
    position: absolute;
    inset: 0;

    background:
    linear-gradient(
        135deg,
        rgba(20,20,20,.65) 0%,
        rgba(40,40,40,.35) 45%,
        rgba(227,30,36,.30) 100%
    );

    z-index: 2;
}

.contact-form-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

@media(max-width:991px){

    .contact-form-content{
        padding:40px 28px;
    }

    .contact-form-content h2{
        font-size:32px;
    }

    .contact-form-image{
        min-height:400px;
    }
}
