html {
    overflow-x: hidden;
    width: 100%;
}

body {
    overflow-x: hidden;
    width: 100%;
    padding-right: 0 !important;
    
}

/* Prevent content shift when scrollbar appears */
@media (max-width: 991px) {
    body {
        overflow-y: scroll;
    }
}

.davetli-hero-bg {
    background-color: hsl(112, 55%, 93%);
    background-image:
        linear-gradient(to right, #dbefdb 1px, transparent 1px),
        linear-gradient(to bottom, #dbefdb 1px, transparent 1px);
    background-size: 16px 16px;
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: visible;
}
@media (min-width: 768px) {
    .davetli-hero-bg {
        background-size: 24px 24px;
    }
}
.davetli-invite-card {
    box-shadow: 0 8px 32px rgba(0,0,0,0.10);
}
.davetli-whatsapp img {
    transition: box-shadow 0.2s;
    box-shadow: 0 4px 16px rgba(0,0,0,0.10);
}
.davetli-whatsapp img:hover {
    box-shadow: 0 8px 32px rgba(0,0,0,0.18);
}
@media (max-width: 991px) {
    .davetli-invite-card { display:none; }
    .davetli-hero-bg { padding-bottom: 60px; }
    .davetli-hero-bg .row { flex-direction: column; }
    .davetli-hero-bg .col-lg-6 { max-width: 100%; flex: 0 0 100%; }
    .davetli-hero-bg h1 { font-size: 2rem; }
    .davetli-hero-bg h2 { font-size: 1.2rem; }
    .davetli-hero-bg p { font-size: 1rem; }
    .davetli-hero-bg img.img-fluid { max-width: 90vw !important; }
    header .container { flex-direction: column; gap: 10px; }
    header nav ul { flex-direction: column; align-items: flex-start; }
    header .btn { width: 100%; margin-top: 10px; }
}
@media (max-width: 767px) {
    .davetli-hero-bg { padding-top: 40px; }
    .davetli-hero-bg .container { padding: 0 10px; }
    .davetli-hero-bg h1 { font-size: 2.3rem; }
    .davetli-hero-bg h2 { font-size: 1rem; }
    .davetli-hero-bg p { font-size: 0.95rem; }
    .davetli-hero-bg img.img-fluid { max-width: 98vw !important; }
    .davetli-hero-bg img.hero-img-animate {
        margin-bottom: 0;
        position: relative;
        top: -70px;
    }
    header .container { padding: 0 10px; }
    footer .container { font-size: 0.85rem; }
    .phone-bg-square {
        left: 50% !important;
        top: 50% !important;
        transform: translate(-50%, -50%) !important;
    }
}

/* Hamburger Menu */
.hamburger {
    width: 30px;
    height: 30px;
    display: inline-block;
    cursor: pointer;
    position: relative;
    z-index: 10001;
    background: none;
    border: none;
    padding: 0;
    margin: 0;
    pointer-events: auto;
    user-select: none;
    touch-action: manipulation;
    -webkit-tap-highlight-color: transparent;
}

/* Bootstrap display utilities - Masaüstünde hamburger menüyü gizle */
@media (min-width: 992px) {
    .d-lg-none {
        display: none !important;
    }
}

.hamburger-bar {
    position: absolute;
    left: 3px;
    right: 3px;
    height: 4px;
    background: #222;
    border-radius: 2px;
    transition: .3s;
    pointer-events: none;
}

.hamburger-bar.top { top: 6px; }
.hamburger-bar.mid { top: 13px; }
.hamburger-bar.bot { top: 20px; }

.hamburger.open .hamburger-bar.top {
    top: 13px;
    transform: rotate(45deg);
}

.hamburger.open .hamburger-bar.mid {
    opacity: 0;
}

.hamburger.open .hamburger-bar.bot {
    top: 13px;
    transform: rotate(-45deg);
}

/* Mobile Menu Overlay */
#mobileMenuOverlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(255,255,255,0.98);
    backdrop-filter: blur(10px);
    z-index: 9999;
    display: none;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-20px);
    pointer-events: none;
}

#mobileMenuOverlay.active {
    display: flex;
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    pointer-events: auto;
}

.mobile-menu-content {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1) 0.1s;
}

#mobileMenuOverlay.active .mobile-menu-content {
    opacity: 1;
    transform: translateY(0);
}

#mobileMenuOverlay ul {
    margin: 0 !important;
    padding: 0 !important;
    width: auto !important;
    max-width: 90vw !important;
    align-items: center !important;
}

#mobileMenuOverlay .nav-link {
    text-align: center !important;
    padding: 12px 24px !important;
    color: #08100a !important;
    font-weight: 600 !important;
    transition: all 0.3s ease;
    position: relative;
    opacity: 0.8;
}

#mobileMenuOverlay .nav-link:hover {
    opacity: 1;
    transform: translateY(-2px);
    color: #02a45d !important;
}

#mobileMenuOverlay .nav-link:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: #02a45d;
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

#mobileMenuOverlay .nav-link:hover:after {
    width: 80%;
}

.mobile-menu-footer {
    border-top: 1px solid rgba(0,0,0,0.1);
    padding-top: 2rem;
    width: 100%;
    max-width: 300px;
    margin-top: 2rem;
}

.mobile-contact {
    font-size: 1.1rem;
    opacity: 0.8;
    text-align: center;
}

.mobile-contact a {
    color: #08100a;
    text-decoration: none;
    transition: all 0.3s ease;
}

.mobile-contact a:hover {
    opacity: 1;
    color: #02a45d !important;
}

/* Header Styles */
header {
    position: sticky;
    top: 0;
    z-index: 10000;
    background: rgba(255,255,255,0.95);
    backdrop-filter: blur(4px);
    box-shadow: 0 2px 12px rgba(0,0,0,0.04);
    transition: backdrop-filter 0.2s ease, background 0.2s ease;
}

/* Mobil menü açıkken sayfa scroll'unu engelle */
body.menu-open {
    overflow: hidden;
    position: fixed;
    width: 100%;
    height: 100%;
}

header.menu-open {
    background: rgba(255,255,255,0.98);
    backdrop-filter: blur(12px);
    box-shadow: 0 4px 24px rgba(0,0,0,0.08);
}

.hero-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
    text-align: center;
}

.hero-oval {
    width: 100%;
    height: 36px;
    background: #fff;
    border-top-left-radius: 100vw 700px;
    border-top-right-radius: 100vw 700px;
    position: absolute;
    left: 0; right: 0; bottom: 0;
    z-index: 2;
    pointer-events: none;
}

.hero-wave {
    width: 100%;
    height: 60px;
    position: absolute;
    left: 0; right: 0; bottom: 0;
    z-index: 2;
    pointer-events: none;
    overflow: hidden;
}

/* Hero Animasyonları */
.hero-animate {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s cubic-bezier(.4,2,.6,1);
}

.hero-img-animate {
    opacity: 0;
    transform: translateX(60px);
    transition: all 0.9s cubic-bezier(.4,2,.6,1) 0.3s;
}

/* BiKopi Nasıl Çalışır Bölümü */
.bikopi-how-section .icon-wrapper {
    margin-bottom: 1rem;
}

.bikopi-how-section .feature-icon {
    width: 48px;
    height: 48px;
}

/* Hızlı Hesaplama Aracı Bölümü */
.how-it-works-section .form-control:focus,
.how-it-works-section .form-select:focus {
    border-color: #02a45d;
    box-shadow: 0 0 0 0.25rem rgba(2,164,93,0.1);
}

/* SSS Bölümü */
.faq-accordion .accordion-button:not(.collapsed) {
    background-color: #d6f5e3;
    color: #02a45d;
}

.faq-accordion .accordion-button:focus {
    box-shadow: none;
    border-color: rgba(2,164,93,0.1);
}

/* CTA Alanı (Başlamaya Hazır Mısınız?) */
.cta-section {
    max-width: 1100px;
    margin: 0 auto 32px auto;
    padding: 48px 32px;
    background: #02a45d;
    border-radius: 2rem;
    box-shadow: 0 4px 24px rgba(0,0,0,0.06);
}

.cta-row {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    align-items: center;
    justify-content: space-between;
}

@media (min-width: 768px) {
    .cta-row {
        flex-direction: row;
    }
}

.cta-title {
    color: #fff;
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.cta-desc {
    color: #fff;
    font-size: 1.15rem;
}

.cta-btn {
    background: #fff;
    color: #02a45d;
    font-size: 1.15rem;
    font-weight: 700;
    border-radius: 999px;
    padding: 0.75rem 2rem;
    border: none;
    transition: background 0.2s, color 0.2s;
    min-width: 160px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}

.cta-btn:hover, .cta-btn:focus {
    background: #e6f4e6;
    color: #02a45d;
}

/* Responsive Düzenlemeler */
@media (max-width: 768px) {
    .cta-section {
        text-align: center;
        padding: 2rem 0;
    }
    
    .cta-row {
        justify-content: center;
    }
    
    .cta-title {
        font-size: 1.75rem;
    }
}

/* Profesyonel Footer */
.footer-wave {
    width: 100%;
    overflow: hidden;
    line-height: 0;
    background: transparent;
    position: relative;
    z-index: 1;
}

.footer-main {
    background: #08100a;
    color: #fff;
    padding: 70px 0 55px 0;
    position: relative;
    clip-path: ellipse(75% 100% at 50% 0%);
    z-index: 2;
    margin-top: -1px;
}

.footer-logo img {
    height: 110px;
    max-width: 100%;
    margin-bottom: 16px;
}

.footer-contact {
    font-size: 1.15rem;
    margin-bottom: 18px;
}

.footer-contact a {
    color: #fff;
    text-decoration: underline;
}

.footer-social a {
    color: #fff;
    font-size: 1.6rem;
    margin-right: 12px;
    transition: color 0.2s;
}

.footer-social a:last-child { 
    margin-right: 0; 
}

.footer-social a:hover {
    color: #7ed957;
}

.footer-bottom {
    background: white;
    border-radius: 18px;
    max-width: 1100px;
    margin: 0 auto 32px auto;
    padding: 18px 32px 10px 32px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 3;
}

.footer-menu a {
    color: #08100a;
    text-decoration: none;
    margin: 0 10px;
    transition: color 0.2s;
}

.footer-menu a:hover {
    color: #7ed957;
}

.footer-copyright {
    font-size: 0.97rem;
    margin-bottom: 6px;
}

.footer-crafted {
    font-size: 0.97rem;
}

@media (max-width: 991px) {
    .footer-main {
        padding: 40px 0 24px 0;
        clip-path: ellipse(90% 100% at 50% 0%);
    }
    .footer-main .row > div { 
        margin-bottom: 32px; 
    }
    .footer-main .row > div:last-child { 
        margin-bottom: 0; 
    }
}

@media (max-width: 767px) {
    .footer-main {
        padding: 32px 0 16px 0;
        clip-path: ellipse(120% 100% at 50% 0%);
    }
    .footer-logo img { 
        height: 80px; 
    }
    .footer-bottom {
        padding: 12px 8px 8px 8px;
        font-size: 0.95rem;
    }
}

/* Hero Bölümü */
.typewriter-text {
    font-size: 1.3rem;
    color: black;
    min-height: 1.5em;
}

.hero-subtitle {
    font-size: 20px;
    color: #02a45d;
}

.hero-description {
    font-size: 1.15rem;
    color: #444;
    max-width: 480px;
}

.hero-image-wrapper {
    display: inline-block;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
}

.hero-image-wrapper:hover {
    transform: scale(1.05);
}

.hero-image-wrapper img {
    max-width: 540px;
    z-index: 2;
    position: relative;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    filter: drop-shadow(0 4px 12px rgba(0,0,0,0.1));
}

.hero-image-wrapper:hover img {
    filter: drop-shadow(0 8px 24px rgba(0,0,0,0.15));
}

/* WhatsApp Butonu */
.davetli-whatsapp {
    right: 32px;
    bottom: 32px;
    z-index: 99;
    transition: all 0.3s ease;
}

.davetli-whatsapp:hover {
    transform: translateY(-5px) scale(1.05);
}

.davetli-whatsapp:active {
    transform: translateY(-2px) scale(0.98);
}

.whatsapp-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: #02a45d;
    box-shadow: 0 4px 16px rgba(0,0,0,0.10);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.whatsapp-icon:hover {
    background: #028a4d;
    box-shadow: 0 6px 20px rgba(2,164,93,0.2);
}

.whatsapp-icon:active {
    box-shadow: 0 2px 8px rgba(2,164,93,0.15);
}

.whatsapp-icon i {
    font-size: 2rem;
    color: white;
    transition: transform 0.3s ease;
}

.whatsapp-icon:hover i {
    transform: scale(1.1);
}

.whatsapp-icon::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 5px;
    height: 5px;
    background: rgba(255, 255, 255, 0.5);
    opacity: 0;
    border-radius: 100%;
    transform: scale(1, 1) translate(-50%);
    transform-origin: 50% 50%;
}

.whatsapp-icon:active::after {
    animation: ripple 0.6s ease-out;
}

/* Bölüm Başlıkları */
.section-title {
    font-size: 2.3rem;
    color: #02a45d;
    letter-spacing: -1px;
}

.section-subtitle {
    font-size: 2rem;
    color: #02a45d;
}

.section-description {
    font-size: 1.15rem;
    max-width: 540px;
    margin: auto;
}

/* Özellik İkonları */
.feature-icon {
    font-size: 2.2rem;
    color: #02a45d;
}

/* Hesaplama Aracı */
.calculator-container {
    background: #e6f4e6;
    border-radius: 36px;
    padding: 48px 24px;
    position: relative;
    overflow: hidden;
}

.calculator-text {
    font-size: 1.15rem;
    color: #444;
}

.calculator-note {
    font-size: 1rem;
    color: #e53935;
}

/* Buton Efektleri */
.btn {
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.btn:active {
    transform: translateY(0);
    box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}

/* Yeşil Butonlar */
.btn-success {
    background: #02a45d;
    border: none;
}

.btn-success:hover {
    background: #028a4d;
}

/* Koyu Butonlar */
.btn-dark {
    background: #08100a;
    border: none;
}

.btn-dark:hover {
    background: #1a2b1f;
}

/* CTA Butonu */
.cta-btn {
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.cta-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.cta-btn:active {
    transform: translateY(0);
    box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}

/* Buton Tıklama Efekti */
.btn::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 5px;
    height: 5px;
    background: rgba(255, 255, 255, 0.5);
    opacity: 0;
    border-radius: 100%;
    transform: scale(1, 1) translate(-50%);
    transform-origin: 50% 50%;
}

.btn:active::after {
    animation: ripple 0.6s ease-out;
}

@keyframes ripple {
    0% {
        transform: scale(0, 0);
        opacity: 0.5;
    }
    100% {
        transform: scale(20, 20);
        opacity: 0;
    }
}

/* Profile Page Styles */
.profile-header {
    background: linear-gradient(135deg, var(--main-green) 0%, #000DFF 100%);
    color: white;
    padding: 2rem 0;
    margin-bottom: 2rem;
    position: relative;
    z-index: 1;
}

.profile-card {
    border: none;
    border-radius: 15px;
    box-shadow: 0 0 20px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
    background: white;
    margin-bottom: 1.5rem;
}

.profile-card:hover {
    transform: translateY(-5px);
}

.profile-icon {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: var(--main-green);
}

.nav-pills .nav-link {
    color: #666;
    border-radius: 10px;
    margin-bottom: 0.5rem;
    transition: background 0.2s, color 0.2s;
}

.nav-pills .nav-link.active {
    background-color: var(--main-green);
    color: #fff;
}

.nav-pills .nav-link:hover {
    background-color: #e6f7f0;
    color: var(--main-green);
}

.btn-main {
    background: var(--main-green);
    color: #fff;
    border: none;
    border-radius: 8px;
    padding: 0.5rem 1.5rem;
    transition: background 0.2s;
}

.btn-main:hover {
    background: #01894d;
}



.container, .row {
    margin-bottom: 0 !important;
    padding-bottom: 0 !important;
}

/* Sepet Sayısı Badge */
.cart-count {
    position: absolute;
    top: 6px;
    right: 8px;
    background-color: #dc3545;
    color: white;
    border-radius: 50%;
    padding: 2px 7px;
    font-size: 13px;
    min-width: 22px;
    height: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    z-index: 10;
    box-shadow: 0 0 2px #3333;
    border: 2px solid #fff;
}

/* Product Card Fixed Image Size */
.product-card {
    display: flex;
    flex-direction: column;
    height: 420px;
    min-height: 420px;
}

.product-card .card-img-top {
    width: 100%;
    height: 220px;
    object-fit: cover;
    object-position: center;
    background: #f8f8f8;
}

.product-card .card-body {
    flex: 1 1 auto;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.product-card .card-title {
    color: #02a45d;
    font-weight: 600;
    margin-bottom: 0.5rem;
    min-height: 28px;
    display: flex;
    align-items: center;
}

.product-card .card-text.product-category {
    min-height: 20px;
    margin-bottom: 8px;
    color: #888;
    font-size: 0.95rem;
}

.product-card .add-to-cart-form {
    margin-top: auto;
    padding: 0 16px 16px;
}

@media (max-width: 768px) {
    .product-card .card-img-top {
        height: 200px;
    }
    .product-card .card-body {
        min-height: 180px;
    }
}

@media (max-width: 576px) {
    .product-card .card-img-top {
        height: 150px;
    }
    .product-card .card-body {
        min-height: 140px;
    }
}

/* Recommended Product Cards - Cart Page */
.recommended-product-card {
    position: relative;
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    transition: all 0.3s ease;
    border: 1px solid #f0f0f0;
}

.recommended-product-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
    border-color: #e0e0e0;
}

.product-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    background: linear-gradient(135deg, #ff6b6b, #ee5a52);
    color: white;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    z-index: 2;
    display: flex;
    align-items: center;
    gap: 4px;
    box-shadow: 0 2px 8px rgba(255, 107, 107, 0.3);
}

.product-badge i {
    font-size: 0.7rem;
}

.product-image-container {
    position: relative;
    height: 140px;
    overflow: hidden;
    background: #f8f9fa;
}

.product-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.recommended-product-card:hover .product-image {
    transform: scale(1.1);
}

.product-info {
    padding: 16px;
}

.product-title {
    font-size: 0.9rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 6px;
    line-height: 1.3;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.product-category {
    font-size: 0.75rem;
    color: #888;
    margin-bottom: 12px;
    font-weight: 500;
}

.product-price-section {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 16px;
}

.product-price {
    font-size: 1rem;
    font-weight: 700;
    color: #02a45d;
}

.customer-count {
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: 0.7rem;
    color: #666;
    font-weight: 500;
}

.customer-count i {
    color: #02a45d;
    font-size: 0.65rem;
}

.add-to-cart-btn {
    width: 100%;
    background: linear-gradient(135deg, #02a45d, #018a4e);
    color: white;
    border: none;
    padding: 12px 16px;
    border-radius: 12px;
    font-size: 0.85rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: all 0.3s ease;
    cursor: pointer;
}

.add-to-cart-btn:hover {
    background: linear-gradient(135deg, #018a4e, #016b3a);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(2, 164, 93, 0.3);
    color: white;
}

.out-of-stock-btn {
    width: 100%;
    background: #f8f9fa;
    color: #999;
    border: 1px solid #e9ecef;
    padding: 12px 16px;
    border-radius: 12px;
    font-size: 0.85rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    cursor: not-allowed;
}

/* Responsive ayarlar */
@media (max-width: 768px) {
    .product-image-container {
        height: 120px;
    }
    
    .product-info {
        padding: 12px;
    }
    
    .product-title {
        font-size: 0.85rem;
    }
    
    .product-price {
        font-size: 0.9rem;
    }
    
    .customer-count {
        font-size: 0.65rem;
    }
    
    .add-to-cart-btn,
    .out-of-stock-btn {
        padding: 10px 12px;
        font-size: 0.8rem;
    }
}

