/* Global Reset ve Temel Stiller */
*, ::before, ::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    text-decoration: none !important;
}
body {
    background-color: #000;
    font-family: 'Inter', sans-serif;
    color: #fff;
}
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    text-align: center;
}
.banner {
    width: 100%;
    max-width: 500px;
    height: auto;
    margin-bottom: 20px;
}

/* Navigasyon (Menü) Stilleri */
.navigation {
    background-color: #000;
    padding: 10px 0;
    margin-bottom: 20px;
    border-top: 1px solid #fff;
    border-bottom: 1px solid #fff;
    position: relative;
    z-index: 100;
}
.navigation ul {
    list-style: none;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    padding: 0;
    margin: 0;
}
.navigation ul li {
    margin: 0 15px;
    position: relative;
}
.navigation ul li a {
    color: #fff;
    font-weight: bold;
    font-size: 1.1em;
    transition: color 0.3s ease;
    display: inline-flex;
    align-items: center;
    padding: 5px 0;
}
.navigation ul li a:hover {
    color: #FFD700;
}
.navigation ul li.active > a {
    color: #00FFFF;
}

/* Açılır Menü İkonu Stili */
.dropdown-toggle i.fa-caret-down {
    margin-left: 8px; /* Metin ile ikon arasında boşluk bırakır */
    font-size: 0.7em; /* İkonu metne göre biraz küçültür */
    vertical-align: middle; /* Metinle dikey olarak hizalar */
}

/* Dropdown Menü Stilleri */
.dropdown-content {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background-color: #000;
    min-width: 200px;
    border: 1px solid #fff;
    z-index: 1001;
    box-shadow: 0 8px 16px rgba(0,0,0,0.4);
    text-align: left;
}
.dropdown-content a {
    display: block;
    padding: 10px 15px;
    color: #fff;
    text-align: left;
    transition: color 0.3s ease, background-color 0.3s ease;
}
.dropdown-content a:hover {
    color: #FFD700;
    background-color: #333;
}
/* Alt menüdeki aktif linki parlatır */
.dropdown-content a.active {
    color: #00FFFF !important;
    background-color: rgba(0, 255, 255, 0.1); /* Hafif bir ışık efekti */
}
.navigation ul li:hover .dropdown-content {
    display: block;
}
/* Alt menüdeki aktif linki kesin olarak parlatma kuralı */
.navigation ul li .dropdown-content a.active {
    color: #00FFFF !important;
    background-color: rgba(0, 255, 255, 0.1) !important;
    font-weight: bold !important;
}
/* Sepet Butonu Stilleri */
.nav-cart-button {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    color: #fff;
    font-weight: bold;
    font-size: 1.1em;
    transition: color 0.3s ease;
    padding: 5px 0;
}
.nav-cart-button:hover {
    color: #00b0ff;
}
.nav-cart-button img {
    height: 24px;
    width: auto;
}

/* Ürün Kartları ve Izgara Stilleri */
.product-grid, .home-card-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    margin-bottom: 20px;
}
.product-card, .home-card {
    background-color: rgba(255, 255, 255, 0.8);
    padding: 15px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    width: calc(25% - 20px);
    margin-bottom: 20px;
    text-align: center;
}
.home-card {
    width: calc(45% - 20px);
    display: flex;
    flex-direction: column;
    align-items: center;
}
.product-card:hover, .home-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
    background-color: rgba(255, 255, 255, 0.9);
}
.product-card img, .home-card img {
    width: 100%;
    height: auto;
    border-radius: 5px;
    margin-bottom: 10px;
}
.product-card h3, .home-card h3 {
    font-size: 1.2em;
    margin-bottom: 5px;
    color: #222;
}
.product-card p, .home-card p {
    font-size: 0.9em;
    color: #555;
    flex-grow: 1;
}
.button-container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    margin-top: 10px;
    flex-wrap: nowrap;
}
.satinal-btn, .incele-btn, .teklif-btn, .add-to-cart, .whatsapp-button {
    border: none;
    padding: 10px 12px;
    border-radius: 5px;
    cursor: pointer;
    font-size: 0.95em;
    font-weight: bold;
    transition: background-color 0.3s ease, transform 0.3s ease;
    flex: 1;
    min-width: 110px;
    max-width: 140px;
    text-align: center;
}
.satinal-btn {
    background-color: #4CAF50;
    color: #fff;
}
.satinal-btn:hover {
    background-color: #45a049;
}
.incele-btn {
    background-color: #0288D1;
    color: #fff;
}
.incele-btn:hover {
    background-color: #0277BD;
}
.teklif-btn {
    background-color: #00b0ff;
    color: #fff;
}
.teklif-btn:hover {
    background-color: #0099e6;
}
.add-to-cart {
    background: linear-gradient(145deg, #E74C3C, #c0392b);
    color: white;
}
.add-to-cart:hover {
    background: linear-gradient(145deg, #c0392b, #a13024);
    transform: scale(1.05);
}
.whatsapp-button {
    background: linear-gradient(145deg, #25D366, #20B058);
    color: white;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}
.whatsapp-button:hover {
    background: linear-gradient(145deg, #20B058, #1A9046);
    transform: scale(1.05);
}
.whatsapp-button img {
    width: 24px;
    height: 24px;
}

/* Hakkımızda ve Ürünlerimiz Sayfası Stilleri */
.about-us, .products-info, .product-detail {
    padding: 40px 0;
    display: flex;
    gap: 40px;
    align-items: center;
    flex-wrap: wrap;
    justify-content: center;
}
.about-image, .products-image, .product-image {
    max-width: 500px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}
.about-info, .products-text, .product-info {
    max-width: 500px;
    text-align: left;
}
.about-info h2, .products-text h2, .product-info h2 {
    font-size: 2em;
    color: #fff;
    margin-bottom: 20px;
}
.about-info p, .products-text p, .product-info p {
    font-size: 1.1em;
    color: #eee;
    margin-bottom: 15px;
}
.product-features h3 {
    font-size: 1.5em;
    color: #fff;
    margin-top: 30px;
    margin-bottom: 15px;
}
.product-features ul {
    list-style: disc;
    padding-left: 20px;
}
.product-features li {
    font-size: 1.1em;
    color: #ddd;
    margin-bottom: 10px;
}

/* Ürün Detayları */
.product-details {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
}
.product-image {
    flex: 1;
    min-width: 300px;
    max-width: 500px;
}
.product-image img {
    width: 100%;
    height: auto;
    border-radius: 8px;
}
.product-info {
    flex: 1;
    min-width: 300px;
    max-width: 500px;
    display: flex;
    flex-direction: column;
    gap: 15px;
}
.product-info label {
    font-weight: bold;
    color: #ccc;
}
.product-info select, .product-info textarea {
    width: 100%;
    padding: 10px;
    border-radius: 5px;
    border: 1px solid #555;
    background-color: #333;
    color: #fff;
}
.product-info textarea {
    resize: vertical;
    min-height: 100px;
}
.product-price, .stock-status {
    font-size: 1.2em;
    color: #00FFFF;
}

/* Zoom Lens */
.zoom-lens {
    position: absolute;
    border: 1px solid #00b0ff;
    background-color: rgba(0, 176, 255, 0.2);
    width: 100px;
    height: 100px;
    pointer-events: none;
    display: none;
}
.zoom-container {
    position: relative;
    overflow: hidden;
}
.zoom-container img {
    transition: transform 0.3s ease;
}

/* Sosyal Medya ve Kontakt Ikonları */
.social-links, .contact-icons {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin: 20px 0;
    flex-wrap: wrap;
}
.social-links .social-link, .contact-icons a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #fff;
    font-weight: 500;
    transition: color 0.3s ease;
}
.social-links .social-link:hover, .contact-icons a:hover {
    color: #FFD700;
}
.social-links .social-link img, .contact-icons img {
    width: 22px;
    height: 22px;
}

/* Yasal Linkler */
.legal-links {
    text-align: center;
    font-size: 0.9em;
    color: #666;
    display: flex;
    flex-wrap: nowrap;
    justify-content: center;
    gap: 10px;
    overflow-x: auto;
    padding-bottom: 5px;
}
.legal-links a {
    color: inherit;
    margin: 0 5px;
    transition: color 0.3s ease;
    flex-shrink: 0;
    white-space: nowrap;
}
.legal-links a:hover {
    color: #00FFFF;
}

/* Telif Hakkı */
.copyright {
    margin-top: 20px;
    color: #fff;
    font-size: 0.9em;
    text-align: center;
    line-height: 1.5;
}
.copyright span {
    display: inline;
}

/* Çerez Bildirimi Banner'ı Stilleri */
#cookieConsentBanner {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: #222;
    color: #fff;
    padding: 15px 20px;
    text-align: center;
    font-size: 14px;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.4);
    z-index: 1000;
    display: none;
}
#cookieConsentBanner p {
    margin: 0;
    display: inline;
}
#cookieConsentBanner a {
    color: #87CEEB;
    margin-left: 8px;
    white-space: nowrap;
}
#cookieConsentBanner a:hover {
    text-decoration: underline;
}
#cookieConsentBanner button {
    background-color: #4CAF50;
    color: #fff;
    border: none;
    padding: 8px 18px;
    cursor: pointer;
    font-size: 14px;
    margin-left: 25px;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}
#cookieConsentBanner button:hover {
    background-color: #45a049;
}

/* İletişim Sayfası Stilleri */
.contact-info {
    padding: 20px;
    color: #fff;
}
.contact-info h2 {
    font-size: 2em;
    margin-bottom: 20px;
    color: #00FFFF;
}
.contact-info p {
    font-size: 1.1em;
    margin-bottom: 10px;
    color: #ccc;
}
.contact-info a {
    color: #00FFFF;
    transition: color 0.3s ease;
}
.contact-info a:hover {
    color: #00b0ff;
}
.contact-info iframe {
    margin-top: 30px;
    border: none;
    width: 100%;
    max-width: 800px;
    height: 400px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}
.contact-info .social-links {
    gap: 20px;
    margin: 20px 0;
}

/* Yasal Belgeler Sayfası Stilleri */
.policy-content {
    padding: 20px;
    text-align: left;
    color: #eee;
    max-width: 900px;
    margin: 20px auto;
    background-color: #000;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}
.policy-content h1 {
    font-size: 2.5em;
    color: #fff;
    margin: 0 0 30px;
    text-align: center;
}
.policy-content h2 {
    font-size: 1.8em;
    color: #fff;
    margin: 30px 0 15px;
}
.policy-content h3 {
    font-size: 1.4em;
    color: #ccc;
    margin: 20px 0 10px;
}
.policy-content p {
    font-size: 1.1em;
    margin-bottom: 15px;
    line-height: 1.8;
}
.policy-content ul, .policy-content ol {
    padding-left: 30px;
    margin-bottom: 20px;
}
.policy-content ul li, .policy-content ol li {
    font-size: 1.1em;
    margin-bottom: 10px;
    color: #ddd;
}
.policy-content a {
    color: #00b0ff;
    text-decoration: underline;
}
.policy-content a:hover {
    color: #00FFFF;
}
.info-box {
    background-color: #333;
    border: 1px solid #555;
    padding: 15px 20px;
    margin: 20px 0;
    border-radius: 5px;
}

/* Responsive Düzenlemeler */
@media (max-width: 1024px) {
    .navigation ul li {
        margin: 0 8px;
    }
    .navigation ul li a {
        font-size: 1em;
    }
    .nav-cart-button {
        font-size: 1em;
    }
    .nav-cart-button img {
        height: 20px;
    }
    .product-card, .home-card {
        width: calc(50% - 15px);
    }
    .about-us, .products-info, .product-detail {
        flex-direction: column;
        align-items: stretch;
    }
    .about-image, .products-image, .product-image {
        max-width: 100%;
    }
    .about-info, .products-text, .product-info {
        max-width: 100%;
    }
    .contact-info iframe {
        height: 300px;
    }
    .policy-content {
        padding: 20px 0;
    }
    .policy-content h1 {
        font-size: 2em;
    }
    .policy-content h2 {
        font-size: 1.5em;
    }
}
@media (max-width: 768px) {
    .navigation ul {
        flex-direction: row;
        flex-wrap: wrap;
    }
    .navigation ul li {
        margin: 5px 10px;
    }
    .navigation ul li a {
        padding: 5px 0;
        width: auto;
    }
    .dropdown-content {
        position: static;
        border: none;
        width: 100%;
        min-width: unset;
        box-shadow: none;
        background-color: #1a1a1a;
    }
    .dropdown-content a {
        padding: 10px 20px;
        font-size: 1em;
        border-bottom: 1px solid rgba(255,255,255,0.1);
		text-align: left !important; /* Tüm alt menü linklerini mobil görünümde sola hizalar */
    }
    .dropdown-content a:last-child {
        border-bottom: none;
    }
    .social-links, .contact-icons {
        flex-direction: row;
        gap: 15px;
    }
    .legal-links {
        gap: 5px;
        overflow-x: auto;
    }
    .legal-links a {
        font-size: 0.8em;
    }
    .product-card, .home-card {
        width: 100%;
    }
    .contact-info .social-links {
        flex-direction: column;
        align-items: center;
        gap: 10px;
    }
    .contact-info iframe {
        height: 250px;
    }
}
@media (max-width: 480px) {
    .navigation ul {
        flex-direction: column;
        align-items: center;
    }
    .navigation ul li {
        margin: 10px 0;
    }
    .navigation ul li a {
        padding: 10px 15px;
        width: 100%;
        text-align: center;
    }
    .social-links, .contact-icons {
        flex-direction: column;
        align-items: center;
        gap: 10px;
    }
    .social-links .social-link, .contact-icons a {
        justify-content: center;
        width: 100%;
        max-width: 250px;
    }
    .legal-links a {
        font-size: 0.75em;
    }
    .copyright span {
        display: block;
    }
    .contact-info iframe {
        height: 200px;
    }
    .policy-content h1 {
        font-size: 1.8em;
    }
    .add-to-cart, .whatsapp-button {
        min-width: 150px;
        padding: 8px 16px;
        font-size: 0.9em;
    }
}

/* ========================================
   ONLINE SATIŞ SAYFASI - EKLEMELER
   ======================================== */
.campaign-banner {
    background-color: rgba(0, 176, 255, 0.2);
    border: 1px solid #00b0ff;
    border-radius: 12px;
    padding: 25px;
    margin-bottom: 40px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.4);
    text-align: center;
}
.campaign-banner h2 {
    color: #00FFFF;
    font-size: 2.2em;
    margin-bottom: 20px;
    text-shadow: 0 0 10px rgba(0, 255, 255, 0.5);
}
.campaign-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    margin-top: 20px;
}
.campaign-card {
    background-color: rgba(0, 200, 255, 0.1);
    padding: 20px;
    border-radius: 10px;
    border: 1px solid rgba(0, 255, 255, 0.3);
    color: #fff;
    font-size: 1.1em;
    font-weight: bold;
    transition: transform 0.3s ease, background-color 0.3s ease;
}
.campaign-card:hover {
    transform: translateY(-5px);
    background-color: rgba(0, 200, 255, 0.2);
}
.campaign-card h3 {
    font-size: 1.4em;
    margin-bottom: 10px;
    color: #CCCCCC;
}
.campaign-card p {
    font-size: 1em;
    color: #bbb;
    margin-bottom: 15px;
}

.os-section {
    margin-bottom: 40px;
    text-align: center;
}
.os-section h2 {
    font-size: 2em;
    margin-bottom: 25px;
    color: #00b0ff;
}
.os-product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 20px;
}
.os-product-card {
    background-color: rgba(255, 255, 255, 0.1);
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease, background-color 0.3s ease;
    color: #eee;
    border: 1px solid rgba(255, 255, 255, 0.2);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.os-product-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.5);
    background-color: rgba(255, 255, 255, 0.2);
}
.os-product-card img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    margin-bottom: 15px;
    max-height: 200px;
    object-fit: cover;
}
.os-product-card h3 {
    font-size: 1.4em;
    margin-bottom: 8px;
    color: #CCCCCC;
}
.os-product-card p {
    font-size: 1em;
    color: #bbb;
    margin-bottom: 10px;
    flex-grow: 1;
}
.os-product-card .price {
    font-size: 1.4em;
    font-weight: 700;
    color: #00b0ff;
    margin-top: 10px;
    display: block;
}

/* GENEL CTA BUTON */
.cta-button {
    display: inline-block;
    background-color: #007bff;
    color: white !important;
    padding: 12px 24px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    text-align: center;
    transition: all 0.3s ease;
    margin: 10px 5px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    min-width: 180px;
}
.cta-button:hover {
    background-color: #0056b3;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
}

/* OS ÜRÜN KARTI CTA */
.os-product-card .cta-button {
    background-color: #00b0ff;
    font-size: 1.2em;
    padding: 12px 25px;
    margin-top: 15px;
}
.os-product-card .cta-button:hover {
    background-color: #0080cc;
    transform: scale(1.05);
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .campaign-grid, .os-product-grid {
        grid-template-columns: 1fr;
    }
    .cta-button {
        font-size: 0.95em;
        padding: 10px 18px;
    }
}

/* ========================================
   KAMPANYALAR SAYFASI - ÖZEL STİLLER
   ======================================== */
.section {
    margin-bottom: 40px;
    text-align: center;
}
.section h2 {
    font-size: 2em;
    margin-bottom: 25px;
    color: #00b0ff;
}

.campaign-details-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 20px;
}
.campaign-detail-card {
    background-color: rgba(0, 176, 255, 0.1);
    border: 1px solid #00b0ff;
    border-radius: 12px;
    padding: 25px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.4);
    text-align: left;
    color: #fff;
    transition: transform 0.3s ease, background-color 0.3s ease;
}
.campaign-detail-card:hover {
    transform: translateY(-5px);
    background-color: rgba(0, 176, 255, 0.2);
}
.campaign-detail-card h3 {
    color: #00FFFF;
    font-size: 1.8em;
    margin-bottom: 15px;
    text-shadow: 0 0 8px rgba(0, 255, 255, 0.5);
    text-align: center;
}
.campaign-detail-card p {
    font-size: 1.1em;
    line-height: 1.6;
    margin-bottom: 10px;
}
.campaign-detail-card ul {
    list-style: disc;
    margin-left: 20px;
    margin-bottom: 15px;
}
.campaign-detail-card ul li {
    margin-bottom: 5px;
}
.campaign-detail-card strong {
    color: #FFD700;
}

/* Responsive */
@media (max-width: 1024px) {
    .section h2 {
        font-size: 1.8em;
    }
    .campaign-details-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 20px;
    }
    .campaign-detail-card h3 {
        font-size: 1.6em;
    }
    .campaign-detail-card p {
        font-size: 1em;
    }
    .campaign-detail-card ul li {
        font-size: 0.9em;
    }
}
@media (max-width: 768px) {
    .campaign-details-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    .campaign-detail-card {
        padding: 15px;
    }
    .campaign-detail-card h3 {
        font-size: 1.5em;
    }
    .campaign-detail-card p {
        font-size: 0.9em;
        line-height: 1.5;
    }
    .campaign-detail-card ul li {
        font-size: 0.85em;
    }
}
@media (max-width: 480px) {
    .section h2 {
        font-size: 1.6em;
    }
    .campaign-detail-card h3 {
        font-size: 1.3em;
    }
    .campaign-detail-card p {
        font-size: 0.8em;
    }
    .campaign-detail-card ul li {
        font-size: 0.8em;
    }
}
/* Alt Menü Linklerinin Mobil Cihazlarda Tek Sütun Olmasını Garanti Etme */
@media (max-width: 768px) {
    .dropdown-content a {
        display: block !important; /* Her linkin tüm satırı kaplamasını zorlar */
        width: 100% !important;   /* Genişliğini %100 yapar */
        box-sizing: border-box;  /* Kutu modelini korur */
    }
}

/* ========================================
   YASAL LİNKLER - MOBİL/TABLET DÜZELTMESİ
   ======================================== */

/* Mevcut legal-links stilinin 'nowrap' özelliğini eziyoruz ve 2'li düzeni kuruyoruz. */
@media (max-width: 1024px) {
    /* ... diğer 1024px düzenlemeleri buraya geliyor ... */

    .legal-links {
        display: flex;
        flex-wrap: wrap; /* KAYDIRMAYI ENGELLEYİP alt satıra atar */
        justify-content: space-between; /* Linkler arasında boşluk bırakır */
        padding: 0 10px; 
        margin: 15px 0;
        /* Yana kaydırma çubuğunu gizleriz, çünkü artık sığacaklar. */
        overflow-x: hidden; 
    }

    /* Her bir linki iki sütun halinde düzenleriz (Telefon ve Tablet Dikey) */
    .legal-links a {
        display: block; 
        width: 48%; /* İki tanesi yan yana sığması için */
        box-sizing: border-box;
        margin: 0 0 10px 0; /* Sadece altına boşluk */
        padding: 8px 5px;
        font-size: 0.9em;
        text-align: center;
        border: 1px solid rgba(255, 255, 255, 0.2); 
        border-radius: 4px;
        /* Renk mirasını koru */
        color: #fff; 
        transition: background-color 0.3s ease;
    }
    
    .legal-links a:hover {
        background-color: rgba(255, 255, 255, 0.1);
    }
}


/* Küçük telefonlar için (480px) 1'li düzen daha iyi olabilir (Opsiyonel) */
@media (max-width: 480px) {
    /* ... diğer 480px düzenlemeleri buraya geliyor ... */
    
    .legal-links {
        justify-content: center;
    }
    
    .legal-links a {
        width: 95%; /* Tek sütun ve ortalanmış */
    }
}

/* Öz Elmas - Tam Kararında ve Dengeli WhatsApp Butonu */
.whatsapp-button-ozel {
    border: none !important;
    /* Yüksekliği düşürmek için 10px, genişliği dengelemek için 20px yaptık */
    padding: 16px 27px !important; 
    
    /* Köşeleri 1. sayfadaki gibi ne çok yuvarlak ne çok keskin (5px) yaptık */
    border-radius: 8px !important; 
    
    cursor: pointer !important;
    font-size: 0.95em !important; 
    font-weight: bold !important;
    transition: background-color 0.3s ease, transform 0.3s ease !important;
    
    /* Hassas Boyut Ayarları */
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    min-width: 150px !important; /* 200'den 150'ye çekerek o aşırı uzunluğu bitirdik */
    min-height: 42px !important;  /* 54'den 42'ye çekerek o aşırı yüksekliği tıraşladık */
    
    /* Renk ve Stil */
    background: linear-gradient(145deg, #25D366, #20B058) !important;
    color: white !important;
    text-decoration: none !important;
    gap: 8px !important;
    line-height: 1 !important;
    white-space: nowrap !important;
}

.whatsapp-button-ozel:hover {
    background: linear-gradient(145deg, #20B058, #1A9046) !important;
    transform: scale(1.05) !important;
    color: white !important;
}
