:root {
      --black: #000000;
      --primary: #FF3D00;
      --primary-light: rgba(255, 61, 0, 0.1);
      --white: #FFFFFF;
      --gray: #EEEEEE;
      --dark-gray: #222222;
      --glass: rgba(255, 255, 255, 0.7);
      --shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.15);
    }

    @font-face {
      font-family: 'Neue Machina';
      src: url('https://fonts.cdnfonts.com/css/neue-machina') format('woff2');
      font-weight: 400;
    }

    @font-face {
      font-family: 'PP Mori';
      src: url('https://fonts.cdnfonts.com/css/ppmori') format('woff2');
    }

    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }

    body {
      background: linear-gradient(135deg, #fff 0%, #f7f7f7 100%);
      color: var(--black);
      font-family: 'Space Grotesk', 'Montserrat', Arial, sans-serif;
      overflow-x: hidden;
      min-height: 100vh;
      position: relative;
    }

    body::before {
      content: '';
      position: fixed;
      top: 0;
      left: 0;
      width: 100vw;
      height: 100vh;
      background: url('https://www.transparenttextures.com/patterns/cubes.png');
      opacity: 0.07;
      pointer-events: none;
      z-index: 0;
    }

    h1,
    h2,
    h3,
    h4 {
      font-family: 'Neue Machina', sans-serif;
      font-weight: 400;
    }

    .container {
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 24px;
    }

    section {
      padding: 65px 0 0px 0;
      position: relative;
    }

    section:not(:first-child)::before {
      content: '';
      display: block;
      position: absolute;
      top: 0;
      left: 50%;
      transform: translateX(-50%);
      width: 80%;
      height: 1px;
      background: linear-gradient(90deg, transparent, var(--gray), transparent);
      opacity: 0.5;
    }

    .glitch {
      position: relative;
    }

    .glitch::before,
    .glitch::after {
      content: attr(data-text);
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }

    .glitch::before {
      color: var(--primary);
      animation: glitch-effect 3s infinite;
    }

    .glitch::after {
      color: var(--black);
      animation: glitch-effect 2s reverse infinite;
    }

    @keyframes glitch-effect {
      0% {
        transform: translate(0);
      }

      20% {
        transform: translate(-3px, 3px);
      }

      40% {
        transform: translate(-3px, -3px);
      }

      60% {
        transform: translate(3px, 3px);
      }

      80% {
        transform: translate(3px, -3px);
      }

      100% {
        transform: translate(0);
      }
    }

    .main-nav {
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      z-index: 1000;
      background: rgba(255, 255, 255, 0.65);
      box-shadow: 0 4px 24px 0 rgba(31, 38, 135, 0.07);
      backdrop-filter: blur(12px);
      border-bottom: 1.5px solid rgba(255, 61, 0, 0.08);
      transition: background 0.3s, box-shadow 0.3s;
    }

    .nav-container {
      display: flex;
      justify-content: space-between;
      align-items: center;
      min-height: 72px;
    }

    .logo {
      font-size: 1.7rem;
      font-weight: 800;
      letter-spacing: 2px;
      position: relative;
      color: var(--primary);
      display: flex;
      align-items: center;
      gap: 8px;
      text-decoration: none;
      font-family: 'Montserrat', Arial, sans-serif;
      transition: color 0.2s;
    }

    .logo-accent {
      color: var(--primary);
      font-size: 2.1rem;
      margin-right: 4px;
      animation: logoDotPulse 1.8s infinite;
    }

    @keyframes logoDotPulse {

      0%,
      100% {
        opacity: 1;
        transform: scale(1);
      }

      50% {
        opacity: 0.5;
        transform: scale(1.2);
      }
    }

    .nav-links {
      display: flex;
      gap: 36px;
    }

    .nav-link {
      position: relative;
      font-size: 1rem;
      letter-spacing: 1px;
      text-transform: uppercase;
      color: var(--black);
      font-weight: 700;
      text-decoration: none;
      padding: 8px 0;
      transition: color 0.2s;
      overflow: hidden;
    }

    .nav-link::before {
      content: '';
      position: absolute;
      left: 0;
      bottom: 0;
      width: 100%;
      height: 2px;
      background: linear-gradient(90deg, var(--primary), transparent);
      transform: scaleX(0);
      transform-origin: left;
      transition: transform 0.4s cubic-bezier(.77, 0, .175, 1);
    }

    .nav-link:hover {
      color: var(--primary);
    }

    .nav-link:hover::before {
      transform: scaleX(1);
    }

    .hamburger {
      display: none;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      width: 36px;
      height: 36px;
      cursor: pointer;
      gap: 5px;
      z-index: 1100;
    }

    .hamburger span {
      display: block;
      width: 28px;
      height: 3px;
      background: var(--primary);
      border-radius: 2px;
      transition: all 0.3s;
    }

    /* Mobile Nav */
    .mobile-nav {
      position: fixed;
      top: 0;
      right: -100vw;
      width: 70vw;
      max-width: 320px;
      height: 100vh;
      background: rgba(255, 255, 255, 0.97);
      box-shadow: -4px 0 24px 0 rgba(255, 61, 0, 0.07);
      backdrop-filter: blur(10px);
      display: flex;
      flex-direction: column;
      align-items: flex-start;
      padding: 96px 32px 32px 32px;
      gap: 32px;
      z-index: 1050;
      transition: right 0.35s cubic-bezier(.77, 0, .175, 1);
    }

    .mobile-nav.open {
      right: 0;
    }

    .mobile-nav .nav-link {
      font-size: 1.2rem;
      color: var(--primary);
      font-weight: 700;
      margin-bottom: 12px;
      padding: 0;
    }

    @media (max-width: 900px) {
      .nav-links {
        display: none;
      }

      .hamburger {
        display: flex;
      }
    }

    .hero {
      display: flex;
      align-items: center;
      position: relative;
      overflow: hidden;
      //background: linear-gradient(120deg, #fff 60%, #ffe5db 100%);
      box-shadow: 0 8px 32px 0 rgba(255, 61, 0, 0.04);
      animation: fadeInHero 1.2s cubic-bezier(.22, 1, .36, 1);
    }

    @keyframes fadeInHero {
      from {
        opacity: 0;
        transform: translateY(40px);
      }

      to {
        opacity: 1;
        transform: none;
      }
    }

    .hero-content {
      position: relative;
      z-index: 2;
      text-align: left;
    }

    .hero .tags-container {
      opacity: 0;
      transform: translateY(30px);
      animation: heroFadeUp 0.7s 0.2s cubic-bezier(.22, 1, .36, 1) forwards;
    }

    .hero .tag:nth-child(1) {
      animation-delay: 0.25s;
    }

    .hero .tag:nth-child(2) {
      animation-delay: 0.35s;
    }

    .hero .tag:nth-child(3) {
      animation-delay: 0.45s;
    }

    .hero .tag:nth-child(4) {
      animation-delay: 0.55s;
    }

    .hero .tag {
      opacity: 0;
      transform: translateY(20px);
      animation: heroTagFadeUp 0.6s cubic-bezier(.22, 1, .36, 1) forwards;
    }

    @keyframes heroTagFadeUp {
      to {
        opacity: 1;
        transform: none;
      }
    }

    @keyframes heroFadeUp {
      to {
        opacity: 1;
        transform: none;
      }
    }

    .hero h1.glitch {
      opacity: 0;
      transform: translateY(30px);
      animation: heroTitleIn 0.8s 0.7s cubic-bezier(.22, 1, .36, 1) forwards;
    }

    @keyframes heroTitleIn {
      to {
        opacity: 1;
        transform: none;
      }
    }

    .hero p {
      opacity: 0;
      transform: translateY(30px);
      animation: heroFadeUp 0.7s 1.1s cubic-bezier(.22, 1, .36, 1) forwards;
    }

    .hero a.tag[style*="background: transparent"] {
      opacity: 0;
      transform: translateY(30px);
      animation: heroFadeUp 0.7s 1.3s cubic-bezier(.22, 1, .36, 1) forwards;
    }

    .hero h1 {
      font-size: 7vw;
      line-height: 1;
      margin-bottom: 32px;
      position: relative;
      display: inline-block;
      text-shadow: 0 2px 16px rgba(255, 61, 0, 0.08);
    }

    .hero p {
      font-size: 1.25rem;
      max-width: 520px;
      margin-bottom: 36px;
      line-height: 1.7;
      color: #333;
    }

    .tags-container {
      display: flex;
      flex-wrap: wrap;
      gap: 12px;
      margin-bottom: 48px;
    }

    .tag {
      padding: 10px 20px;
      border-radius: 100px;
      font-size: 13px;
      letter-spacing: 1px;
      text-transform: uppercase;
      background: var(--primary-light);
      color: var(--primary);
      border: none;
      box-shadow: 0 2px 8px rgba(255, 61, 0, 0.04);
      transition: background 0.2s, color 0.2s, transform 0.2s;
      cursor: pointer;
    }

    .tag:hover {
      background: var(--primary);
      color: var(--white);
      transform: translateY(-2px) scale(1.05);
    }

    .tag[style*="background: transparent"] {
      background: transparent !important;
      border: 1.5px solid var(--black);
      color: var(--black);
    }

    .tag[style*="background: transparent"]:hover {
      background: var(--black) !important;
      color: var(--white) !important;
    }

    .scroll-down {
      position: absolute;
      bottom: 40px;
      left: 50%;
      transform: translateX(-50%);
      display: flex;
      flex-direction: column;
      align-items: center;
      color: var(--primary);
      font-weight: 700;
      font-size: 1.1rem;
      letter-spacing: 2px;
      opacity: 0.8;
      animation: bounceScroll 2.2s infinite;
    }

    .scroll-down::after {
      content: '';
      display: block;
      width: 2px;
      height: 48px;
      background: linear-gradient(180deg, var(--primary), transparent);
      margin-top: 12px;
      border-radius: 2px;
      animation: scroll-pulse 2s infinite;
    }

    @keyframes bounceScroll {

      0%,
      100% {
        transform: translateX(-50%) translateY(0);
      }

      50% {
        transform: translateX(-50%) translateY(10px);
      }
    }

    .section-header {
      display: flex;
      justify-content: center;
      align-items: flex-end;
      margin-bottom: 60px;
	  text-align:center;
    }

    .section-title {
      font-size: 3rem;
      position: relative;
	  text-align:center;
    }

    .section-title .number {
      position: absolute;
      font-size: 8rem;
      opacity: 0.05;
      top: -50px;
      left: -30px;
      z-index: -1;
    }

    .faq {
      background: var(--gray);
	  border-radius: 7px;
    }

    .faq-content {
      display: grid;
      grid-template-columns: 1fr;
      gap: 80px;
    }

    .faq-text p {
      font-size: 1.1rem;
      margin-bottom: 20px;
      line-height: 1.8;
    }

    .contact-info {
      margin-top: 60px;
    }

    .contact-item {
      display: inline-flex;
      align-items: center;
      margin-bottom: 15px;
    }

    .contact-item i {
      width: 30px;
      color: var(--primary);
    }

    /* contact-page Section */
    .contact-page {
      position: relative;
    }

    .timeline {
      position: relative;
      max-width: 800px;
    }

    .timeline::before {
      content: '';
      position: absolute;
      top: 0;
      left: 20px;
      width: 1px;
      height: 100%;
      background: var(--black);
      opacity: 0.1;
    }

    .timeline-item {
      position: relative;
      padding-left: 60px;
      margin-bottom: 80px;
    }

    .timeline-date {
      position: absolute;
      left: 0;
      top: 5px;
      font-size: 14px;
      color: var(--primary);
    }

    .timeline-content {
      background: var(--white);
      padding: 30px;
      border-radius: 5px;
      box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
      position: relative;
      transition: transform 0.5s ease, box-shadow 0.5s ease;
    }

    .timeline-content:hover {
      transform: translateY(-10px);
      box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    }

    .timeline-content::before {
      content: '';
      position: absolute;
      top: 30px;
      left: -10px;
      width: 20px;
      height: 20px;
      background: var(--white);
      transform: rotate(45deg);
      box-shadow: -5px -5px 10px rgba(0, 0, 0, 0.02);
    }

    .timeline-content h3 {
      margin-bottom: 10px;
    }

    .timeline-content p {
      color: var(--dark-gray);
      margin-bottom: 15px;
    }

    .badges {
      display: flex;
      gap: 10px;
    }

    .badge {
      padding: 5px 10px;
      background: var(--primary-light);
      color: var(--primary);
      border-radius: 4px;
      font-size: 12px;
    }

    /* Skills Section */
    .skills {
      background: var(--black);
      color: var(--white);
    }

    .skills-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 40px;
    }

    .skill-category h3 {
      font-size: 1.5rem;
      margin-bottom: 30px;
      position: relative;
      display: inline-block;
    }

    .skill-category h3::after {
      content: '';
      position: absolute;
      bottom: -10px;
      left: 0;
      width: 40px;
      height: 2px;
      background: var(--primary);
    }

    .skill-tag {
      display: inline-block;
      padding: 8px 15px;
      margin: 0 10px 10px 0;
      background: rgba(255, 255, 255, 0.1);
      border-radius: 100px;
      font-size: 14px;
      transition: all 0.3s ease;
    }

    .skill-tag:hover {
      background: var(--primary);
      transform: translateY(-3px);
    }

    footer {
      padding: 64px 0 32px 0;
      text-align: center;
      background: #fff;
      border-radius: 24px 24px 0 0;
      box-shadow: 0 -2px 16px 0 rgba(255, 61, 0, 0.04);
    }

    .footer-links {
      display: flex;
      justify-content: center;
      gap: 32px;
      margin-bottom: 32px;
    }

    .footer-link {
      position: relative;
      font-size: 14px;
      letter-spacing: 1px;
      text-transform: uppercase;
      color: var(--primary);
      font-weight: 700;
      transition: color 0.2s;
    }

    .footer-link::after {
      content: '';
      position: absolute;
      bottom: -5px;
      left: 0;
      width: 0;
      height: 2px;
      background: var(--primary);
      transition: width 0.5s cubic-bezier(0.77, 0, 0.175, 1);
    }

    .footer-link:hover {
      color: var(--black);
    }

    .footer-link:hover::after {
      width: 100%;
    }

    .social-links {
      display: flex;
      justify-content: center;
      gap: 24px;
      margin-bottom: 40px;
    }

    .social-link {
      width: 44px;
      height: 44px;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      background: var(--gray);
      color: var(--primary);
      font-size: 1.3rem;
      transition: all 0.3s;
      box-shadow: 0 2px 8px rgba(255, 61, 0, 0.04);
	      text-decoration: none;
    }

    .social-link:hover {
      background: var(--primary);
      color: var(--white);
      transform: translateY(-5px) scale(1.1);
    }

    .copyright {
      font-size: 12px;
      letter-spacing: 1px;
      opacity: 0.7;
      color: #888;
    }

    @media (max-width: 1024px) {
      .hero h1 {
        font-size: 10vw;
      }

      .faq-content {
        grid-template-columns: 1fr;
        gap: 32px;
		text-align:center;
      }

      .skills-grid {
        grid-template-columns: 1fr 1fr;
        gap: 24px;
      }
    }

    @media (max-width: 768px) {
      .container {
        padding: 0 12px;
      }

      section {
        padding: 56px 0 40px 0;
      }

      .nav-links {
        display: none;
      }

      .hero h1 {
        font-size: 15vw;
      }

      .skills-grid {
        grid-template-columns: 1fr;
        gap: 32px;
      }

      .faq,
      .skills,
      footer {
        border-radius: 7px;
      }
    }

    @media (max-width: 480px) {
      .hero h1 {
        font-size: 2.2rem;
      }

      .section-title {
        font-size: 1.3rem;
      }

      .section-title .number {
        font-size: 2.5rem;
        top: -16px;
        left: -8px;
      }

      .timeline-content {
        padding: 18px;
      }
    }
    .cursor {
      position: fixed;
      top: 0;
      left: 0;
      width: 32px;
      height: 32px;
      background: rgba(255, 61, 0, 0.15);
      border: 2px solid var(--primary);
      border-radius: 50%;
      pointer-events: none;
      z-index: 2000;
      transform: translate(-50%, -50%);
      transition: background 0.2s, border 0.2s, transform 0.13s cubic-bezier(.22, 1, .36, 1);
      box-shadow: 0 2px 12px rgba(255, 61, 0, 0.08);
      backdrop-filter: blur(2px);
    }
    .cursor-hover {
      background: var(--primary);
      border-color: var(--black);
      transform: translate(-50%, -50%) scale(1.3);
    }
	@media (max-width: 768px) {
    section {
        padding: 65px 0 0px 0 !important;
    }
}

.urunkapsa {
  width: 100%;
  background: #fff3e7;
  border-radius: 8px;
  padding: 0px;
  box-shadow: 0 0 5px rgba(0,0,0,0.1);
  font-family: 'Poppins', sans-serif;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
  line-height: 1.3;
  letter-spacing: -0.2px;
  margin-bottom:9px;
  user-select: none;
}
.urunimg {
  position: relative;
}
.urunimg img {
  width: 100%;
  border-radius: 4px 4px 0px 0px;
}
.urunimg .etiket {
  position: absolute;
  top: 8px;
  right: 8px;
  background-color: orange;
  color: white;
  font-size: 12px;
  font-weight: 600;
  padding: 4px 6px;
  border-radius: 4px;
  z-index: 2;
}
.urunbaslik {
  font-weight: 700;
  font-size: 16px;
  margin-top: 10px;
}
.urundesc {
  font-size: 13px;
  color: #666;
  margin-top: 2px;
}
.yildizlar {
    color: #ff3d00;
    font-size: 18px;
    margin: 0px 0;
    font-weight: 700;
    line-height: 8px;
    margin-top: 4px;
}
.puan {
  font-weight: 600;
  color: #555;
  margin-right: 5px;
}
.fiyatlar {
  margin-top: 3px;
  position: relative;
}
.fiyatlar .eski {
    text-decoration: line-through;
    color: #888;
    margin-right: 0px;
    position: absolute;
    right: 0px;
    top: -5px;
    font-size: 25px;
}
.ekstra {
    margin-top: 5px;
    font-size: 13px;
    color: green;
    font-weight: 600;
}
.satinAlBtn {
  margin-top: 10px;
background-color: #ff3d00;
color: white;
border: none;
width: 100%;
padding: 10px;
font-size: 14px;
font-weight: 600;
border-radius: 6px;
cursor: pointer;
transition: background-color 0.3s;
text-decoration: none;
display: block;
text-align: center;
}
.satinAlBtn:hover {
  background-color: #218838;
}
.yildizlar .yildiz {
color: #ff3d00;
    font-size: 20px;
}
.urunkapsa-container {
  display: grid;
  grid-template-columns: repeat(1, 1fr); /* 4 ürün yan yana */
  gap:6px;padding:0px;
}

@media (max-width: 992px) {
  .urunkapsa-container {
    grid-template-columns: repeat(2, 1fr); /* Tablet */
  }
}

@media (max-width: 576px) {
  .urunkapsa-container {
    grid-template-columns: repeat(1, 1fr); /* Mobil */
  }
}

.dikkat {
color: red;
    font-size: 12px;
    margin-top: 9px;
    font-weight: 600;
}

@media (min-width: 100px) {
  .dikkat {
color: red;
    font-size: 11px;
    margin-top: 12px;
    font-weight: 600;
}
.fiyatlar .indirim {
           color: #ff3d00;
        font-weight: 700;
        font-size: 33px;
        position: absolute;
        right: 0px;
        top: 21px;
}
}

@media (max-width: 100px) {
  .dikkat {
	color: red;
		font-size: 12px;
		margin-top: 9px;
		font-weight: 600;
	}
	.fiyatlar .indirim {
    color: #ff3d00;
    font-weight: 700;
    font-size: 24px;
	position: absolute;
    right: 0px;
    top: 8px;
}
}

  .faq-item {
    margin-bottom: 10px;
    border-bottom: 1px solid #ddd;
  }

  .faq-question {
    width: 100%;
    background: #f7f7f7;
    border: none;
    padding: 10px 15px;
    text-align: left;
    cursor: pointer;
    font-weight: bold;
    font-size: 16px;
	text-align:center;
  }

  .faq-answer {
    padding: 10px 15px;
    display: none;
    background: #fff;
    font-size: 14px;
    color: #333;
  }

  .faq-item.active .faq-answer {
    display: block;
  }
  .fiyatlar-kapsa {
    display: block;width: 34%;
  }
  .urunicerikkapsa{
   padding-left: 9px;padding-right: 9px;padding-bottom: 10px;
  }
  .fiyatpuankapsa{
   margin-top: 4px;display:flex;
  }
  
   .footer-links {
    display: flex;
    justify-content: center;
    gap: 13px;
    margin-bottom: 32px;
    flex-wrap: wrap;
}
  @media (max-width: 1000px) {
 
  .footer-links a{
    display:block;
	width:100%
}
}
  .container {
  width: 100%;
  max-width: 800px; /* veya 100% bırak */
  margin: auto;
  padding: 10px;
  box-sizing: border-box;
}