
    /* Reset */
    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }

    body {
      font-family: 'Quicksand', sans-serif;
      background-color: var(--bg);
      color: var(--text);
      line-height: 1.6;
      scroll-behavior: smooth;
    }
    

    ul, li {
      list-style: none;
    }

    a {
      text-decoration: none;
      color: inherit;
    }

    img {
      max-width: 100%;
      display: block;
    }

    .container {
      width: 90%;
      max-width: 1100px;
      margin: 0 auto;
    }

    .section {
      padding: 80px 0;
    }

    .section-title {
      text-align: center;
      margin-bottom: 75px;
      font-size: 2.5rem;
      color: var(--dark);
      position: relative;
    }

    .section-title::after {
      content: '';
      position: absolute;
      bottom: 0px;
      left: 50%;
      transform: translateX(-50%);
      width: 80px;
      height: 4px;
      background: var(--red);
      border-radius: 2px;
    }

    .btn {
      display: inline-block;
      background: var(--red);
      color: var(--white);
      padding: 14px 28px;
      border-radius: 30px;
      font-weight: 600;
      font-size: 1.1rem;
      transition: all 0.3s;
      border: none;
      cursor: pointer;
      box-shadow: 0 4px 8px rgba(0,0,0,0.2);
    }

    .btn:hover {
      background: var(--blue);
      transform: translateY(-3px);
      box-shadow: 0 6px 12px rgba(0,0,0,0.25);
    }

    /* === Navbar === */
    .navbar {
      background: var(--red);
      padding: 15px 0;
      position: sticky;
      top: 0;
      z-index: 1000;
      box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    }

    .navbar .container {
      display: flex;
      justify-content: space-between;
      align-items: center;
    }

    .logo {
      display: flex;
      align-items: center;
      gap: 15px;
      color: var(--white);
    }

    .logo img {
      width: 48px;
      height: 48px;
      border-radius: 50%;
    }

    .logo h1 {
      font-size: 20px;
      font-weight: 700;
      color: var(--white);
    }

    .nav-links {
      display: flex;
      gap: 25px;
    }

    .nav-links a {
      color: var(--white);
      font-weight: 600;
      transition: all 0.3s;
      position: relative;
    }

    .nav-links a::after {
      content: '';
      position: absolute;
      bottom: -5px;
      left: 0;
      width: 0;
      height: 2px;
      background-color: var(--white);
      transition: width 0.3s ease;
    }

    .nav-links a:hover::after,
    .nav-links a.active::after {
      width: 100%;
    }

    /* === Hero Section === */
    #hero {
      background: 
        linear-gradient(rgba(0,0,0,0.3), rgba(0,0,0,0.3)), 
        url('../assets/images/orman4k.jpg') center/cover;
      height: 80vh;
      display: flex;
      align-items: center;
      text-align: center;
      color: var(--white);
      padding: 0 20px;
    }
    
    .hero-content {
      max-width: 800px;
      margin: 0 auto;
    }

    #hero h1 {
      font-size: 3.5rem;
      margin-bottom: 20px;
      font-weight: 700;
      text-shadow: 0 2px 4px rgba(0,0,0,0.5);
    }

    #hero p {
      font-size: 1.2rem;
      margin-bottom: 30px;
      max-width: 700px;
      margin-left: auto;
      margin-right: auto;
      text-shadow: 0 1px 3px rgba(0,0,0,0.5);
    }

    /* === Slider Section === */
    #urunler {
      background-color: var(--white);
    }

    .carousel-container {
      position: relative;
      overflow: hidden;
      margin: 0 auto;
      max-width: 1200px;
      padding: 20px 0;
      width:1200px;
      margin: -49px;
      padding-inline: 2px;
    }

    .carousel-track {
      display: flex;
      transition: transform 0.5s ease;
      gap: 25px;
      padding: 10px 0;
    }

    .product-card {
      flex: 0 0 280px;
      background: var(--white);
      border-radius: 12px;
      box-shadow: 0 4px 15px rgb(0 0 0 / 15%);
      transition: all 0.3s;
      overflow: hidden;
      text-align: center;
      position: relative;
      border: 3px solid var(--blue);
    }

    .product-card:hover {
      transform: translateY(-10px);
      box-shadow: 0 8px 25px rgba(0,0,0,0.15);
    }

    .product-card img {
      width: 100%;
      height: 200px;
      object-fit: contain;
      border-bottom: 1px solid var(--border);
    }

    .product-card-content {
      padding: 20px 15px;
    }

    .product-card h3 {
      margin: 0 0 8px;
      font-size: 18px;
      color: var(--dark);
      font-weight: 600;
    }

    .product-card p {
      color: var(--accent);
      font-size: 14px;
      margin-bottom: 15px;
      min-height: 40px;
    }

    .product-price {
      color: var(--red);
      font-weight: 700;
      font-size: 1.1rem;
      margin: 10px 0;
      display: none;
    }

    .carousel-controls {
      display: flex;
      justify-content: center;
      gap: 15px;
      margin-top: 55px;
    }
    
    #allCategory-btn {
      display: flex;
      align-items: center;
      justify-content: center;
      cursor: pointer;
      display: none;
    }
    
    #allctg {
        margin-top: 25px;
    }

    .carousel-btn {
      width: 50px;
      height: 50px;
      background: var(--white);
      border: 2px solid var(--red);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      cursor: pointer;
      transition: all 0.3s;
      color: var(--red);
      font-size: 1.2rem;
    }

    .carousel-btn:hover {
      background: var(--red);
      color: var(--white);
    }

    /* === Features Section === */
    #features {
      background: var(--light-gray);
    }

    .features-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 30px;
    }

    .feature-card {
      background: var(--white);
      border-radius: 12px;
      padding: 35px 25px;
      text-align: center;
      box-shadow: 0 4px 15px rgba(0,0,0,0.05);
      transition: all 0.3s;
    }

    .feature-card:hover {
      transform: translateY(-8px);
      box-shadow: 0 8px 25px rgba(0,0,0,0.08);
    }

    .feature-icon {
      font-size: 3rem;
      color: var(--blue);
      margin-bottom: 20px;
    }

    .feature-card h3 {
      font-size: 1.5rem;
      margin-bottom: 15px;
      color: var(--dark);
    }

    .feature-card p {
      color: var(--text);
      line-height: 1.8;
    }

    /* === Categories Section === */
    .categories-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
      gap: 25px;
    }

    .category-card {
      position: relative;
      height: 300px;
      border-radius: 12px;
      overflow: hidden;
      box-shadow: var(--shadow);
      transition: all 0.3s;
      cursor: pointer;
    }
    
    .category-card:hover {
      transform: scale(1.03);
      box-shadow: 0 8px 25px rgba(0,0,0,0.15);
    }

    .category-card img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform 0.5s ease;
    }

    .category-card:hover img {
      transform: scale(1.05);
    }

    .category-overlay {
      position: absolute;
      bottom: 0;
      left: 0;
      width: 100%;
      background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
      padding: 25px 20px;
      color: var(--white);
    }

    .category-overlay h3 {
      font-size: 1.5rem;
      margin-bottom: 5px;
    }

    /* === About Section === */
    #hakkimizda {
      background: var(--light-gray);
    }

    .about-content {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 50px;
      align-items: center;
    }

    .about-text h2 {
      font-size: 2.5rem;
      margin-bottom: 25px;
      color: var(--dark);
    }

    .about-text p {
      margin-bottom: 20px;
      line-height: 1.8;
    }

    .about-image {
      border-radius: 12px;
      overflow: hidden;
      box-shadow: 0 10px 30px rgba(0,0,0,0.15);
    }

    .about-image img {
      width: 100%;
      height: auto;
      transition: transform 0.5s ease;
      border: 3px solid var(--blue);
      border-radius: 15px;
    }

    .about-image:hover img {
      transform: scale(1.03);
    }

    /* === Testimonials Section === */
    #testimonials {
      background: var(--white);
    }

    .testimonials-container {
      position: relative;
      overflow: hidden;
      max-width: 1200px;
      margin: 0 auto;
      padding: 20px 0;
    }

    .testimonials-track {
      display: flex;
      transition: transform 0.5s ease;
      gap: 25px;
      padding: 10px 0;
    }

    .testimonial-card {
      display: flex;
      flex-direction: column;
      flex: 0 0 350px;
      background: var(--light-gray);
      border-radius: 12px;
      padding: 30px;
      box-shadow: 0 4px 15px rgba(0,0,0,0.05);
      position: relative;
      border: 3px solid var(--blue);
    }

    .testimonial-card::before {
      content: '"';
      position: absolute;
      top: 20px;
      left: 20px;
      font-size: 4rem;
      color: var(--red);
      opacity: 0.2;
      font-family: serif;
      line-height: 1;
    }

    .testimonial-content {
      margin-top: 30px;
      line-height: 1.8;
      color: var(--text);
    }

    .testimonial-author {
      display: flex;
      align-items: center;
      margin-top: auto;
      padding-top: 25px;
    }

    .author-img {
      width: 60px;
      height: 60px;
      border-radius: 50%;
      overflow: hidden;
      margin-right: 15px;
    }

    .author-info h4 {
      font-size: 1.1rem;
      margin-bottom: 5px;
    }

    .author-info p {
      color: var(--accent);
      font-size: 0.9rem;
    }

    .testimonials-controls {
      display: flex;
      justify-content: center;
      gap: 15px;
      margin-top: 30px;
    }

    /* === Contact Section === */
    #iletisim {
      background-color: var(--light-gray);
    }

    .contact-container {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 50px;
    }

    .contact-info {
      background: var(--white);
      border-radius: 12px;
      padding: 40px;
      box-shadow: var(--shadow);
    }

    .contact-form {
      background: var(--white);
      border-radius: 12px;
      padding: 40px;
      box-shadow: var(--shadow);
    }

    .contact-info h3 {
      font-size: 1.8rem;
      margin-bottom: 25px;
      color: var(--dark);
    }

    .contact-item {
      display: flex;
      align-items: flex-start;
      margin-bottom: 25px;
    }

    .contact-icon {
      font-size: 1.5rem;
      color: var(--red);
      margin-right: 15px;
      min-width: 30px;
    }
    
    .contact-text h4 {
      font-size: 1.2rem;
      margin-bottom: 5px;
    }

    .contact-text p {
      color: var(--text);
    }

    .form-group {
      margin-bottom: 20px;
    }

    .form-group label {
      display: block;
      margin-bottom: 8px;
      font-weight: 600;
      color: var(--dark);
    }

    .form-group input,
    .form-group textarea {
      width: 100%;
      padding: 12px 15px;
      border: 1px solid var(--border);
      border-radius: 8px;
      font-family: 'Quicksand', sans-serif;
      font-size: 1rem;
    }

    .form-group textarea {
      min-height: 150px;
      resize: vertical;
    }

    .map-container {
      margin-top: 30px;
      height: 300px;
      border-radius: 12px;
      overflow: hidden;
      box-shadow: var(--shadow);
    }

    .map-container iframe {
      width: 100%;
      height: 100%;
      border: none;
    }

    /* === Newsletter Section === */
    #newsletter {
      background: var(--blue);
      color: var(--white);
      text-align: center;
    }

    #newsletter h2 {
      font-size: 2.5rem;
      margin-bottom: 20px;
    }

    #newsletter p {
      max-width: 600px;
      margin: 0 auto 30px;
    }

    .newsletter-form {
      display: flex;
      max-width: 500px;
      margin: 0 auto;
    }

    .newsletter-form input {
      flex: 1;
      padding: 15px 20px;
      border: none;
      border-radius: 30px 0 0 30px;
      font-size: 1rem;
    }

    .newsletter-form button {
      background: var(--dark);
      color: var(--white);
      border: none;
      padding: 0 30px;
      border-radius: 0 30px 30px 0;
      font-weight: 600;
      cursor: pointer;
      transition: all 0.3s;
    }

    .newsletter-form button:hover {
      background: #1a1a1a;
    }

    /* === Footer === */
    .footer {
      background: var(--dark);
      color: var(--white);
      padding: 50px 0 20px;
    }

    .footer-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
      gap: 40px;
      margin-bottom: 40px;
    }

    .footer-column h3 {
      font-size: 1.3rem;
      margin-bottom: 20px;
      position: relative;
      display: inline-block;
    }

    .footer-column h3::after {
      content: '';
      position: absolute;
      bottom: -5px;
      left: 0;
      width: 40px;
      height: 2px;
      background: var(--red);
    }
    
    .footer-column .contact-info {
        background-color: var(--dark);
        border: 3px solid var(--blue);
    }

    .footer-links li {
      margin-bottom: 12px;
    }

    .footer-links a {
      color: #ddd;
      transition: all 0.3s;
    }

    .footer-links a:hover {
      color: var(--red);
      padding-left: 5px;
    }

    .contact-info li {
      display: flex;
      align-items: flex-start;
      margin-bottom: 15px;
    }

    .contact-info i {
      margin-right: 10px;
      color: var(--blue);
      min-width: 20px;
    }

    .social-links {
      display: flex;
      gap: 15px;
      margin-top: 20px;
    }

    .social-links a {
      display: flex;
      align-items: center;
      justify-content: center;
      width: 40px;
      height: 40px;
      background: rgba(255,255,255,0.1);
      border-radius: 50%;
      transition: all 0.3s;
      color: var(--white);
    }

    .social-links a:hover {
      background: var(--red);
      transform: translateY(-3px);
    }

    .copyright {
      text-align: center;
      padding-top: 30px;
      border-top: 1px solid rgba(255,255,255,0.1);
      font-size: 0.9rem;
      color: #aaa;
    }
    
    /* Modal Styling */
    .modal {
      display: none;
      position: fixed;
      z-index: 2000;
      left: 0;
      top: 0;
      width: 100%;
      height: 100%;
      overflow: auto;
      background-color: rgba(0,0,0,0.7);
    }
    
    .modal-content {
      background-color: var(--white);
      margin: 5% auto;
      padding: 30px;
      border-radius: 12px;
      width: 80%;
      max-width: 800px;
      position: relative;
      max-height: 80vh;
      overflow-y: auto;
    }
    
    .close {
      position: absolute;
      top: 15px;
      right: 20px;
      font-size: 28px;
      font-weight: bold;
      cursor: pointer;
      color: var(--dark);
    }
    
    .close:hover {
      color: var(--red);
    }
    
    .modal-content h2 {
      color: var(--dark);
      margin-bottom: 20px;
      border-bottom: 2px solid var(--red);
      padding-bottom: 10px;
    }
    
    .faq-item, .privacy-section, .service-section {
      margin-bottom: 20px;
      padding-bottom: 20px;
      border-bottom: 1px solid var(--border);
    }
    
    .faq-item h3, .privacy-section h3, .service-section h3 {
      color: var(--red);
      margin-bottom: 10px;
    }
    
    .service-section ul {
      padding-left: 20px;
      margin-top: 10px;
    }
    
    .service-section li {
      margin-bottom: 8px;
      position: relative;
      padding-left: 15px;
    }
    
    .service-section li:before {
      content: "•";
      position: absolute;
      left: 0;
      color: var(--red);
    }
    
    .tracking-form {
      display: flex;
      flex-direction: column;
      gap: 15px;
      max-width: 500px;
      margin: 20px 0;
    }
    
    .tracking-form input {
      padding: 12px 15px;
      border: 1px solid var(--border);
      border-radius: 8px;
      font-family: 'Quicksand', sans-serif;
      font-size: 1rem;
    }
    
    .tracking-status {
      margin-top: 30px;
      padding: 20px;
      background-color: var(--light-gray);
      border-radius: 8px;
      border-left: 4px solid var(--red);
    }
    
    .status-item {
      display: flex;
      align-items: center;
      padding: 10px 0;
      border-bottom: 1px solid var(--border);
    }
    
    .status-item:last-child {
      border-bottom: none;
    }
    
    .status-icon {
      width: 24px;
      height: 24px;
      border-radius: 50%;
      background-color: var(--light-gray);
      border: 2px solid var(--border);
      margin-right: 15px;
      display: flex;
      align-items: center;
      justify-content: center;
    }
    
    .status-active .status-icon {
      background-color: var(--red);
      color: white;
      border-color: var(--red);
    }
    
    .status-completed .status-icon {
      background-color: var(--red);
      color: white;
      border-color: var(--red);
    }
    
    .status-completed .status-icon:after {
      content: "✓";
      font-size: 14px;
    }

    /* Responsive */
    @media (max-width: 992px) {
      .about-content {
        grid-template-columns: 1fr;
        gap: 30px;
      }
      
      #hero h1 {
        font-size: 2.8rem;
      }
      
      .contact-container {
        grid-template-columns: 1fr;
      }
      
      .modal-content {
        width: 90%;
      }
    }


    @media (max-width: 768px) {
      .nav-links {
        gap: 15px;
      }
      
      #hero h1 {
        font-size: 2.2rem;
      }
      
      #hero p {
        font-size: 1rem;
      }
      
      .newsletter-form {
        flex-direction: column;
        gap: 10px;
      }
      
      .newsletter-form input,
      .newsletter-form button {
        border-radius: 30px;
        width: 100%;
        height: 40px;
      }
      
      .modal-content {
        padding: 20px;
      }
      
      .carousel-container {
        max-width: 290px;
        margin: 0 auto;
        padding-left: 4px;
      }
      
    .testimonials-container {
        max-width: 300px;
    }
      
      .product-card {
        box-shadow: 0 4px 6px rgb(0 0 0 / 15%);
      }
    }

    @media (max-width: 576px) {
      .logo h1 {
        font-size: 18px;
      }
      
      .nav-links {
        gap: 10px;
        font-size: 14px;
      }
      
      #hero {
        height: 70vh;
      }
      
      #hero h1 {
        font-size: 1.8rem;
      }
      
      .btn {
        padding: 12px 20px;
        font-size: 1rem;
      }
      
      .section-title {
        font-size: 2rem;
      }
      
      .navbar .container {
        flex-direction: column;
        gap: 15px;
      }
      
      .testimonial-card {
        flex: 0 0 300px;
      }
    }
    
    /* Fixed Buttons Styles */
    .fixed-buttons {
      position: fixed;
      bottom: 30px;
      right: 30px;
      display: flex;
      flex-direction: column;
      gap: 15px;
      z-index: 999;
    }
      
    .whatsapp-btn, .map-btn {
      width: 60px;
      height: 60px;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      color: white;
      font-size: 28px;
      box-shadow: 0 4px 12px rgba(0,0,0,0.2);
      transition: all 0.3s ease;
    }
      
    .whatsapp-btn {
      background-color: var(--red); /* WhatsApp green */
    }
      
    .map-btn {
      background-color: var(--red); /* Your theme green */
    }
      
    .whatsapp-btn:hover, .map-btn:hover {
      transform: translateY(-5px);
      box-shadow: 0 8px 20px rgba(0,0,0,0.3);
    }
      
     /* Pulse animation for WhatsApp */
    @keyframes pulse {
      0% { transform: scale(1); }
      50% { transform: scale(1.1); }
      100% { transform: scale(1); }
    }
      
    .whatsapp-btn {
      animation: pulse 2s infinite;
    }
      
    /* Responsive adjustments */
    @media (max-width: 768px) {
      .fixed-buttons {
        bottom: 20px;
        right: 20px;
      }
      
      .carousel-controls {
        display: flex;
        justify-content: center;
        gap: 15px;
        margin-top: 20px;
      }
      .carousel-controls .carousel-btn {
        display: flex;
      } 
        
        .whatsapp-btn, .map-btn {
          width: 50px;
          height: 50px;
          font-size: 24px;
        }
    }
    
    #cartButton {
        color: white;
        font-weight: 900;
        transition: all 0.3s;
        position: relative;
        font-size: 20px;
        display: inline-flex;
        align-items: center;
        margin-left: 20px;
        cursor: pointer;
    }
    
    #cart-modal {
        opacity: 0;
        display: none;
        max-width: 411px;
        width: 100%;
        position: absolute;
        top: 85px;
        right: 10%;
        z-index: 10000;
        padding: 20px;
        border-radius: 15px;
        background: #ffffff;
        border: 3px solid #000;
        transition: opacity .2s 
    linear;
        position: absolute;
        font-size: 14px;
        text-align: center;
    }
        
    @media (max-width: 1024px) {
        #cartButton {

        }
        
        #cart-modal {
            top: 90px;
            width: 80%;
            right: 3%;
        }
    }    
    
    @media (max-width: 768px) {
        #cartButton {

        }
        
        #cart-modal {
            top: 125px;
            width: 60%;
        }
    }
    
    @media (max-width: 576px) {
        #cartButton {

        }
        
        #cart-modal {
            top: 125px;
            width: 90%;
            right: 3%;
        }
    }
    
/* ======================================= */
/* ====== ÜRÜN ÖNİZLEME MODALI (PREVIEW MODAL) ====== */
/* ======================================= */

#previewProduct-modal {
    display: none; /* Varsayılan olarak gizli */
    position: fixed;
    z-index: 10000; /* Sepet modalından daha yüksek */
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.7);
    justify-content: center;
    align-items: center;
    transition: background-color 0.3s ease;
    opacity: 0; /* Başlangıçta görünmez */
}

#previewProduct-modal.is-open {
    opacity: 1;
}

#previewProduct-modal .modal-content {
    background-color: #fefefe;
    margin: 15% auto; /* Dikeyde ortalama */
    padding: 30px;
    border: 1px solid #888;
    width: 90%;
    max-width: 800px; /* Maksimum genişlik */
    border-radius: 12px;
    position: relative;
    transform: scale(0.9);
    transition: transform 0.3s ease;
}

#previewProduct-modal.is-open .modal-content {
    transform: scale(1);
}

#previewProduct-modal .close {
    color: #aaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
    position: absolute;
    top: 15px;
    right: 25px;
    cursor: pointer;
}

#previewProduct-modal .close:hover,
#previewProduct-modal .close:focus {
    color: #000;
    text-decoration: none;
    cursor: pointer;
}

.preview-container {
    display: flex;
    gap: 30px;
    margin-top: 20px;
}

.preview-image {
    flex: 1;
    max-width: 300px;
    min-width: 200px;
}

.preview-image img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    object-fit: cover;
}

.preview-details {
    flex: 2;
    display: flex;
    flex-direction: column;
}

.preview-details h3 {
    font-size: 1.8rem;
    margin-bottom: 10px;
}

.preview-details p {
    font-size: 1rem;
    color: #555;
    margin-bottom: 20px;
}

.preview-price {
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--accent-color, #e53e3e); /* Ana renklerinizle uyumlu yapın */
    margin: 15px 0 25px 0;
}

/* Sepete Ekle Animasyonu */
.flying-product-animation {
    background: #fff;
    border: 2px solid #ccc;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

/* Responsive Düzenleme */
@media (max-width: 768px) {
    #previewProduct-modal .modal-content {
        width: 95%;
        margin: 10% auto;
        padding: 20px;
    }
    .preview-container {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
    .preview-image {
        max-width: 100%;
        order: -1; /* Resmi üste taşı */
    }
    .preview-details {
        text-align: left;
    }
    .preview-actions {
        display: flex;
        justify-content: center;
    }
}
    