
    @import url('https://fonts.googleapis.com/css2?family=Open+Sans:wght@400;600;700&display=swap');

    /* Renk değişkenleri tanımlaması */
    :root {
        --red: #d9011b;
        --dark-red: #b30116;
        --gray-light: #f4f4f4;
        --gray-medium: #ccc;
        --gray-dark: #333;
        --black: #000;
        --white: #fff;
    }

    /* Temel sıfırlama ve font ayarları */
    * {
        box-sizing: border-box;
        margin: 0;
        padding: 0;
        font-family: 'Open Sans', sans-serif;
    }

    body {
        background-color: var(--white);
        color: var(--gray-dark);
        line-height: 1.6;
        overflow-x: hidden;
    }

     .container {
            width: 100%;
            margin-left: auto;
            margin-right: auto;
            padding-left: 1rem;
            padding-right: 1rem;
        }

 .top-bar {
            background-color:#fdf0df;
            padding:20px;
            border-bottom: 1px solid #e5e7eb;
        }
        .top-bar .container {
            display: flex;
            justify-content: flex-end;
            align-items: center;
        }
        .top-bar a {
            font-size: 0.75rem;
            font-weight: 600;
            color: #000000;
            margin-left: 1rem;
            display: flex;
            align-items: center;    
            transition: color 0.2s ease;
        }
        .top-bar a:hover {
            color: #d5232a;
        }
        .top-bar a svg {
            height: 1rem;
            width: 1rem;
            margin-right: 0.25rem;
        }

    /* Desktop ikon satırı */
    .icon-row {
        display: flex;
        gap: 20px;
        align-items: center;
    }

    .desktop-icon {
        display: flex;
        align-items: center;
        gap: 8px;
        text-decoration: none;
        color: inherit;
        font-weight: 600;
        font-family: Arial, sans-serif;
    }

    .desktop-icon img {
        width: 35px;
        height: auto;
        display: block;
    }

    /* Ana header */
    .main-header {
        background-color: #d5232a;
        position: sticky;
        top: 0;
        z-index: 50;
        box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1), 0 1px 2px rgba(0, 0, 0, 0.06);
    }

    .header-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 0.5rem 0;
        }

    .logo {
            font-family: 'Anton', sans-serif;
            font-size: 2.7rem;
            font-weight: 900;
            color: #ffffff;
            letter-spacing: 0.050em;
            margin-left: 60px;
        }

    /* Arama çubuğu */
    .desktop-search-container {
        flex-grow: 1;
        max-width: 36rem;
        margin: 0 1rem;
        position: relative;
    }

    .search-input {
        width: 100%;
        padding: 0.625rem 3rem 0.625rem 1.25rem;
        border: 2px solid #d5232a;
        border-radius: 9999px;
        font-weight: 600;
    }

    .search-input:focus {
        outline: none;
        box-shadow: 0 0 0 2px rgba(213, 35, 42, 0.4);
        border: 3px solid rgb(132, 14, 14);
    }

    .search-icon {
        position: absolute;
        top: 50%;
        right: 1rem;
        transform: translateY(-50%);
        height: 1.5rem;
        width: 1.5rem;
        color: #d5232a;
    }

    /* Aksiyon butonları */
    .header-actions {
        display: flex;
        align-items: center;
    }

    .header-actions > * {
        margin-left: 1rem;
        color: #fff;
        transition: color 0.2s ease;
    }

    .header-actions > *:hover {
        color: #c4c2c2;
    }

    .header-actions svg {
        height: 2rem;
        width: 2rem;
        margin-right: 20px;
    }

    /* Mobil görünüm */
    #mobile-search {
        padding: 0.5rem 0;
        position: relative;
    }

    @media (max-width: 767px) {
        .desktop-search-container,
        .header-actions .desktop-icon {
            display: none;
        }

        #mobile-menu-button {
            display: block;
        }
    }

    @media (min-width: 768px) {
        .desktop-search-container {
            display: flex;
        }

        #mobile-menu-button,
        #mobile-search {
            display: none;
        }
    }

    .user-menu {
        display: flex;
        align-items: center;
        color: var(--gray-dark);
        text-decoration: none;
    }

    .user-menu span {
        margin-right: 5px;
        font-size: 14px;
    }

    .user-menu i {
        font-size: 18px;
    }

    /* Ana İçerik Stilleri */
    .main-content {
        padding: 40px 0;
    }

    .section-title {
        font-size: 24px;
        font-weight: 700;
        margin-bottom: 20px;
        border-bottom: 2px #fc5c2a;
        padding-bottom: 5px;
        display: inline-block;
        color:#fc5c2a;
    }

    .site-footer {
        background-color: #d5232a;
        color: white;
        font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
        padding: 40px 20px 20px;
    }

    .footer-container {
        max-width: 1200px;
        margin: 0 auto;
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 80px;
        flex-wrap: wrap;
    }

.footer-center {
  text-align: center;
  flex: 0 0 300px;
}

.footer-center h2 {
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 10px;
}


.phone-large {
  font-family: 'Anton', sans-serif;
  font-size: 4.5rem;
  font-weight: 900;
  letter-spacing: 0.05em;
  line-height: 1;
  margin: 0;
}

    .footer-side {
        flex: 1 1 250px;
        min-width: 220px;
    }

    .footer-left .footer-logo img {
        width: 180px;
        margin-bottom: 20px;
    }

    .social-icons {
        display: flex;
        gap: 20px;
        margin-bottom: 20px;
    }

    .social-link svg {
        width: 28px;
        height: 28px;
        fill: white;
        transition: fill 0.3s;
        cursor: pointer;
    }

    .social-link:hover svg {
        fill: #ffc107;
    }

    .contact-details p {
        font-size: 0.95rem;
        margin: 6px 0;
        max-width: 280px;
    }

    .footer-right h3 {
        font-size: 1.3rem;
        font-weight: 700;
        margin-bottom: 12px;
    }

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

    .footer-right ul li {
        margin-bottom: 12px;
    }

    .footer-right ul li a {
        color: white;
        text-decoration: none;
        font-weight: 600;
        transition: color 0.3s;
    }

    .footer-right ul li a:hover {
        color: #ffc107;
        text-decoration: underline;
    }

    .footer-bottom {
        border-top: 1px solid rgba(255 255 255 / 0.3);
        margin-top: 40px;
        padding-top: 20px;
        text-align: center;
        font-size: 0.9rem;
        font-weight: 400;
        color: #f0f0f0;
    }

    @media (max-width: 900px) {
        .footer-container {
            justify-content: center;
            gap: 40px;
        }

        .footer-center {
            order: -1;
            flex: 1 1 100%;
            margin-bottom: 30px;
        }

        .footer-side {
            flex: 1 1 100%;
            text-align: center;
            min-width: auto;
        }

        .contact-details p {
            max-width: none;
        }

   .phone-large {
    font-size: 3.2rem;
  }

        .social-icons {
            justify-content: center;
        }
    }

    /* İletişim Bilgileri Kutusu Stilleri */
    .contact-info {
        background-color: var(--gray-light);
        padding: 20px;
        border-radius: 8px;
        margin-bottom: 30px;
        box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
    }

    .contact-info h3 {
        font-size: 20px;
        font-weight: 600;
        margin-bottom: 10px;
        color: var(--dark-red);
    }

    .contact-info p {
        margin: 0 0 5px 0;
        font-size: 16px;
    }

    .contact-info strong {
        font-size: 18px;
    }

    .contact-info .phone-number {
        font-size: 20px;
        color: var(--red);
        font-weight: 700;
    }

    /* Form Bölümü Stilleri */
    .form-section {
        background-color: var(--white);
        padding: 20px;
        border: 1px solid var(--gray-medium);
        border-radius: 8px;
        box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
    }

    .form-section h3 {
        font-size: 20px;
        font-weight: 600;
        margin-bottom: 20px;
        color: var(--dark-red);
    }

    .form-row {
        display: flex;
        gap: 20px;
        margin-bottom: 15px;
        flex-wrap: wrap;
    }

    .form-group {
        flex: 1;
        min-width: 280px;
    }

    .form-group.full-width {
        flex: 1 100%;
        min-width: unset;
    }

    .form-group label {
        display: block;
        margin-bottom: 5px;
        font-size: 14px;
        font-weight: 600;
        color: var(--gray-dark);
    }

    .form-group input,
    .form-group select,
    .form-group textarea {
        width: 100%;
        padding: 10px;
        border: 1px solid var(--gray-medium);
        border-radius: 5px;
        font-size: 14px;
        background-color: var(--gray-light);
    }

    .form-group textarea {
        min-height: 120px;
        resize: vertical;
    }

    .form-group small {
        display: block;
        margin-top: 5px;
        font-size: 12px;
        color: var(--gray-dark);
    }

    .form-footer {
        display: flex;
        justify-content: space-between;
        align-items: center;
        margin-top: 20px;
        flex-wrap: wrap;
        gap: 15px;
    }

    .form-footer a {
        color: var(--dark-red);
        text-decoration: none;
        font-size: 14px;
        transition: color 0.3s ease;
    }

    .form-footer a:hover {
        color: var(--red);
    }

    .form-footer button {
        background-color: var(--red);
        color: var(--white);
        border: none;
        padding: 12px 25px;
        border-radius: 5px;
        cursor: pointer;
        font-size: 16px;
        font-weight: 600;
        text-transform: uppercase;
        transition: background-color 0.3s ease;
    }

    .form-footer button:hover {
        background-color: var(--dark-red);
    }

    /* Mağazalar Bölümü Stilleri */
    .stores-section {
        margin-top: 40px;
    }

    .stores-container {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 20px;
    }

    .store-card {
        background-color: var(--white);
        border: 1px solid var(--gray-medium);
        border-radius: 8px;
        padding: 20px;
        box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
        display: flex;
        flex-direction: column;
    }

    .store-card h4 {
        font-size: 18px;
        font-weight: 600;
        margin-bottom: 10px;
        color: var(--dark-red);
    }

    .store-card p {
        font-size: 14px;
        margin-bottom: 5px;
    }

    .store-card .contact-details {
        margin-top: 15px;
        padding-top: 15px;
        border-top: 1px dashed var(--gray-medium);
    }

    .store-card .contact-details p {
        display: flex;
        align-items: center;
        margin-bottom: 8px;
    }

    .store-card .contact-details i {
        color: var(--red);
        margin-right: 10px;
        width: 20px;
        text-align: center;
    }

    .store-card .map-container {
        border: 1px solid var(--gray-medium);
        border-radius: 8px;
        overflow: hidden;
        height: 200px;
        margin-top: 15px;
        flex-grow: 1;
    }

    .store-card .map-container iframe {
        width: 100%;
        height: 100%;
        border: 0;
    }

    .mobile-apps {
        display: flex;
        align-items: center;
        flex-wrap: wrap;
        gap: 10px;
    }

    .mobile-apps span {
        font-size: 14px;
        margin-right: 10px;
        white-space: nowrap;
    }

    .mobile-apps a img {
        height: 35px;
        transition: transform 0.2s ease;
    }

    .mobile-apps a img:hover {
        transform: translateY(-3px);
    }

    /* Medya Sorguları (Responsive Tasarım) */
    @media (max-width: 992px) {
        .top-bar {
            flex-direction: column;
            text-align: center;
        }

        .header-left,
        .header-right {
            margin-top: 15px;
            justify-content: center;
            width: 100%;
        }

        .search-bar {
            margin-left: 0;
            margin-top: 15px;
            max-width: 100%;
        }

        .mobile-apps {
            margin-right: 0;
            margin-bottom: 20px;
            justify-content: center;
        }
    }

    .btn-primary {
        background-color: #d5232a;
        color: white;
    }

    .btn-secondary {
        background-color: #e5e7eb;
        color: #000000;
    }

     .order-options {
            background-color: #f9fafb;
            padding: 1rem;
            border-radius: 0.5rem;
            border: 1px solid #e5e7eb;
            display: flex;
            justify-content: space-between;
            align-items: center;
            gap: 1rem;
        }
        .order-options-buttons { display: flex; gap: 1rem; }
        .order-options-buttons button {
            font-weight: 700;
            padding: 0.75rem 1.5rem;
            border-radius: 9999px;
            border: white;
        }
        @media (max-width: 639px) {
            .order-options { flex-direction: column; }
            .address-input-wrapper { width: 100%; }
            .dere{
                width: 25px;  
                position:absolute;
                 left:210px;
                  top:-20px;
            }
        }
    @media (max-width: 768px) {
        .form-row {
            flex-direction: column;
            gap: 0;
        }

        .form-group {
            margin-bottom: 15px;
            min-width: unset;
        }

        .form-footer {
            flex-direction: column;
            align-items: stretch;
        }

        .form-footer button {
            width: 100%;
        }

        .mobile-apps span {
            width: 100%;
            text-align: center;
            margin-bottom: 5px;
        }

        .mobile-apps a {
            flex-basis: 48%;
            text-align: center;
        }
    }
