/* Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800&display=swap');

:root {
    /* Logo uyumlu daha tok/koyu bir sarı */
    --primary-color: #C0CA33;
    --primary-hover: #AFB42B;
    --primary-light: #F0F4C3;

    /* Modern Koyu Tonlar */
    --secondary-color: #1a1a1a;
    --text-color: #333333;
    --text-light: #666666;

    /* Arkaplanlar */
    --bg-body: #f3f4f6;
    --bg-white: #ffffff;

    /* Efektler */
    --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 10px 30px -10px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 20px 40px -15px rgba(0, 0, 0, 0.15);
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Outfit', sans-serif;
    -webkit-font-smoothing: antialiased;
}

body {
    background-color: var(--bg-body);
    color: var(--text-color);
    line-height: 1.7;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Modern Header */
header {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

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

.logo img {
    height: 50px;
    transition: var(--transition);
}

.logo:hover img {
    transform: scale(1.05);
}

.nav-links {
    display: flex;
    gap: 2.5rem;
}

.nav-links a {
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--secondary-color);
    position: relative;
    padding: 5px 0;
}

.nav-links a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 0;
    background-color: var(--primary-color);
    transition: var(--transition);
}

.nav-links a:hover::after,
.nav-links a.active::after {
    width: 100%;
}

/* Modern Cart Button */
.cart-btn {
    position: relative;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: white;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
    /* Soft shadow */
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--secondary-color);
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 2px solid transparent;
    /* Prepare for border on hover */
}

.cart-btn:hover {
    background: #111;
    color: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.cart-btn i {
    font-size: 1.25rem;
    display: block;
    line-height: 1;
}

.cart-count {
    position: absolute;
    top: -8px;
    right: -8px;
    background: #e11d48;
    color: white;
    font-size: 0.7rem;
    font-weight: 800;
    min-width: 20px;
    height: 20px;
    padding: 0 4px;
    border-radius: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    border: 2px solid white;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    z-index: 10;
    transition: transform 0.2s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.cart-count.pulse {
    animation: cartPulse 0.4s ease-out;
}

@keyframes cartPulse {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.6);
    }

    100% {
        transform: scale(1);
    }
}

.cart-btn.highlight {
    animation: cartHighlight 0.4s ease-out;
}

@keyframes cartHighlight {
    0% {
        border-color: transparent;
    }

    50% {
        border-color: var(--primary-color);
        box-shadow: 0 0 15px var(--primary-color);
    }

    100% {
        border-color: transparent;
    }
}

.price-flash {
    animation: priceFlash 0.5s ease-out;
}

@keyframes priceFlash {
    0% {
        color: var(--primary-color);
        transform: scale(1);
    }

    50% {
        color: #10b981;
        transform: scale(1.1);
    }

    100% {
        color: var(--primary-color);
        transform: scale(1);
    }
}

.cart-item {
    transition: all 0.4s ease;
}

.cart-item.removing {
    transform: translateX(100px);
    opacity: 0;
    margin-bottom: -100px;
}

/* Modern Hero */
.hero {
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.5) 100%), url('../img/hero-real.jpg');
    background-position: center;
    background-size: cover;
    background-attachment: fixed;
    height: 65vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    margin-bottom: 4rem;
    border-radius: 0 0 40px 40px;
    box-shadow: var(--shadow-lg);
}

.hero h1 {
    font-size: 4rem;
    font-weight: 800;
    margin-bottom: 1rem;
    line-height: 1.1;
    text-transform: uppercase;
    letter-spacing: -1px;
}

.hero p {
    font-size: 1.3rem;
    font-weight: 300;
    margin-bottom: 2.5rem;
    opacity: 0.9;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 1rem 2.5rem;
    background: var(--primary-color);
    color: var(--secondary-color);
    border-radius: 50px;
    font-weight: 700;
    border: none;
    cursor: pointer;
    font-size: 1rem;
    box-shadow: 0 4px 15px rgba(192, 202, 51, 0.4);
    transition: var(--transition);
}

.btn:hover {
    background: var(--primary-hover);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(192, 202, 51, 0.6);
}

/* Section Styling */
.section-title {
    text-align: center;
    margin-bottom: 3.5rem;
    position: relative;
}

.section-title span {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--secondary-color);
    position: relative;
    z-index: 1;
}

.section-title span::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: -10px;
    right: -10px;
    height: 12px;
    background: var(--primary-light);
    z-index: -1;
    border-radius: 4px;
}

/* Modern Filters */
.category-filter {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 0.7rem 2rem;
    border: none;
    border-radius: 50px;
    background: var(--bg-white);
    color: var(--text-color);
    font-weight: 600;
    cursor: pointer;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.filter-btn:hover,
.filter-btn.active {
    background: var(--primary-color);
    color: var(--secondary-color);
    box-shadow: 0 5px 15px rgba(192, 202, 51, 0.3);
    transform: translateY(-2px);
}

/* Modern Cards */
.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2.5rem;
    padding-bottom: 5rem;
}

.product-card {
    background: var(--bg-white);
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    position: relative;
    border: 1px solid rgba(0, 0, 0, 0.03);
}

.product-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.product-img {
    height: 220px;
    width: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.product-card:hover .product-img {
    transform: scale(1.05);
}

.product-info {
    padding: 1.8rem;
    background: white;
    position: relative;
}

.product-title {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--secondary-color);
}

.product-desc {
    color: var(--text-light);
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
    min-height: 45px;
    line-height: 1.5;
}

.product-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 1rem;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.price {
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--primary-hover);
}

.add-btn {
    width: 45px;
    height: 45px;
    border-radius: 12px;
    background: var(--secondary-color);
    color: var(--primary-color);
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    border: none;
    font-size: 1.1rem;
    transition: var(--transition);
}

.add-btn:hover {
    background: var(--primary-color);
    color: var(--secondary-color);
    transform: rotate(90deg);
}

/* Responsive */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 2.5rem;
    }

    .hero {
        height: 50vh;
        border-radius: 0 0 25px 25px;
    }

    .nav-links {
        display: none;
    }

    /* Mobile menu needed later */
    .container {
        padding: 0 15px;
    }
}

/* Footer & Other tweaks similar to modern standards... */
footer {
    background: #111;
    color: #eee;
    padding: 4rem 0 2rem;
}

.footer-col h3 {
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.footer-col ul li a:hover {
    color: var(--primary-color);
    padding-left: 5px;
}

/* --- Modern Cart & Menu Interactions --- */

/* Toast Notification */
.toast-container {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: rgba(0, 0, 0, 0.9);
    color: white;
    padding: 1rem 1.5rem;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    display: flex;
    align-items: center;
    gap: 1rem;
    transform: translateY(100px);
    opacity: 0;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    z-index: 1000;
}

.toast-container.show {
    transform: translateY(0);
    opacity: 1;
}

.toast-icon {
    font-size: 1.5rem;
    color: var(--primary-color);
}

/* Modern Add to Cart Button in Menu */
.btn-add-cart {
    background: transparent;
    color: var(--primary-hover);
    /* Using defined dark green/lime */
    border: 2px solid var(--primary-hover);
    padding: 0.5rem 1.2rem;
    border-radius: 50px;
    cursor: pointer;
    font-weight: 700;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
    font-size: 0.95rem;
}

.btn-add-cart:hover {
    background: var(--primary-hover);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(175, 180, 43, 0.3);
}

/* Modern Cart Page Layout */
.cart-layout {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 2rem;
    margin-top: 2rem;
}

@media (max-width: 768px) {
    .cart-layout {
        grid-template-columns: 1fr;
    }
}

/* Cart Item Card */
.cart-item {
    background: white;
    border-radius: 16px;
    padding: 1.5rem;
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.02);
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: all 0.2s;
}

.cart-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.05);
}

.cart-item-img {
    width: 80px;
    height: 80px;
    border-radius: 12px;
    object-fit: cover;
    margin-right: 1.5rem;
}

.cart-item-info {
    flex: 1;
}

.cart-item-title {
    font-weight: 700;
    font-size: 1.1rem;
    color: #111;
    margin-bottom: 0.2rem;
}

.cart-item-price {
    color: var(--primary-hover);
    font-weight: 600;
}

.cart-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.qty-btn {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: 1px solid #e2e8f0;
    background: #f8fafc;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s;
    text-decoration: none;
    color: #64748b;
}

.qty-btn:hover {
    background: var(--primary-color);
    border-color: var(--primary-color);
    color: #111;
}

.btn-remove {
    color: #ef4444;
    background: rgba(239, 68, 68, 0.1);
    padding: 0.5rem;
    border-radius: 8px;
    transition: all 0.2s;
    border: none;
    cursor: pointer;
}

.btn-remove:hover {
    background: #ef4444;
    color: white;
}

/* Checkout Summary Card */
.checkout-card {
    background: white;
    padding: 2rem;
    border-radius: 16px;
    box-shadow: 0 10px 40px -10px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 100px;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.checkout-card h3 {
    border-bottom: 1px solid #eee;
    padding-bottom: 1rem;
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
    color: #1e293b;
}

.summary-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 1rem;
    color: #64748b;
    font-size: 0.95rem;
}

.summary-total {
    display: flex;
    justify-content: space-between;
    margin-top: 1.5rem;
    padding-top: 1rem;
    border-top: 2px dashed #eee;
    font-size: 1.5rem;
    font-weight: 800;
    color: #111;
}

.checkout-form .form-group {
    margin-bottom: 1.2rem;
}

.checkout-form label {
    display: block;
    margin-bottom: 0.5rem;
    color: #475569;
    font-weight: 500;
    font-size: 0.9rem;
}

.checkout-form .form-control {
    width: 100%;
    padding: 0.8rem;
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    color: #333;
    border-radius: 8px;
    transition: all 0.3s;
}

.checkout-form .form-control:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(192, 202, 51, 0.2);
    background: white;
}

.btn-block {
    display: block;
    width: 100%;
    padding: 1rem;
    font-size: 1.1rem;
    margin-top: 1.5rem;
}

/* --- NEW V2 COMPONENTS --- */

/* Hero V2 */
.hero-v2 {
    position: relative;
    height: 85vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: #000;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.4) 100%), url('../img/hero-real.jpg');
    background-size: cover;
    background-position: center;
    filter: brightness(0.7);
    z-index: 1;
}

.hero-content-v2 {
    position: relative;
    z-index: 2;
    max-width: 800px;
    color: white;
}

.hero-badge {
    display: inline-block;
    padding: 8px 16px;
    background: rgba(192, 202, 51, 0.2);
    border: 1px solid var(--primary-color);
    color: var(--primary-color);
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 800;
    letter-spacing: 2px;
    margin-bottom: 1.5rem;
    backdrop-filter: blur(5px);
}

.hero-content-v2 h1 {
    font-size: 4.5rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1.5rem;
}

.text-primary {
    color: var(--primary-color);
}

.hero-content-v2 p {
    font-size: 1.25rem;
    color: #cbd5e1;
    margin-bottom: 2.5rem;
    max-width: 600px;
}

.hero-actions {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 4rem;
}

.btn-lg {
    padding: 1.2rem 3rem;
    font-size: 1.1rem;
}

.btn-outline-white {
    background: transparent;
    border: 2px solid white;
    color: white;
    box-shadow: none;
}

.btn-outline-white:hover {
    background: white;
    color: var(--secondary-color);
}

.hero-stats {
    display: flex;
    gap: 3rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.stat-item {
    display: flex;
    flex-direction: column;
}

.stat-num {
    font-size: 1.8rem;
    font-weight: 800;
    color: white;
}

.stat-txt {
    font-size: 0.85rem;
    color: #94a3b8;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Info Section */
.info-section {
    padding: 5rem 0;
    background: var(--bg-white);
    position: relative;
    z-index: 3;
    margin-top: -50px;
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.info-card {
    background: white;
    padding: 2.5rem;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-md);
    text-align: center;
    transition: var(--transition);
}

.info-card:hover {
    transform: translateY(-10px);
}

.info-icon {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

/* Category Pills */
.categories-section {
    padding: 80px 0;
}

.section-title-v2 {
    text-align: center;
    margin-bottom: 3rem;
}

.section-title-v2 h2 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
}

.section-title-v2 p {
    color: var(--text-light);
}

.category-pills {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.pill {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 24px;
    background: white;
    border-radius: 50px;
    box-shadow: var(--shadow-sm);
    font-weight: 700;
    transition: var(--transition);
    border: 1px solid transparent;
}

.pill:hover {
    background: var(--primary-color);
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(192, 202, 51, 0.2);
}

.pill-icon {
    color: var(--primary-color);
    font-size: 1.2rem;
}

.pill:hover .pill-icon {
    color: var(--secondary-color);
}

/* Popular Section */
.popular-section {
    padding: 80px 0;
    background: #f8fafc;
}

.row-between {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
}

.view-all-link {
    font-weight: 800;
    color: var(--primary-hover);
    display: flex;
    align-items: center;
    gap: 8px;
}

.products-grid-v2 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2.5rem;
    margin-top: 3rem;
}

.product-card-v2 {
    background: white;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
}

.product-card-v2:hover {
    transform: translateY(-12px);
    box-shadow: var(--shadow-lg);
}

.card-image {
    height: 200px;
    background: #f1f5f9;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.product-icon-display {
    font-size: 4rem;
    color: #cbd5e1;
}

.card-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: white;
    padding: 6px 14px;
    border-radius: 12px;
    font-weight: 800;
    font-size: 1.1rem;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.card-body {
    padding: 25px;
}

.cat-tag {
    color: var(--primary-hover);
    font-weight: 800;
    font-size: 0.75rem;
    text-transform: uppercase;
    margin-bottom: 8px;
}

.card-body h3 {
    font-size: 1.4rem;
    font-weight: 800;
    margin-bottom: 10px;
    color: #1e293b;
}

.card-body p {
    color: #64748b;
    font-size: 0.95rem;
    margin-bottom: 20px;
}

.card-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 15px;
    border-top: 1px solid #f1f5f9;
}

.rating {
    font-weight: 700;
    color: #f59e0b;
}

.add-cart-btn-v2 {
    background: var(--secondary-color);
    color: var(--primary-color);
    border: none;
    padding: 10px 20px;
    border-radius: 12px;
    font-weight: 800;
    font-size: 0.85rem;
    cursor: pointer;
    transition: var(--transition);
}

.add-cart-btn-v2:hover {
    background: var(--primary-color);
    color: var(--secondary-color);
}

/* --- MODERN FOOTER --- */
.modern-footer {
    background: #111827;
    color: white;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-newsletter {
    background: var(--primary-color);
    padding: 40px 0;
    color: var(--secondary-color);
}

.newsletter-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.newsletter-text h3 {
    font-size: 1.8rem;
    font-weight: 800;
}

.newsletter-form {
    display: flex;
    gap: 10px;
    width: 400px;
}

.newsletter-form input {
    flex: 1;
    padding: 12px 20px;
    border-radius: 50px;
    border: none;
    background: rgba(0, 0, 0, 0.05);
}

.newsletter-form button {
    padding: 12px 30px;
    background: var(--secondary-color);
    color: white;
    border: none;
    border-radius: 50px;
    font-weight: 800;
    cursor: pointer;
}

.footer-main {
    padding: 80px 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
    gap: 3rem;
}

.footer-logo {
    height: 80px;
    margin-bottom: 20px;
    object-fit: contain;
}

.brand-col p {
    color: #94a3b8;
    line-height: 1.6;
    margin-bottom: 25px;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-links a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    color: #94a3b8;
    transition: var(--transition);
}

.social-links a:hover {
    background: var(--primary-color);
    color: var(--secondary-color);
    transform: translateY(-5px);
}

.footer-col h4 {
    font-size: 1.25rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    color: white;
    position: relative;
    padding-bottom: 12px;
}

.footer-col h4::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 40px;
    height: 3px;
    background: var(--primary-color);
    border-radius: 2px;
}

.footer-links li {
    margin-bottom: 15px;
}

.footer-links a {
    color: #94a3b8;
    font-weight: 500;
}

.footer-links a:hover {
    color: var(--primary-color);
    padding-left: 8px;
}

.contact-info-item {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
    color: #94a3b8;
}

.contact-info-item i {
    color: var(--primary-color);
    font-size: 1.2rem;
}

.work-hours {
    margin-top: 30px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.pulse-green {
    position: relative;
    display: flex;
    align-items: center;
    gap: 10px;
}

.pulse-green::before {
    content: '';
    width: 10px;
    height: 10px;
    background: #10b981;
    border-radius: 50%;
    animation: pulse-dot 2s infinite;
}

@keyframes pulse-dot {
    0% {
        opacity: 1;
        transform: scale(1);
    }

    100% {
        opacity: 0;
        transform: scale(2.5);
    }
}

.status-badge {
    background: #10b98120;
    color: #10b981;
    padding: 4px 12px;
    border-radius: 50px;
    font-weight: 800;
    font-size: 0.75rem;
    border: 1px solid #10b98130;
}

.footer-bottom {
    padding: 30px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #64748b;
    font-size: 0.9rem;
}

.payment-icons {
    display: flex;
    gap: 15px;
    font-size: 1.5rem;
    color: #94a3b8;
}

/* Toast V2 */
.toast-v2 {
    position: fixed;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%) translateY(100px);
    background: #1e293b;
    color: white;
    padding: 15px 30px;
    border-radius: 50px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    z-index: 2000;
    opacity: 0;
    transition: var(--transition);
}

.toast-v2.show {
    transform: translateX(-50%) translateY(0);
    opacity: 1;
}

.toast-content {
    display: flex;
    align-items: center;
    gap: 15px;
    font-weight: 700;
}

.toast-content i {
    color: var(--primary-color);
    font-size: 1.2rem;
}

@media (max-width: 992px) {
    .hero-content-v2 h1 {
        font-size: 3rem;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }

    .newsletter-content {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
}

@media (max-width: 768px) {
    .info-grid {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr;
    }

    .hero-stats {
        flex-wrap: wrap;
        gap: 1.5rem;
    }
}