/* Genel ayarlar */
body {
    margin: 0;
    padding: 0;
}

.brandColor {
    color: #03b28f;
    font-family: "Bungee", sans-serif !important;
}

a {
    color: inherit;
}


.logo {
    display: flex;
    align-items: center;  /* Logoyu ve yazıyı dikeyde hizalar */
    gap: 6px;  /* Logo ve yazı arasındaki boşluk */
    white-space: nowrap;  /* Yazının alt satıra düşmesini engeller */
}

.cardIndex img {
    max-width: 100%;
    height: auto;
    border-radius: 8px; /* Resimlerin köşelerini yumuşat */
    transition: transform 0.3s ease-in-out;
}



.brand-text {
    font-family: "Bungee", sans-serif;
    font-size: 42px;
    font-weight: bold;
    line-height: 1;  /* iOS'taki boşluk sorununu düzeltir */
}

@keyframes loadingDots {
 0% { opacity: 1; }
    33% { opacity: 0.6; }
    66% { opacity: 0.3; }
    100% { opacity: 1; }
}

#loading-dots {
    display: inline-block;
    animation: loadingDots 2.5s infinite;
}






/* Ana konteyner */
.container {
    width: auto;
    /* Sayfanın genişliğinin %70'ini kaplar */
    margin: 0 auto;
    /* Ortalar */

}

.google-progress-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 20px auto;
    padding: 0 10px;
    width: 40%;
}

.google-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    position: relative;
    flex: 1;
    color: #757575;
    /* Varsayılan metin rengi */
}

.google-step-icon {
    width: 48px;
    height: 48px;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #e0e0e0;
    /* Varsayılan arka plan rengi */
    border-radius: 50%;
    font-size: 24px;
    margin-bottom: 10px;
    font-family: "Bungee", sans-serif;
}

.google-step.completed .google-step-icon {
    background-color: #1dd3b0;
    /* Tamamlanmış adımlar için mavi renk */
    color: white;
}

.google-step.current .google-step-icon {
    background-color: #1dd3b0;
    /* Geçerli adım için mavi renk */
    color: white;
    font-weight: bold;
}

.google-step.current .google-step-label {
    color: #1dd3b0;
    /* Geçerli adım etiketi için vurgu rengi */
    font-weight: bold;
}

.google-step-label {
    font-size: 12px;
    font-family: "Poppins", sans-serif;
}

/* Kesik Çizgi */
.google-step-connector {
    flex: 1;
    height: 2px;
    border-bottom: 2px dashed #e0e0e0;
    /* Kesik çizgi */
    margin: 0 10px;
}

header {
    position: fixed;
    /* Sayfanın üstüne sabitler */
    top: 0;
    /* Sayfanın en üstüne hizalar */
    left: 0;
    /* Sol kenara hizalar */
    width: 100%;
    /* Header'ın tam genişliğe sahip olmasını sağlar */
    background-color: #FEFAE0;
    /* İhtiyaca göre arka plan rengi */
    z-index: 1000;
    /* Diğer içeriklerin altında kalmaması için z-index kullanılır */
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
    /* Hafif bir gölge ekleyerek sabitliği vurgulayabilirsiniz */
}

/* Hamburger Icon Styling */
.hamburger-icon {
    transition: transform 0.5s ease, opacity 0.5s ease;
    /* Geçiş efekti */
    width: 40px;
}

.active .hamburger-icon {
    transform: rotate(180deg);
    /* Döndürme efekti */
    opacity: 1;
    /* Opaklık değişimi */
}

/* Optional: You can style the cross icon appearance here */
.hamburger-icon i {
    transition: color 0.3s ease;
}

.hamburger-icon.active i {
    color: #495057;
    /* Change color on active, for example */
}


.item {
    display: flex;
    align-items: center;
    margin-bottom: -10px;
    /* Alt alta yerleştirirken boşluk bırak */
}

.image {
    width: 10%;
    /* Resmin genişliği (istediğiniz gibi ayarlayabilirsiniz) */
    margin-right: 20px;
    /* Resim ve metin arasında boşluk bırak */
}

.text {
    flex-grow: 1;
    /* Metnin geri kalan genişliği kaplamasına izin ver */
    font-size: 16px;
    /* Metin boyutu */
    font-family: "Montserrat", sans-serif;
}

.main-title {
    font-size: 42px;
    /* Ana başlık boyutu */
    font-family: "Montserrat", sans-serif;
    font-weight: 700;
    /* Bold */
    color: #454545;
}

.main-title2 {
    font-size: 3.4rem;
    /* Ana başlık boyutu */
    font-family: "Montserrat", sans-serif;
    font-weight: 800;
    /* Bold */
    color: #454545;
}

.main-title3 {
    font-size: 40px;
    /* Ana başlık boyutu */
    font-family: "Montserrat", sans-serif;
    font-weight: 900;
    /* Bold */
    color: #454545;
}

.subtitle {
    font-size: 14px;
    /* Alt başlık boyutu */
    font-family: "Open Sans", sans-serif;
    font-weight: 400;
    /* Medium */
    margin-bottom: 30px;
    color: #373A40;
}

.subtitle2 {
    font-size: 18px;
    /* Alt başlık boyutu */
    font-family: "Open Sans", sans-serif;
    font-weight: 700;
    /* Medium */
    margin-bottom: 30px;
    color: #373A40;
}

/* Açıklama metni ayarları */
.description {
    font-size: .85rem;
    /* Açıklama metni boyutu */
    font-family: "Poppins", sans-serif;
    font-weight: 400;
    /* Normal */
    color: #1E201E;
    margin-bottom: 30px;
    line-height: 1.5;
}

/* Açıklama metni ayarları */
.description2 {
    width: 100%;
   font-size: .85rem;
    /* Açıklama metni boyutu */
    font-family: "Poppins", sans-serif;
    font-weight: 400;
    /* Normal */
    color: #1E201E;
    margin-bottom: 30px;
    line-height: 1.6;
    margin: 0 auto;
}

.genel-basliklar {
    font-size: 10px;
}

/* Açıklama metni ayarları */
.description3 {
    width: 60%;
    font-size: 16px;
    /* Açıklama metni boyutu */
    font-family: "Poppins", sans-serif;
    font-weight: 400;
    /* Normal */
    color: #454545;
    margin-bottom: 30px;
    line-height: 1.75;
    margin: 0 auto;


}

.slogan {
    display: flex;
    justify-content: center;
    text-align: center;
    font-size: 24px;
    font-family: "Poppins", sans-serif;
    font-weight: 400;
    color: #6F4E37;
}


.fs16 {
    font-size: 16px;
}

fs14 {
    font-size: 14px;
}

fs12 {
    font-size: 12px;
}


.secr {
    margin-top: 10px;

}

.secr2 {
    margin-top: 0px;
    font-family: "Poppins", sans-serif;
    font-size: 14px;
    color: #495057;
}

.choose-photo-section {
    display: flex;
    /* İçindeki öğeleri yatay olarak hizalar */
    text-align: center;
    background-color: #FFFFFF;
    /* Header bölüm arka plan rengi */
    margin: 0 auto;
    /* Ortalar */
    width: 70%;

}

.img {
    width:100%;
}

.logoimg {
    display:inline-block;
    width: 80px !important;
    margin-bottom: -20px;
    margin-left:  -1px;
}

.logoimg3 {
    display:inline-block;
    width: 80px !important;
    margin-bottom: -20px;
    margin-left:  -1px;
}



.note p {
    font-family: "Poppins", sans-serif;
    font-size: 14px;
    color: #6c757d;
}

.PGREY {
    color: #495057;
    font-size: 14px;
    font-weight: 600;
}

.addressView {
    font-family: "Poppins", sans-serif;
    font-size: 14px;
    justify-content: left;
    text-align: left;
    border: 1px solid;
}

.bodyG {
    margin-bottom: 50px;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
}

.containerG {
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    /* Kutular arasında eşit boşluk bırakır */
    width: 40%;
    /* Sayfanın %40'ini kaplar */

}

input:focus {
    border-color: #1dd3b0;
    /* Border rengini ayarla */
    outline: none;
    /* Varsayılan outline'ı kaldır */
    box-shadow: 0 2px 5px rgba(29, 211, 176, 0.5);
    /* İsteğe bağlı: Hafif bir gölge ekleyebilirsiniz */
}

.cartName {
    font-family: "Poppins", sans-serif;
    font-size: 18px;
    color: #495057;
    font-weight: 600;
}




.orderSum {
    font-family: "Poppins", sans-serif;
    color: #495057;
    font-size: 24px;
    margin-top: 50px;
    margin-bottom: 0px;
    font-weight: 600;
}

.urunG {
    font-family: "Montserrat", sans-serif;
    font-size: 12px;
    color: #495057;
    font-weight: 600;
}

.urunGs {
    font-family: "Poppins", sans-serif;
    font-size: 12px;
    color: #495057;
}

.adresG {
    font-family: "Montserrat", sans-serif;
    font-size: 16px;
    color: #495057;
    font-weight: 600;
   
}

.adresGs {
    font-family: "Poppins", sans-serif;
    font-size: 14px;
    color: #495057;
    margin-top: 20px;
}

.adresG24 {
    font-family: "Montserrat", sans-serif;
    font-size: 16px;
    color: #495057;
    font-weight: 600;
}

.adresG25 {
    font-family: "Montserrat", sans-serif;
    font-size: 20px;
    color: #495057;
    font-weight: 600;
}

.adresG24c {
    font-family: "Montserrat", sans-serif;
    font-size: 16px;
    color: #1ad3b0;
    font-weight: 600;
}

.adresG25c {
    font-family: "Montserrat", sans-serif;
    font-size: 20px;
    color: #1ad3b0;
    font-weight: 600;
}

.paymentG {
    display: flex;
    font-family: "Poppins", sans-serif;
    font-size: 10px;
    color: #495057;
}

.creditCard {
    width: 100%;
    padding: 20px;
    border-radius: 10px;
    background-color: #bee9e8;
}

.payment-form {
    margin-top: 30px;
}




.poppins12 {
    font-family: "Poppins", sans-serif;
    font-size: 12px;
    color: #495057;
}

.poppins14 {
    font-family: "Poppins", sans-serif;
    font-size: 14px;
}

.poppins16 {
    font-family: "Poppins", sans-serif;
    font-size: 16px;
}

.poppins24 {
    font-family: "Poppins", sans-serif;
    font-size: 24px;
}

.bold {
    font-weight: 600;
}

.uline {
    text-decoration: underline;
}


.photosG {
    margin-bottom: 50px;
    margin-top: 0px;
}


.header-frame-choose {
    width: 100%;
    margin-top: 0px;
    font-family: "Poppins", sans-serif;
    font-size: 14px;
    margin-bottom: 50px;
    display: flex;
    justify-content: center; /* Yatayda ortalama */
    align-items: center; /* Dikeyde ortalama */
   

}

.header-section {
    flex: 1;
    text-align: center;
    background-color: #FFFFFF;
    /* Header bölüm arka plan rengi */
    margin: 0 auto;
    /* Ortalar */
}

/* Header bölüm ayarları */
.header-section.sosyal {
    margin-bottom: 10px;
    display: flex;
    justify-content: center;
    /* Yatayda ortalama */
    align-items: center;
    /* Dikeyde ortalama */
}

.bungee {
    font-family: "Bungee", sans-serif;
    font-size: 10px;
}

.bungee12 {
    font-family: "Bungee", sans-serif;
    font-size: 12px;
}

.bungee14 {
    font-family: "Bungee", sans-serif;
    font-size: 14px;
}

.bungee16 {
    font-family: "Bungee", sans-serif;
    font-size: 16px;
}

.bungee18 {
    font-family: "Bungee", sans-serif;
    font-size: 18px;
}

.bungee24 {
    font-family: "Bungee", sans-serif;
    font-size: 24px;
}


.bungee32 {
    font-family: "Bungee", sans-serif;
    font-size: 32px;
}

.left-text {
    float: left;
}

.right-text {
    float: right;
}

.no-space {
    margin: 0;
    padding: 0;
}

.top10 {
    margin-top: 10px;
}

.top10 {
    margin-top: 20px;
}

.logo {
    display:inline-block;
    margin-top: 10px;
    margin-bottom: 10px;
    justify-content: center;
    text-align: center;
    font-family: "Bungee", sans-serif;
    font-size: 52px;
    font-weight: 700;
    color: #495057;
    text-align: left;
    padding-top: 5px;
    padding-bottom: 5px;
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 20px;
    background-color: #333;
    color: white;
}

.hamburger-menu {

    cursor: pointer;
}

.hamburger-icon {
    display: none;
    color: #52575D;
    margin-top: 0px;
}

.hamburger-icon i {
    font-size: 28px;

}


.menu {
    display: block;
    background-color: #ffffff;
    width: 100%;
    /* Menü genişliği tüm sayfayı kapsayacak */
    text-align: left;
    /* Menü öğelerini ortalar */
    justify-content: left;
    height: 0;
    /* Başlangıçta menü kapalı */
    overflow: hidden;
    /* Menünün taşmasını engeller */
    transition: height 0.3s ease;
    /* Yumuşak geçiş efekti */
}

.menu li {
    position: relative;
    width: 100%;
    /* Tüm satırı kaplaması için genişlik %100 */
}


.menu ul li a {
    color: #495057;
    margin: 0 auto;
    padding: 15px;
    font-family: "Poppins", sans-serif;
    font-weight: 500;
    font-size: 14px;
    display: block;
    width: 100%;
    /* Bağlantı öğesi de tüm satırı kaplayacak */
    transition: color 0.3s ease;
}

.mainMenu {}

.mainMenu2 {}

.mainMenuUl {
    font-family: "Poppins", sans-serif;
    font-size: 14px;
    font-weight: 500;
    list-style: none;
    /* Liste stilini kaldır */
    display: flex;
    padding: 0;
    margin-bottom: 10px;
}

.mainMenuUl2 {
    font-family: "Poppins", sans-serif;
    font-size: 14px;
    font-weight: 500;
    list-style: none;
    /* Liste stilini kaldır */
    display: flex;
    padding: 0;
    margin-bottom: 10px;
}


/* Menü öğeleri arasına çizgi ekleme */
.menu li {
    border-bottom: 3px solid #EDF0F2;
    width: 90%;
    margin: 0 auto;
    /* Çizgiyi ortalıyoruz */

}

.menu li:last-child {
    border-bottom: none;
}

/* Hover efekt */
.menu li a:hover {

    color: #1dd3b0;
}


.mainMenu li a {
    color: #52575D;
    text-decoration: none;
    margin-right: 30px;
    transition: color 0.3s ease;
}

.mainMenu li:last-child a {
    margin-right: 0;
    /* Son öğenin sağ boşluğunu kaldır */
}

.mainMenu2 li a {

    text-decoration: none;

}

.isbirligi {
    color: #52575D;
    text-decoration: none;
    margin-right: 10px;
    transition: color 0.3s ease;
    background-color: #00b4d8;
    color: #ffffff;
    padding-left: 15px;
    padding-right: 15px;
    padding-top: 5px;
    padding-bottom: 5px;
    border-radius: 6px;
}



.ismodeli {
    color: #52575D;
    text-decoration: none;
    margin-right: 0px;
    transition: color 0.3s ease;
    background-color: #1d4e89;
    color: #ffffff;
    padding-left: 15px;
    padding-right: 15px;
    padding-top: 5px;
    padding-bottom: 5px;
    border-radius: 6px;
}


.mainMenu2 li a:hover {}

.mainMenu li a:hover {
    color: #7b2cbf;
    font-weight: 600;
}

.mainMenu2 li:last-child a {
    margin-right: 0;
    /* Son öğenin sağ boşluğunu kaldır */
}

.menu ul {
    list-style-type: none;
    padding: 0;
    margin: 0;
}

.menu li {
    padding: 15px 0;
    font-family: "Poppins", sans-serif;
    font-size: 14px;
}

.menu li a {
    color: white;
    text-decoration: none;
    display: block;
}

.order-tracking-container {
    font-family: "Arial", sans-serif;
    width: 80%;
    margin: 0 auto;
    padding: 20px;
    background-color: #f9f9f9;
    border-radius: 8px;
    margin-top: 100px;
    margin-bottom: 100px;
}

.mainMenuUl li a:hover {
    color: #1ad3b0;
    ;
}

.sosyal {
    flex-grow: 1;
}

.social-instagram-logo {
    width: 30px;
    height: 30px;
}

.social-pinterest-logo {
    width: 30px;
    height: 30px;
}

.social-twitter-logo {
    width: 30px;
    height: 30px;
}

.social-tiktok-logo {
    width: 30px;
    height: 30px;
}

.packButton {
    width: 100%;
    padding: 10px 20px;
    font-size: 16px;
    border: none;
    border-radius: 4px;
    background-color: #9CB4CC;
    color: #fff;
    cursor: pointer;
    font-family: "Bungee", sans-serif;
    margin-top: 30px;
    margin-bottom: 10px;
    text-decoration:none;
}

.image-container {
    margin-top: 150px;
}



.section {
    display: flex;
    /* İçerikleri yatay olarak hizalar */
    flex-wrap: wrap;
    /* İçerikleri birden fazla satıra sarar */
    background-color: #eee;
    /* Bölüm arka plan rengi */
    border: 2px solid #000;
    /* Bölüm dış sınırı */
    padding: 20px;
    /* İçerik ile kenar boşlukları arasında alan bırakır */
    height: 600px;
}


.section-container {
    display: flex;
    /* İçerikleri yatay olarak hizalar */
    justify-content: center;
    text-align: center;
    width: 100%;
    margin: 0 auto;
    background-color: #FFFFFF;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    height: 75px;

}

.header-frame {
    width: 80%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-color: #FFFFF;
 
}


.section1 {
    display: flex;
    /* İçerikleri yatay olarak hizalar */
    flex-wrap: wrap;
    /* İçerikleri birden fazla satıra sarar */
    background-color: #FFFFFF;
    /* Bölüm arka plan rengi */
    width: 70%;
    margin: 0 auto;
}

.sectionCollaboration {
    display: flex;
    /* İçerikleri yatay olarak hizalar */
    flex-wrap: wrap;
    /* İçerikleri birden fazla satıra sarar */
    background-color: #FFFFFF;
    /* Bölüm arka plan rengi */
    width: 70%;
    margin: 0 auto;
}

.sectionOrderFollow {
    font-family: "Poppins", sans-serif;
    font-size: 12px;

    /* İçerikleri yatay olarak hizalar */

    background-color: #FFFFFF;
    /* Bölüm arka plan rengi */
    width: 50%;
    margin: 0 auto;
    margin-top: 100px;
    margin-bottom: 50px;
    justify-content: center;
}



.section-container-jumbo {
    display: flex;
    /* İçerikleri yatay olarak hizalar */
    flex-wrap: wrap;
    /* İçerikleri birden fazla satıra sarar */
    width: 100%;
    background-color: #FFFFFF;
    margin-top: 100px;
    margin-bottom: 0px;

}

.section-container-order {
    display: flex;
    /* İçerikleri yatay olarak hizalar */
    flex-wrap: wrap;
    /* İçerikleri birden fazla satıra sarar */
    width: 100%;
    background-color: #FFFFFF;
    margin-top: 150px;
    margin-bottom: 50px;
}

.section-container-collaboration {
    display: flex;
    /* İçerikleri yatay olarak hizalar */
    flex-wrap: wrap;
    /* İçerikleri birden fazla satıra sarar */
    width: 100%;
    background-color: #FFFFFF;
    margin-top: 100px;

}

.section-container-customer {
    display: flex;
    /* İçerikleri yatay olarak hizalar */
    flex-wrap: wrap;
    /* İçerikleri birden fazla satıra sarar */
    width: 100%;
    background-color: #FFFFFF;
    margin-top: 100px;
    margin-bottom: 150px;
}

.section-container-quality {
    display: flex;
    /* İçerikleri yatay olarak hizalar */
    flex-wrap: wrap;
    /* İçerikleri birden fazla satıra sarar */
    width: 100%;
    margin: 0 auto;
    background-color: #FFFFFF;
    margin-bottom: 50px;
}

.section-container2 {
    display: flex;
    /* İçerikleri yatay olarak hizalar */
    flex-wrap: wrap;
    /* İçerikleri birden fazla satıra sarar */
    width: 80%;
    margin-bottom: 50px;

}

.section-magnet-frame {
    display: flex;
    /* İçerikleri yatay olarak hizalar */
    flex-wrap: wrap;
    /* İçerikleri birden fazla satıra sarar */
    background-color: #FFFFFF;
    /* Bölüm arka plan rengi */
    width: 100%;
    margin: 0 auto;
}

.section-magnet {
    display: flex;
    /* İçerikleri yatay olarak hizalar */
    flex-wrap: wrap;
    /* İçerikleri birden fazla satıra sarar */
    background-color: #FFFFFF;
    /* Bölüm arka plan rengi */
    width: 70%;
    margin: 0 auto;
    padding: 100px 0px;
}


.section-price-frame {
    display: flex;
    justify-content: center;
    /* İçerikleri yatay olarak hizalar */
    flex-wrap: wrap;
    /* İçerikleri birden fazla satıra sarar */
    background-color: #FFFFFF;
    /* Bölüm arka plan rengi */
    width: 100%;
    background-image: url('pixmag_img/ucret-arka-plan-v2.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.section-price-questions {
    display: flex;
    display: flex;
    justify-content: center;
    /* İçerikleri yatay olarak hizalar */
    flex-wrap: wrap;
    /* İçerikleri birden fazla satıra sarar */
    width: 100%;
    background-image: url('pixmag_img/Sorular-Arka-Plan-Foto-Magnet.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;

}

.section-price {
    display: flex;
    justify-content: center;
    /* İçerikleri yatay olarak hizalar */
    flex-wrap: wrap;
    /* İçerikleri birden fazla satıra sarar */
    width: 70%;
    margin: 0 auto;

}

.section-order-frame {
    display: flex;
    /* İçerikleri yatay olarak hizalar */
    flex-wrap: wrap;
    /* İçerikleri birden fazla satıra sarar */
    background-color: #FFFFFF;
    /* Bölüm arka plan rengi */
    width: 100%;
    margin: 0 auto;
}

.section-order {
    display: flex;
    /* İçerikleri yatay olarak hizalar */
    flex-wrap: wrap;
    /* İçerikleri birden fazla satıra sarar */
    background-color: #F4F2EE;
    /* Bölüm arka plan rengi */
    width: 70%;
    margin: 0 auto;
    padding: 100px 0px;
}

/* Description container stili */
.description-container {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 20px;
}

/* Image stili */
.description-image {
    width: 130px;
    height: 105px;
    object-fit: cover;
    margin-right: 20px;
}

/* Description text container stili */
.description-text {
    text-align: left;
}

/* Subscription container stili */
.subscription-container {
    margin-top: 40px;
    text-align: center;
}

/* Subscription title stili */
.subscription-title {
    font-size: 24px;
    font-weight: bold;
    color: #333;
    margin-bottom: 10px;
}

/* Subscription description stili */
.subscription-description {
    font-size: 16px;
    color: #666;
    margin-bottom: 20px;
}

/* Subscription form stili */
.subscription-form {
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Subscription input stili */
.subscription-input {
    padding: 10px;
    font-size: 16px;
    border: 1px solid #ccc;
    border-radius: 4px;
    width: 250px;
    margin-right: 10px;
}

/* Subscription button stili */
.subscription-button {
    padding: 10px 20px;
    font-size: 16px;
    border: none;
    border-radius: 4px;
    background-color: #007BFF;
    color: #fff;
    cursor: pointer;
}

.subscription-button:hover {
    background-color: #0056b3;
}


.jumbo-img {
    width: 100%;
    height: auto;

}

.jumbo-img-quality {
    width: 100%;
    height: auto;

}


.jumbo-img2 {
    max-width: 80%;  /* Fotoğrafın taşmasını engelle */
    height: auto;      /* Orantıyı koru */
    display: block;    /* Altındaki boşlukları engelle */
    margin: 0 auto;    /* Ortala */
    border-radius: 15px; /* Köşeleri yuvarlak tut */
}

.jumbo-img3 {
    width: 80%;
    height: auto;

}

.jumbo-img4 {
    width: 80%;
    height: auto;

}

.status-image {
    max-width: 100%;  /* Konteynerin dışına taşmasını engelle */
    height: auto;      /* Oranları koru */
    display: block;    /* Altındaki boşlukları kaldır */
  
    border-radius: 10px;
}



.section-content1-left {
    width: 60%;
    display: flex;
    justify-content: left;
    align-items: left;
}

.section-content1-left1 {
    width: 65%;
    display: flex;
    justify-content: left;
    align-items: left;
}

.section-collaboration-left {
    width: 50%;
    display: flex;
    justify-content: left;
    align-items: left;
}

.section-content2-left {
    width: 42%;
    display: flex;
    justify-content: left;
    align-items: left;


}

.bizeyazin {
    color: #495057;
    font-weight: 600;
}

.section-right-container {
    display: flex;
    align-items: center;
    /* Yatayda ortalama */
    width: 40%;
    margin-top: -70px;
}

.section-right-container1 {
    display: flex;
    align-items: center;
    /* Yatayda ortalama */
    width: 35%;
    margin-top: -50px;
}

.section-collaboration-right {
    margin-left: 10px;
    display: flex;
    align-items: center;
    /* Yatayda ortalama */
    width: 45%;
}

.section-right2-container {
    margin-right: 33px;
    display: flex;
    align-items: center;
    /* Yatayda ortalama */
    width: 55%;
}

.bigButton {
    width: 100%;
    /* Buton genişliği */
    height: 60px;
    /* Buton yüksekliği */
    background-color: #03b28f;
    /* Buton arka plan rengi */
    color: #fbfbf2;
    /* Metin rengi */
    border-radius: 8px;
    /* Köşe yuvarlatma */
  font-family: "Russo One", sans-serif;
    font-size: 24px;
    /* Yazı boyutu */
    font-weight: 400;
    /* Yazı kalınlığı */
    cursor: pointer;
    /* İmleç göstergesi */
    transition: box-shadow 0.5s ease;
    box-shadow: -3px -3px #495057;
    outline: none;
    /* Varsayılan çerçeveyi kaldırır */
    border: none;
    /* Herhangi bir sınırı kaldırır */
    box-shadow: none;
    /* Kutu gölgesini kaldırır */
}

.bigButton-link {
    text-decoration: none;
    /* Alt çizgiyi kaldırır */
}

.bigButton:hover {
    box-shadow: -5px -5px #a397e4;
    /* Üzerine gelindiğinde arka plan rengi değişir */

}

.font12 {
    font-size: 12px;
}

.font14 {
    font-size: 14px;
}

.font16 {
    font-size: 16px;
}


.feedback-form-container {
    width: 100%;
    font-family: "Poppins", sans-serif;
    margin-top: 0px;
    margin-left: 30px;
}


form {
    display: flex;
    flex-direction: column;
}



.section-content {
    text-align: center;
    margin-right: 0;
    /* İçerikler arasında boşluğu kaldırır */
    margin-bottom: 10px;
    /* Alt div'ler arasına boşluk bırakır */

}

/* Son içeriğe sağ boşluk bırakma */
.section-content:last-child {
    margin-right: 0;
    /* Son içeriğin sağındaki boşluğu kaldırır */
}

/* Kart container stili_________________________________________________________________________ */



.card-container-footer {
    display: flex;
    justify-content: center;
    /* Kartlar arasındaki boşluk */
    width: 80%;
    /* Container genişliği */
    margin: 0 auto;
    /* Ortalama */

}

/* Kart index container stili */
.card-index-container {
     display: flex;
    justify-content: space-between;
    width: 70%;
    margin: 0 auto;
    margin-bottom: 50px;
    opacity: 1;  /* Başlangıçta görünür olsun */
    transform: translateY(0);  /* Sayfanın altında başlamasın */
    transition: opacity 1s ease-out, transform 1s ease-out;
}

.orderProcess {
    font-family: "Poppins", sans-serif;
}



/* Kart stili */
.card {
    background-color: #fff;
    /* Beyaz arka plan */
    border-radius: 10px;
    /* Köşe yuvarlama */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    /* Gölge efekti */
    width: 30%;
    /* Kart genişliği */
    padding: 20px;
    /* İç boşluk */
    box-sizing: border-box;
    /* Padding ve border dahil hesaplama */
    text-align: center;
    /* Metin ortalama */
}

.cardIndex {

    width: 30%;
    padding: 20px;
    box-sizing: border-box;
    text-align: center;
    transition: transform 0.3s ease-in-out !important, box-shadow 0.3s ease-in-out !important;
    cursor: pointer;
    border-radius: 10px; /* Köşeleri yuvarlak yap */
}



.packs {
    text-decoration: none;
}

.x-container {
    /*display: flex; */
    justify-content: space-between;
    gap: 20px;
    width: 70%;
    margin: 0 auto;
    font-family: "Poppins", sans-serif;
    text-align: center;
    margin-bottom: 100px;
}

.x-card img {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 0 auto; /* Resmi ortala */
    object-fit: contain; /* Görselin orantılı görünmesini sağla */
}

.x-card {

    width: 100%;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    margin-bottom: 30px;

}

.x-container a {
    text-decoration: none;
}

.no-margin {
    margin: 0;
}

.xButton {
    width: 100%;
    background-color: #9ad38f;
    padding: 6px;
    border-radius: 6px;
    margin-top: 5px;
    background-color: #9CB4CC;
    border: none;
    font-family: "Bungee", sans-serif;

}


/* Kart resim stili */
.card-img {
    width: 260px;
    /* Resim genişliği */
    height: 260px;
    /* Resim yüksekliği */
    object-fit: cover;
    /* Resmin orantılı şekilde kesilmesi */
    margin-bottom: 10px;
    /* Resim alt boşluk */
    border-radius: 10px;
    /* Köşe yuvarlama */
}

/* Kart resim stili */
.card-index-img {
    width: 260px;
    /* Resim genişliği */
    height: 260px;
    /* Resim yüksekliği */
    object-fit: cover;
    /* Resmin orantılı şekilde kesilmesi */
    margin-bottom: 10px;
    /* Resim alt boşluk */
    border-radius: 10px;
    /* Köşe yuvarlama */
}

/* Kart başlık stili */
.card-title {
    font-size: 12px;
    /* Başlık boyutu */
    font-weight: 400;
    /* Başlık kalınlığı */
    font-family: "Montserrat", sans-serif;
    /*margin-bottom: 10px; /* Başlık alt boşluk */
    color: #A67B5B;
    ;
    /* Başlık rengi */
    text-align: left;
}

/* Kart açıklama stili */
.card-description {
    font-family: "Montserrat", sans-serif;
    font-size: 26px;
    /* Açıklama boyutu */
    font-weight: 600;
    /* Başlık kalınlığı */
    color: #495057;
    /* Açıklama rengi */
    text-align: center;
}

/* Kart fiyat açıklama stili */
.card-description-price {
    font-family: "Montserrat", sans-serif;
    font-size: 62px;
    /* Açıklama boyutu */
    font-weight: 800;
    /* Başlık kalınlığı */
    color: #495057;
    /* Açıklama rengi */
    text-align: centers;
    margin-top: -20px;
    margin-bottom: -20px;
}

.cardP {
    font-family: "Poppins", sans-serif;
}









/*__________________________________________________________________________________________________*/


/*______________________________________Magnet Örnekleri_________________________________*/


 /* Magnet bilgi bölümü genel ayarları */
  .magnet-info {
      background-color: #fff;
      padding: 0px 0;
      border-bottom: 1px solid #ddd;
  }
  .magnet-info .container {
      width: 80%;
      margin: 0 auto;
      text-align: center;
  }
  .magnet-info h2 {
      font-family: 'Roboto', sans-serif;
      font-size: 2em;
      margin-bottom: 20px;
      color: #333;
  }
  .magnet-content {
      display: flex;
      justify-content: space-around;
      align-items: flex-start;
      flex-wrap: wrap;
      gap: 20px;
  }
  /* Video kapsayıcısı */
  .video-container {
      flex: 1 1 500px;
      max-width: 600px;
  }
  .video-container iframe {
      width: 100%;
      height: 315px;
      border: none;
  }
  /* Görseller kapsayıcısı */
  .images-container {
      flex: 1 1 300px;
      display: flex;
      flex-direction: column;
      gap: 10px;
      align-items: center;
  }
  .images-container img {
      width: 100%;
      max-width: 300px;
      height: auto;
      border: 1px solid #ccc;
      border-radius: 4px;
  }








/*__________________________________________________________________________________________________*/




/*______________________________________MAGNET ÖZELLİKLERİ IMG STYLE_________________________________*/


/* Image row stili */
.image-row1 {
    display: flex;
    justify-content: center;
    /* Öğeleri yatayda ortalar */
    align-items: center;
    /* Öğeleri dikeyde ortalar */
    gap: 100px;
    width: 100%;
}


/* Image row stili */
.image-row2 {
    display: flex;
    justify-content: center;
    /* Öğeleri yatayda ortalar */
    align-items: center;
    /* Öğeleri dikeyde ortalar */
    gap: 100px;
    width: 100%;
}

/* Image row stili */
.span-row {
    display: flex;
    justify-content: center;
    /* Öğeleri yatayda ortalar */
    align-items: center;
    /* Öğeleri dikeyde ortalar */
    gap: 130px;
    font-size: 18px;
    /* Alt başlık boyutu */
    font-family: "Open Sans", sans-serif;
    font-weight: 400;
    /* Medium */
    margin-bottom: 30px;
    color: #8A8D8D;
}

/* Image stili */
.card-img2 {
    width: 200px;
    height: auto;
    object-fit: contain;
}


/* Image stili */
.card-img3 {
    width: 320px;
    height: 120px;
    object-fit: contain;
}

/* Image card stili */
.image-card2 {
    width: 120px;
    display: flex;
    justify-content: center;
    align-items: center;

}




/*____________________________________________________________________________________________________*/


/* FAQ section stili */
.faq-section {
    width: 100%;
    margin-top: 50px;
    margin-bottom: 25px;
}



/* FAQ item stili */
.faq-item {
    margin-bottom: 10px;
}

/* FAQ question stili */
.faq-question {
    width: 65%;
    padding: 15px;
    font-size: 16px;
    text-align: left;
    background-color: #495057;
    color: #FFFFFF;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-family: "Montserrat", sans-serif;
    font-weight: 700;
    /* Bold */
}

.faq-question:focus {
    outline: none;
}

/* Ok işareti stili */
.arrow {
    font-size: 16px;
    transition: transform 0.3s ease;
}

/* Açık olan sorunun ok işaretinin döndürülmesi */
.faq-question.active .arrow {
    transform: rotate(180deg);
}

/* FAQ answer stili */
.faq-answer {
    font-family: "Poppins", sans-serif;
    font-weight: 300;
    /* Normal */
    width: 65%;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
    padding-left: 20px;
    margin-top: 10px;
    color: #495067;
    font-size: 12px;
}

.faq-answer p {
    margin: 0;
    padding: 15px;
    background-color: #FFFFF;
    border-left: 3px solid #405067;
}


/*__________________________________________________________________________________*/





/*--------------------------------- Preview.php container ------------------------- */

.container-preview {
    display: flex;
    /* İçindeki öğeleri yatay olarak hizalar */
    width: 60%;
    margin: 50px auto;
    background-color: white;
}


.photo-gallery {
    flex-wrap: wrap;
    width: 60%;
    margin: 0 auto;
    justify-content: center;
    text-align: center;
}

.photo-gallery h2 {
    margin-top: 0;
}


/* Adres formu */
.address-form {
    flex-wrap: wrap;
    width: 60%;
    font-size: 14px;
    /* Açıklama metni boyutu */
    font-family: "Poppins", sans-serif;
    font-weight: 300;
    /* Normal */
    color: #495067;
    margin: 0 auto;
}

.address-form label {
    display: block;
    margin-bottom: 5px;
    font-weight: 500;
    font-size: 12px;
    color: #495057;
}

.address-form input[type="text"],
.address-form input[type="email"],
.address-form textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
    box-sizing: border-box;
}

.paymentG input {
    width: 100%;
    padding: 10px;
    margin-bottom: 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
    box-sizing: border-box;
}


.form-row {
    display: flex;
    gap: 10px;
    /* İl ve ilçe arasındaki boşluk */
}

.form-group {
    flex: 1;
    /* Her bir grup eşit genişlikte */
}




.magnetFeatures p:first-of-type {
    font-size: 12px;
    font-family: "Poppins", sans-serif;
    text-align: left;
    margin-bottom: -2px;
    margin-top: 30px;
}




/*--------------------------- preview.php son --------------------------------*/


/* ------------------------- Footer ayarları -------------------------------- */
footer {
    background-color: #495057;
    color: #fff;
    padding: 20px 0;
    font-family: "Poppins", sans-serif;
}

.footer-container {
    width: 100%;
    display: flex;
    justify-content: center;
    margin: 0 auto;

}


.footer-section {
    flex: 1;
    min-width: 250px;
    padding: 0px;
    justify-content: space-between;
    text-align: center;
}


.footer-section p {
    font-size: 12px;
    margin-bottom: 0px;
    color: #adb5bd;
    font-weight: 300;
}

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

.footer-section ul li {
    margin-bottom: 8px;
}

.footer-section ul li a {
    color: #fff;
    text-decoration: none;
}

.footer-section ul li a:hover {
    text-decoration: underline;
}

.social-icons a {
    color: #fff;
    font-size: 18px;
    margin-right: 10px;
    text-decoration: none;
    transition: color 0.3s ease;
   
}

.social-icons a:hover {
    color: #1dd3b0;
}

.socialP {
    font-size: 14px;
}

.payment-icons i {
    font-size: 32px;
    margin-right: 15px;
    margin-top:10px;
}

.footer-bottom {
    margin-top: 30px;
    text-align: center;
    background-color: #495057;
    font-size: 10px;

}



/* ------------------------------------ footer son ---------------------------*/




/* ------------------------------------ choose_photo.php ---------------------*/

.photo-upload {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
margin: 0 auto;
    width:60%;
}

.photo-upload input {
    display: none;
}

.photo-upload label {
    display: block;
    width: 140px;
    height: 140px;
    border: 2px solid black;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: border-color 0.3s ease;
    border-radius: 10px;
    margin-right: 15px;
    margin-bottom: 30px;
}

.photo-upload label:hover {}

.photo-label {
    font-size: 14px;
    /* Açıklama metni boyutu */
    font-family: "Poppins", sans-serif;
    color: #495057;
}

.content-frame-choose {
    display: flex;
    flex-direction: column;
    align-items: left;
    width: 100%;
}

.photo-tips {
    font-size: 12px;
    /* Açıklama metni boyutu */
    font-family: "Poppins", sans-serif;
    font-weight: 400;
    /* Normal */
    color: #6F4E37;
}

.tips-head {
    font-weight: bold;
    font-size: 14px;
}

.borders {
    background-color: #fffff;

    color: #495057;
    font-family: "Poppins", sans-serif;
    font-size: 14px;
    margin-right: 5px;
 
}



.submit-button {
    width: 155px;
    height: 50px;
    border-radius: 5px;
    font-size: 16px;
    color: #f0f0f0;
    border: none;
    cursor: pointer;
    transition: background-color 0.3s;
    font-weight: 800;
    font-family: "Poppins", sans-serif;

}

.submit-button:disabled {
    background-color: #d3d3d3;
    /* Renk devre dışıyken */
    cursor: not-allowed;
}

.submit-button:not(:disabled) {
    background-color: #1dd3b0;
    color: #edf6f9;
}

/*.submit-button:not(:disabled):hover {
    background-color: #1dd3b0;
     Hover durumu için etkin olduğunda
} */

.orderFollowButton {
    padding: 8px;
    color: #fbfbf2;
    background-color: #1dd3b0;
    border-radius: 5px;
    cursor: pointer;
    font-family: "Poppins", sans-serif;
    font-weight: 600;
    outline: none;
    /* Varsayılan çerçeveyi kaldırır */
    border: none;
    /* Herhangi bir sınırı kaldırır */
    box-shadow: none;
    /* Kutu gölgesini kaldırır */
    transition: box-shadow 0.3s ease;
}



.orderFollowButton:hover {
    box-shadow: -3px -3px #495057;
}

.orderMessage {
    font-family: "Poppins", sans-serif;
    font-size: 16px;
    display: inline-block;
    font-weight: 600;
    padding-left: 10px;
    padding-right: 10px;
    padding-top: 5px;
    padding-bottom: 10px;
    background-color: #64b6ac;
    border-radius: 6px;
    color: #fbfbf2;
}

.modal {
    display: none;
    position: fixed;
    z-index: 1;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.4);
    padding-top: 60px;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
}

.modal-content {
    background-color: #fefefe;
    margin: 5% auto;
    padding: 20px;
    border: 1px solid #888;
    width: 80%;
    max-width: 500px;
    position: relative;
    opacity: 0;
    transform: translateY(-50px);
    transition: opacity 0.5s ease-in-out, transform 0.5s ease-in-out;
}

.modal.show {
    display: block;
    opacity: 1;
}

.modal-content.show {
    opacity: 1;
    transform: translateY(0);
}

.close {
    color: #aaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
}

.close:hover,
.close:focus {
    color: black;
    text-decoration: none;
    cursor: pointer;
}

.header-frame-choose p {
    cursor: pointer;

    padding: 10px;
    border: 2px solid black;
    text-align: center;
    transition: background-color 0.3s ease, color 0.3s ease;
    border-radius: 8px;
    font-size: 12px;

}

.header-frame-choose p:hover {}

.choosePh {
    font-family: "Poppins", sans-serif;
    font-size: 12px;
}

.content {
    padding: 10px;
    background-color: #fff;
}

.content p {
    margin: 10px 0;
}

/* ------------------------------------ choose_photo.php son ----------------*/













/*------------------------------------- payment.php -------------------------*/

.container-preview-payment {
    display: flex;
    background-color: #fff;
    border-radius: 10px;
    width: 100%;

    /* Aralarındaki boşluk */
}


.left-section,
.right-section {
    padding: 20px;
    border-radius: 10px;
}

.left-section {
    width: 50%;

}

.right-section {
    width: 40%;
    background-color: #f2f2f2;
    /* Sağ arka plan rengi */
    display: flex;
    flex-direction: column;
    justify-content: center;
    margin: 0 auto;
}


.left-content,
.right-content {
    padding: 20px;
}



.photosG {

    display: flex;
    justify-content: space-between;
    /* Aralarındaki boşluğu otomatik olarak bırakır */
    margin-bottom: 20px;

}

.photos-payment {
    width: 30%;
    /* İstediğiniz genişlik */
  
    /* İstediğiniz yükseklik */
    object-fit: cover;
    /* Fotoğrafın taşmasını önlemek için */
    margin: 8px;
    /* Fotoğraflar arasında biraz boşluk */
    padding: 0px;
    border-radius: 2px;
}

.address p {
    margin-bottom: 5px;
}

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


.form-group input {
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
    margin-top: 0px;
}


.form-group-inline {
    display: flex;
    gap: 20px;
}

.form-group-inline .form-group {
    flex: 1;
}

.submit-button-payment {
    width: 100%;
    padding: 15px;
    background-color: #1dd3b0;
    color: #fff;
    border: none;
    border-radius: 5px;
    font-size: 16px;
    cursor: pointer;
}

.submit-button-payment:hover {
    background-color: #1dd3b0;
}

.order-summary {
    padding: 20px;
    border-radius: 8px;
    /* Köşeleri yuvarlar */

}

.summary-item {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
    padding: 10px 0;
    border-bottom: 1px solid #ccc;
    /* Çizgi ekler */
    font-family: "Poppins", sans-serif;
    font-size: 12px;
    color: #495057;
}


.summary-item:last-child {
    border-bottom: none;
    /* Son öğede çizgi olmaz */
}

.summary-item.total {
    font-weight: 500;
}

.submit-btn {
    background-color: #6c946f;
    color: #f8f4e1;
    padding: 15px;
    border: none;
    border-radius: 5px;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.submit-btn:hover {
    background-color: #5a7c5d;
}


/*------------------------------------- payment.pgp son ---------------------*/



.price-button {
  display: block;
  width: 100%;
  margin: 20px auto 0 auto;
  background-color: #ff5e5e;
  color: white;
  padding: 14px 0;
  font-size: 18px;
  font-weight: 500;
  border-radius: 8px;
  font-family: 'Poppins', sans-serif;
  text-align: center;
  text-decoration: none;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
  transition: background-color 0.3s ease;
}
.price-button:hover {
  background-color: #e14b4b;
}













/* ------------------------------------ responsive ayarlar -------------------*/

@media only screen and (max-width: 768px) {

    .main-title3 {
        font-size: 32px;
     
    }
    
    .brand-text {
    font-size: 2rem;

}

.status-image {
        max-width: 100%; /* Mobilde %80 olacak şekilde küçült */
        margin: 0 auto; /* Ortala */
    }

.logoimg3 {
    width: 50px !important;
    margin-bottom: -15px;

}
    

    
     .card-container-footer {
            display: block;
            text-align: center;
        }

    .description3 {
        width: 100%;
        font-size: 0.75rem;
    }

    .order-summary {

        padding: 20px;

    }
    
     .order-btn {
        display: block; /* Mobilde göster */
    }


    .container-preview {
        width: 90%;
    }

    .sectionOrderFollow {
        width: 90%;
    }

    .section-container-jumbo {
        display: flex;
        /* İçerikleri yatay olarak hizalar */
        flex-wrap: wrap;
        /* İçerikleri birden fazla satıra sarar */
        width: 100%;
        margin-top: 50px;
        margin-bottom: 100px;
    }

    .section-container-order {
        display: flex;
        /* İçerikleri yatay olarak hizalar */
        flex-wrap: wrap;
        /* İçerikleri birden fazla satıra sarar */
        width: 100%;
          margin-top: 100px;
    margin-bottom: 0px;
      
    }

    .section-container-collaboration {
        display: flex;
        /* İçerikleri yatay olarak hizalar */
        flex-wrap: wrap;
        /* İçerikleri birden fazla satıra sarar */
        width: 100%;
        margin-bottom: 100px;
    }

    .section-container-customer {
        display: flex;
        /* İçerikleri yatay olarak hizalar */
        flex-wrap: wrap;
        /* İçerikleri birden fazla satıra sarar */
        width: 100%;
        margin-top: 0px;
        margin-bottom: 100px;
    }

    .section-container2 {
        width: 90%;
        margin-bottom: 50px;
    }

    .section-container-quality {
        margin-bottom: 50px;
    }

    .jumbo-img {
        width: 100%;
        height: auto;
        margin-top: 30px
    }


    /* Adres formu */
    .address-form {
        width: 90%;
        font-size: 14px;

    }
    
    .description2 {
 
    font-size: 0.75rem;

}
    
       .description {
 
    font-size: 0.75rem;

}


    .photo-upload label {
        width: 90px;
        height: 90px;
    }
    
    .photo-upload {
        width: 100%;
    }

    .section-right-container {

        width: 100%;
    }
    
      .section-right-container1 {
        margin-top: -100px;
        width: 100%;
    }


    .section-collaboration-right {

        width: 100%;
        margin-left: 0px;
        padding: 10px;
    }

    section-right-magnet {
        width: 100%;
        padding: 10px;
    }

    .section1 {
        width: 90%;

    }

    .sectionCollaboration {
        width: 90%;

    }

    .choose-photo-section {
        width: 90%;
    }

    .section-right2-container {
        width: 100%;
    }

    .submit-button {
        width: 100%;
    }


    .main-title2 {
        margin-top: 75px;
        font-size: 1.75rem;
    }

    .jumbo-img2 {
        max-width: 100%; /* Mobilde 100% olsun */
        margin: 0 auto; /* Ortala */

    }

    .jumbo-img3 {
        display: none;

    }
    
     .jumbo-img4 {
        width: 100%;
   
    }
    
    
  

   

    .jumbo-img-quality {
        width: 100%;
     
    }



    .card-description,
    .card-description-price,
    .cardP {
        flex: 1;
        /* Kart içindeki öğelere esneklik sağlıyoruz */
        text-align: center;
    }

    .packButton {
        flex: 1;
        /* Kart içindeki öğelere esneklik sağlıyoruz */
        text-align: center;
        margin: 0;
        padding: 12px 12px;
        margin: 0;
    }

    .cardIndex a {
        display: flex;
        width: 100%;
        justify-content: space-between;
        align-items: center;
    }




    .orderSum {
        font-size: 16px;
    }

    .urunGs {
        font-size: 12px;
    }

    .adresGs {
        font-size: 12px;
    }

.cardIndex:hover {
    transform: scale(1.05) !important; /* %5 büyüt */
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3) !important; /* Daha belirgin gölge */
}

    .orderProcess {
        padding: 100px;
        font-family: "Poppins", sans-serif;
        font-weight: 500;
    }

    .section-price-questions {
        display: flex;
        display: flex;
        justify-content: center;
        /* İçerikleri yatay olarak hizalar */
        flex-wrap: wrap;
        /* İçerikleri birden fazla satıra sarar */
        background-color: #FFFFFF;
        /* Bölüm arka plan rengi */
        width: 100%;
        background-image: url('pixmag_img/Sorular-Arka-Plan-Foto-Magnet.png');
        background-size: cover;
        background-position: center;
        background-repeat: no-repeat;

    }

    /* Kart index container stili */
    .card-index-container {
        display: none;
    }

/* Resmin üzerine gelince büyüme efekti */
.cardIndex:hover img {
    transform: scale(1.08) !important;
}

    .section-content2-left {
        width: 100%;
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .feedback-form-container {
        margin-top: 20px;
        margin-left: 0px;
    }



    .cardP {
        margin-top: 20px;
        font-size: 8px;
        line-height: 1.5;
    }

    /* Kart açıklama stili */
    .card-description {
        font-size: 14px;
    }


    .card-description-price {
        font-size: 32px;
    }

    .section-content1-left {
        width: 100%;
        display: flex;
        justify-content: center;
        align-items: left;
        margin-top: 20px;
    }
    
     .section-content1-left1 {
        width: 100%;
        display: flex;
        justify-content: center;
        align-items: left;
        margin-top: 20px;
    }

    .section-collaboration-left {
        width: 100%;
        display: flex;
        justify-content: center;
        align-items: left;
    }

    .bigButton {
        width: 100%;
    }

    .section-content {

        width: 90%;
    }

    .section-price-frame {

        width: 100%;

    }

    .section-price {

        width: 100%;

    }

    .main-title {
        font-size: 36px;
        margin-bottom: 10px;
        margin-top: 10px;
        font-weight: 700;
    }

    .image-row1 {
        display: none;
    }

    .image-row2 {
        display: none;
    }

    .description-image {
        display: none;
    }

    .section-magnet {
        width: 90%;
    }

    .faq-section {
        width: 100%;
        margin-top: 0px;
        margin-bottom: 0px;
    }

    .faq-question {
        width: 100%;
    }

    .header-section sosyal {
        display: none;
    }

    .header-section.menu {
        display: none;
        /* Menü gizlenir */
    }

    .magnetFeatures p:first-of-type {
        font-size: 12px;
        margin-top: 10px;
    }


    .magnetFeatures p:nth-of-type(2) {
        font-size: 22px;
        margin-right: 20px;
    }

    .magnetFeatures p:nth-of-type(3) {
        font-size: 22px;
    }


    .menu.show {
        height: auto;
        /* Menü açıldığında otomatik olarak yüksekliği ayarlanır */
    }

    .header-frame {
        width: 90%;


    }

    .mainMenu {
        display: none;
    }

    .mainMenu2 {
        display: none;
    }

    .menu {
        width: 100%;
    }

    .navFrame {
        display: flex;
        justify-content: center;
        text-align: center;
        width: 100%;
    }

    .section-container {
        width: 100%;
        height: 50px;
        margin-bottom: 5px;
    }

    .logo {
        font-size: 52px;
    }

    .logoimg {
        display:inline-block;
        width: 60px;
        margin-bottom: -15px;
        margin-left: -1px;
    }

    .isbirligi {}

    .image-container {
        margin-top: 130px;
    }

    .hamburger-icon {
        display: block;

        width: 30px; /* İkonun boyutunu küçült */
    height: 30px;
    cursor: pointer;
 
    }
    
    .hamburger-menu {
    position: absolute; /* Sabit bir yere konumlandır */
    top: 15px; /* Üstten boşluk bırak */
    right: 15px; /* Sağdan boşluk bırak, ekran sınırlarına oturt */
    z-index: 999; /* Menü üst katmanda olsun */
}

/* Ödeme ikonları konteyneri */
.payment-icons {
    display: flex;
    justify-content: center; /* İçeriği yatayda ortala */
    align-items: center; /* Dikey hizalama */
    width: 100%; /* Konteynerin tam genişlik kaplamasını sağla */
    overflow: visible; /* Görsellerin tam görünmesini sağla */
    padding: 0px 0; /* Üst-alt boşluk ekle */
    text-align: center;
}

.payment-icons img {
    max-width: 100%; /* Görselin kapsayıcıdan taşmasını önle */
    height: auto;
    display: block;
}

    .faq-question {
        font-size: 14px;
    }

    .faq-answer {
        font-size: 12px;
        width: 90%;
    }

    .footer-container {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .footer-section {
        min-width: 100%;
        margin-bottom: 20px;
    }

    .payment-icons i {
        margin-right: 10px;
        font-size: 24px;
    }

    .footer-bottom {
        font-size: 12px;
    }

    .footer-section:nth-child(1) {
        display: none;
    }
    
   

    .google-progress-bar {

        width: 90%;
    }

    .google-step-connector {
        display: none;
    }

    .google-step-label {
        font-size: 10px;
    }

    .containerG {
        width: 90%;
    }

    .photos-payment {
        width: 100px;
        height: 100px;
        object-fit: cover;
        /* Fotoğrafların genişliğini % olarak ayarladık */
        border-radius:3px;
        padding: 6px;
        margin: 0px;
    }

    .cardIndex img {
        display: none;
    }

}



@media only screen and (min-width: 769px) {


    .hamburger-menu {
        display: none;
    }

    .x-container {
        display: none;
    }

}
