:root {
    /* Colors */
    --primary-color: #2563eb;
    --primary-light: #3b82f6;
    --primary-dark: #1d4ed8;
    --primary-lighter: #60a5fa;
    --primary-darker: #1e40af;
    --secondary-color: #f59e0b;
    --success-color: #3b82f6;
    --danger-color: #ef4444;
    --warning-color: #f59e0b;
    --info-color: #06b6d4;
    --light-color: #f8fafc;
    --dark-color: #1e293b;
    --text-color: #475569;
    --text-light: #94a3b8;
    --border-color: #e2e8f0;
    
    /* Gradients */
    --primary-gradient: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
    --secondary-gradient: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
    --success-gradient: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
    --accent-gradient: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
    --premium-gradient: linear-gradient(135deg, #2563eb 0%, #3b82f6 100%);
    --premium-gradient-dark: linear-gradient(135deg, #1d4ed8 0%, #1e40af 100%);
    --premium-gradient-light: linear-gradient(135deg, #3b82f6 0%, #60a5fa 100%);
    
    /* Shadows */
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 2px 4px -1px rgba(0, 0, 0, 0.07);
    --shadow-lg: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    --card-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    --hover-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    
    /* Border Radius */
    --border-radius: 8px;
    --border-radius-sm: 6px;
    --border-radius-md: 12px;
    --border-radius-lg: 16px;
    --border-radius-xl: 20px;
    --border-radius-full: 50%;
    
    /* Transitions */
    --transition-fast: all 0.2s ease;
    --transition-normal: all 0.3s ease;
    --transition-slow: all 0.6s ease;
}

.hero-section {
    position: relative;
    overflow: hidden;
    margin-bottom: 0;
    background: #000;

}

.hero-carousel {
    border-radius: 0;
    overflow: hidden;
    height: 70vh;
    min-height: 500px;
    position: relative;
    width: 100%;
}

.hero-carousel .carousel-item {
    height: 70vh;
    min-height: 500px;
    position: relative;
}

.hero-carousel .carousel-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
    filter: brightness(0.8);
}

.hero-carousel .carousel-item:hover img {
    transform: scale(1.05);
}

.hero-carousel .carousel-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.8) 0%, rgba(37, 99, 235, 0.3) 100%);
    z-index: 1;
}

.hero-carousel .carousel-caption {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(10px);
    padding: 3rem 2rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    color: white;
    text-align: center;
    max-width: 600px;
    width: 90%;
    z-index: 2;
}

.hero-carousel .carousel-caption h2 {
    color: white;
    font-weight: 700;
    font-size: 2.5rem;
    margin-bottom: 1rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-carousel .carousel-caption p {
    color: rgba(255, 255, 255, 0.9);
    font-weight: 400;
    font-size: 1.1rem;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.hero-carousel .carousel-indicators {
    bottom: 20px;
    margin-bottom: 0;
}

.hero-carousel .carousel-indicators button {
    width: 40px;
    height: 4px;
    border-radius: 2px;
    background-color: rgba(255, 255, 255, 0.5);
    border: none;
    margin: 0 4px;
    transition: all 0.3s ease;
}

.hero-carousel .carousel-indicators button.active {
    background-color: white;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

/* Thumbnail Navigation */
.hero-thumbnails {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(10px);
    padding: 1rem 0;
    z-index: 10;
}

.thumbnail-container {
    display: flex;
    justify-content: center;
    gap: 1rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.thumbnail-item {
    width: 80px;
    height: 60px;
    border-radius: 8px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    opacity: 0.6;
}

.thumbnail-item:hover {
    opacity: 0.8;
    transform: scale(1.05);
}

.thumbnail-item.active {
    border-color: var(--primary-color);
    opacity: 1;
    box-shadow: 0 0 0 2px rgba(5, 150, 105, 0.3);
}

.thumbnail-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Navigation Arrows */
.hero-carousel .carousel-control-prev,
.hero-carousel .carousel-control-next {
    width: 60px;
    height: 60px;
    background: rgba(0, 0, 0, 0.5);
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.3);
    top: 50%;
    transform: translateY(-50%);
    transition: all 0.3s ease;
}

.hero-carousel .carousel-control-prev:hover,
.hero-carousel .carousel-control-next:hover {
    background: rgba(0, 0, 0, 0.8);
    border-color: var(--primary-color);
    transform: translateY(-50%) scale(1.1);
}

.hero-carousel .carousel-control-prev-icon,
.hero-carousel .carousel-control-next-icon {
    width: 24px;
    height: 24px;
}



.slider-btn {
    background: var(--premium-gradient);
    color: white;
    border: none;
    padding: 12px 24px;
    border-radius: 30px;
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: var(--transition-normal);
    box-shadow: 0 4px 12px rgba(5, 150, 105, 0.4);
    position: relative;
    overflow: hidden;
}

.slider-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(5, 150, 105, 0.6);
}

.slider-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: var(--transition-slow);
}

.slider-btn:hover::before {
    left: 100%;
}

@media (max-width: 768px) {
    .hero-carousel {
        height: 50vh;
        min-height: 400px;
    }

    .hero-carousel .carousel-item {
        height: 50vh;
        min-height: 400px;
    }

    .hero-carousel .carousel-caption {
        padding: 2rem 1rem;
        width: 95%;
    }

    .hero-carousel .carousel-caption h2 {
        font-size: 1.8rem;
    }

    .hero-carousel .carousel-caption p {
        font-size: 1rem;
    }

    .thumbnail-container {
        gap: 0.5rem;
        padding: 0 1rem;
    }

    .thumbnail-item {
        width: 60px;
        height: 45px;
    }

    .hero-carousel .carousel-control-prev,
    .hero-carousel .carousel-control-next {
        width: 50px;
        height: 50px;
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(8px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.section-title {
    font-size: 1.75rem;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 1rem;
    position: relative;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.section-title::after {
    content: '';
    flex: 1;
    height: 2px;
    background: linear-gradient(90deg, var(--primary-color), transparent);
    border-radius: 2px;
    margin-left: 1rem;
}

.product-card {
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius);
    box-shadow: var(--card-shadow);
    transition: var(--transition-normal);
    overflow: hidden;
    background: white;
}

.product-card:hover {
    transform: translateY(-2px);
    box-shadow: var(--hover-shadow);
    border-color: var(--primary-color);
}

.product-card .card-img-top {
    height: 180px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

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

.favorite-btn {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: none;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(4px);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.favorite-btn:hover {
    background: white;
    transform: scale(1.05);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
}

.price-tag {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--primary-color);
}

.premium-banner {
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--card-shadow);
    transition: all 0.3s ease;
    position: relative;
    border: 1px solid #e2e8f0;
}

.premium-banner:hover {
    transform: translateY(-2px);
    box-shadow: var(--hover-shadow);
}

.premium-banner .card-img-overlay {
    background: linear-gradient(45deg, rgba(30, 41, 59, 0.7), rgba(30, 41, 59, 0.3));
    backdrop-filter: blur(1px);
    border-radius: 6px;
    margin: 0.75rem;
    padding: 1.5rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.premium-btn {
    background: var(--primary-color);
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 20px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: var(--transition-normal);
    box-shadow: 0 2px 8px rgba(5, 150, 105, 0.3);
    font-size: 0.85rem;
}

.premium-btn:hover {
    background: var(--primary-dark);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(5, 150, 105, 0.4);
}

/* Stars class removed - using minimal badges instead */

.rating-count {
    color: #64748b;
    font-size: 0.75rem;
}

.loading-spinner {
    display: inline-block;
    width: 28px;
    height: 28px;
    border: 2px solid #f3f4f6;
    border-radius: 50%;
    border-top-color: var(--primary-color);
    animation: spin 1s ease-in-out infinite;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

.btn-primary {
    background: var(--primary-color);
    border-color: var(--primary-color);
    font-weight: 500;
    padding: 0.5rem 1rem;
    border-radius: var(--border-radius-sm);
    transition: var(--transition-normal);
}

.btn-primary:hover {
    background: var(--primary-dark);
    border-color: var(--primary-dark);
    transform: translateY(-1px);
}

.btn-outline-primary {
    color: var(--primary-color);
    border-color: var(--primary-color);
    font-weight: 500;
    padding: 0.5rem 1rem;
    border-radius: var(--border-radius-sm);
    transition: var(--transition-normal);
}

.btn-outline-primary:hover {
    background: var(--primary-color);
    border-color: var(--primary-color);
    color: white;
    transform: translateY(-1px);
}

.card-title {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--dark-color);
    margin-bottom: 0.5rem;
}

.card-text {
    font-size: 0.85rem;
    color: var(--text-light);
    margin-bottom: 0.75rem;
}

/* Soft animations */
.product-card,
.premium-banner {
    animation: fadeInUp 0.6s ease-out;
}

.hero-carousel {
    height: 300px;
}

.hero-carousel .carousel-item {
    height: 300px;
}

.hero-carousel .carousel-item img {
    height: 100%;
    object-fit: cover;
}

/* Soft section spacing */
.container {
    padding-top: 1rem;
    padding-bottom: 1rem;
}

.mb-4 {
    margin-bottom: 1rem !important;
}

.py-5 {
    padding-top: 2rem !important;
    padding-bottom: 2rem !important;
}

/* Soft shadows for cards */
.card {
    box-shadow: var(--card-shadow);
    border: 1px solid var(--border-color);
}

.card:hover {
    box-shadow: var(--hover-shadow);
}

/* Mega Categories Section */
.mega-categories-section {
    position: relative;
    overflow: hidden;
}

.mega-categories-section .container {
    position: relative;
    z-index: 2;
}

.mega-categories-section .section-title {
    color: var(--dark-color);
    font-weight: 700;
}

.mega-categories-section .section-title::after {
    background: linear-gradient(90deg, var(--primary-color), transparent);
}

/* Mega Categories Wrapper */
.mega-categories-wrapper {
    display: flex;
    gap: 0;
    background: transparent;
    border-radius: 0;
    box-shadow: none;
    overflow: hidden;
    min-height: 500px;
    position: relative;
}

.mega-categories-wrapper::before {
    display: none;
}

/* Left Side - Categories */
.categories-sidebar {
    flex: 0 0 380px;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    padding: 2rem;
    position: relative;
    z-index: 2;
    border-right: 1px solid rgba(5, 150, 105, 0.1);
    border-radius: var(--border-radius-lg) 0 0 var(--border-radius-lg);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.categories-sidebar::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(5, 150, 105, 0.05) 0%, rgba(4, 120, 87, 0.02) 100%);
    z-index: -1;
    border-radius: 16px 0 0 16px;
}

.categories-header {
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(5, 150, 105, 0.1);
}

.categories-header h3 {
    color: #1e293b;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.categories-subtitle {
    color: #64748b;
    font-size: 0.9rem;
}

.categories-list {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.mega-category-item {
    padding: 1rem 1.5rem;
    border-radius: var(--border-radius-md);
    background: rgba(5, 150, 105, 0.05);
    border: 1px solid rgba(5, 150, 105, 0.1);
    color: var(--dark-color);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 1rem;
    transition: var(--transition-normal);
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

.mega-category-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(5, 150, 105, 0.2), transparent);
    transition: left 0.6s ease;
}

.mega-category-item:hover::before {
    left: 100%;
}

.mega-category-item:hover,
.mega-category-item.active {
    background: rgba(5, 150, 105, 0.2);
    border-color: var(--primary-color);
    transform: translateX(10px);
    box-shadow: 0 4px 20px rgba(5, 150, 105, 0.3);
}

.mega-category-item.main-category {
    font-weight: 600;
    border-left: 4px solid var(--primary-color);
}

.mega-category-item.sub-category {
    margin-left: 1rem;
    padding-left: 1rem;
    background: rgba(5, 150, 105, 0.03);
    border-left: 3px solid rgba(5, 150, 105, 0.3);
    border-radius: 8px;
}

.mega-category-item.sub-category:hover {
    margin-left: 1.5rem;
    transform: translateX(5px);
}

.mega-category-icon {
    width: 40px;
    height: 40px;
    background: var(--premium-gradient);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: white;
    transition: var(--transition-normal);
    flex-shrink: 0;
}

.mega-category-item:hover .mega-category-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 4px 12px rgba(5, 150, 105, 0.4);
}

.mega-category-content {
    flex: 1;
}

.mega-category-name {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0.25rem;
    color: var(--dark-color);
}

.mega-category-count {
    font-size: 0.8rem;
    color: var(--text-light);
}

.mega-category-arrow {
    color: rgba(255, 255, 255, 0.4);
    transition: var(--transition-normal);
}

.mega-category-item:hover .mega-category-arrow {
    color: white;
    transform: translateX(5px);
}

/* Right Side - Products */
.products-preview {
    flex: 1;
    padding: 2rem;
    position: relative;
    z-index: 2;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    border-radius: 0 var(--border-radius-lg) var(--border-radius-lg) 0;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.products-header {
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(5, 150, 105, 0.1);
}

.products-header h3 {
    color: var(--dark-color);
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.products-subtitle {
    color: var(--text-light);
    font-size: 0.9rem;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.category-hint {
    grid-column: 1 / -1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 4rem 2rem;
    background: rgba(5, 150, 105, 0.03);
    border: 2px dashed rgba(5, 150, 105, 0.2);
    border-radius: var(--border-radius-lg);
    text-align: center;
    color: var(--text-light);
}

.hint-icon {
    font-size: 4rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        opacity: 0.6;
    }

    50% {
        opacity: 1;
    }

    100% {
        opacity: 0.6;
    }
}
.hint-content h4 {
    color: var(--dark-color);
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.hint-content p {
    color: var(--text-light);
    font-size: 1rem;
    margin: 0;
}



.mega-product-card {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(5, 150, 105, 0.1);
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    transition: var(--transition-normal);
    cursor: pointer;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.mega-product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(5, 150, 105, 0.15);
    border-color: var(--primary-color);
    background: rgba(255, 255, 255, 0.95);
}

.mega-product-image {
    width: 100%;
    height: 120px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

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

.mega-product-info {
    padding: 1rem;
}

.mega-product-name {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--dark-color);
    margin-bottom: 0.5rem;
    line-height: 1.3;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.mega-product-price {
    font-size: 1rem;
    font-weight: 700;
    color: var(--primary-color);
}

.view-all-section {
    text-align: center;
    padding-top: 1rem;
    border-top: 1px solid rgba(5, 150, 105, 0.1);
    display: none;
}

.view-all-section.show {
    display: block;
}

.view-all-mega-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 2rem;
    background: rgba(5, 150, 105, 0.1);
    backdrop-filter: blur(10px);
    color: var(--primary-color);
    text-decoration: none;
    border-radius: 25px;
    font-weight: 600;
    transition: var(--transition-normal);
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.view-all-mega-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(5, 150, 105, 0.3), transparent);
    transition: var(--transition-slow);
}

.view-all-mega-btn:hover::before {
    left: 100%;
}

.view-all-mega-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(5, 150, 105, 0.4);
    background: rgba(5, 150, 105, 0.3);
    border-color: var(--primary-color);
}

.view-all-mega-btn i {
    transition: var(--transition-normal);
}

.view-all-mega-btn:hover i {
    transform: translateX(3px);
}

/* Loading States */
.category-loading,
.products-loading {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    color: rgba(255, 255, 255, 0.7);
}

.products-loading {
    color: rgba(255, 255, 255, 0.8);
}

.category-loading .loading-spinner,
.products-loading .loading-spinner {
    margin-bottom: 1rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .mega-categories-wrapper {
        flex-direction: column;
        gap: 0;
    }

    .categories-sidebar {
        flex: none;
        padding: 1.5rem;
        border-right: none;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }

    .products-preview {
        padding: 1.5rem;
    }

    .products-grid {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
        gap: 1rem;
    }

    .mega-product-image {
        height: 100px;
    }
}

/* Features Section */
.features-section {
    background: #f8fafc;
}

.feature-card {
    background: white;
    border-radius: var(--border-radius-md);
    padding: 2rem 1rem;
    height: 100%;
    transition: var(--transition-normal);
    border: 1px solid var(--border-color);
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    border-color: var(--primary-color);
}

.feature-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 1rem;
    background: var(--premium-gradient);
    border-radius: var(--border-radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: white;
    transition: var(--transition-normal);
}

.feature-card:hover .feature-icon {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(5, 150, 105, 0.4);
}

.feature-title {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--dark-color);
    margin-bottom: 0.5rem;
}

.feature-text {
    font-size: 0.9rem;
    color: var(--text-light);
    margin-bottom: 0;
}



* {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
}

body {
    background-color: #fafbfc;
    color: var(--text-color);
    line-height: 1.6;
}

/* Modern Navbar */
.navbar-modern {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(226, 232, 240, 0.6);
    box-shadow: var(--shadow-sm);
    padding: 0.75rem 0;
    position: sticky;
    top: 0;
    z-index: 1030;
    transition: var(--transition-normal);
}

.navbar-modern.scrolled {
    background: rgba(255, 255, 255, 0.98);
    box-shadow: var(--shadow-md);
}

/* Brand Logo */
.navbar-brand-modern {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: var(--transition-normal);
}

.navbar-brand-modern:hover {
    color: var(--primary-light);
    transform: translateY(-1px);
}

.navbar-brand-modern i {
    font-size: 1.25rem;
}

.navbar-logo {
    height: 40px;
    width: auto;
    max-width: 200px;
    object-fit: contain;
    transition: var(--transition-normal);
}

.navbar-brand-modern:hover .navbar-logo {
    transform: scale(1.05);
}

/* Navigation Links */
.navbar-nav-modern {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin: 0;
    padding: 0;
    list-style: none;
}

.nav-item-modern {
    position: relative;
}

.nav-link-modern {
    color: var(--text-color);
    text-decoration: none;
    font-weight: 500;
    padding: 0.5rem 0.75rem;
    border-radius: 0.375rem;
    transition: var(--transition-normal);
    display: flex;
    align-items: center;
    gap: 0.375rem;
    position: relative;
    font-size: 0.875rem;
}

.nav-link-modern:hover {
    color: var(--primary-color);
    background: rgba(37, 99, 235, 0.08);
}

.nav-link-modern i {
    font-size: 0.875rem;
}

/* Search Bar */
.search-container {
    position: relative;
    max-width: 400px;
    width: 100%;
}

.search-input-group {
    position: relative;
    display: flex;
    align-items: center;
    background: white;
    border: 1px solid var(--border-color);
    border-radius: 24px;
    padding: 0.125rem;
    transition: var(--transition-normal);
    box-shadow: var(--shadow-sm);
}

.search-input-group:focus-within {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

.search-input {
    border: none;
    outline: none;
    padding: 0.5rem 0.75rem;
    font-size: 0.875rem;
    background: transparent;
    flex: 1;
    color: var(--text-color);
}

.search-input::placeholder {
    color: var(--text-light);
}

.search-btn {
    background: var(--primary-color);
    color: white;
    border: none;
    border-radius: 40px;
    padding: 0.5rem 1rem;
    font-weight: 500;
    transition: var(--transition-normal);
    cursor: pointer;
    font-size: 0.875rem;
}

.search-btn:hover {
    background: var(--primary-dark);
}

/* User Account Dropdown */
.user-account {
    position: relative;
}

.user-toggle {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--light-color);
    border: 1px solid var(--border-color);
    border-radius: 24px;
    padding: 0.375rem 0.75rem;
    color: var(--text-color);
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition-normal);
    font-size: 0.875rem;
}

.user-toggle:hover {
    background: white;
    border-color: var(--primary-color);
    color: var(--primary-color);
}

.user-avatar {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: var(--gradient-subtle);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    font-weight: 600;
    font-size: 0.75rem;
    border: 1px solid var(--border-color);
    overflow: hidden;
}

.user-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

/* Action Buttons */
.action-buttons {
    display: flex !important;
    align-items: center;
    gap: 0.5rem;
    flex-direction: row !important;
    flex-wrap: nowrap !important;
}

.action-btn {
    position: relative;
    background: white;
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius-full);
    padding: 0.75rem;
    color: var(--text-color);
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition-normal);
    display: flex !important;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    min-width: 44px;
    flex-shrink: 0 !important;
}

.action-btn:hover {
    background: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
    transform: translateY(-1px);
    box-shadow: var(--shadow-md);
}

.action-btn i {
    font-size: 0.875rem;
}

/* Badges */
.badge-modern {
    position: absolute;
    top: -4px;
    right: -4px;
    background: var(--danger-color);
    color: white;
    font-size: 0.625rem;
    font-weight: 600;
    padding: 0.125rem 0.25rem;
    border-radius: 12px;
    min-width: 16px;
    height: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-sm);
}

/* Call to Action Bar */
.cta-bar {
    background-color: #2563eb !important;
    background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding: 0.25rem 0;
    position: relative;
    overflow: hidden;
}

.cta-bar::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11 18c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm48 25c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm-43-7c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm63 31c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM34 90c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm56-76c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM12 86c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm28-65c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm23-11c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-6 60c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm29 22c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zM32 63c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm57-13c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-9-21c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zm60 91c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM35 41c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zm12 60c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM12 60c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2z' fill='%23ffffff' fill-opacity='0.05' fill-rule='evenodd'/%3E%3C/svg%3E");
    animation: shine 3s linear infinite;
}

@keyframes shine {
    0% { background-position: -200% center; }
    100% { background-position: 200% center; }
}

.cta-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    z-index: 1;
}

.cta-left-spacer {
    flex: 1;
}

.cta-center {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.25rem;
    flex-wrap: wrap;
}

.cta-badge {
    background: #fef2f2;
    color: #dc2626;
    padding: 0.35rem 0.75rem;
    border-radius: 16px;
    font-weight: 700;
    font-size: 0.75rem;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

.cta-text {
    color: white;
    font-size: 1rem;
    font-weight: 600;
    text-align: center;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.discount-text {
    color: #fef2f2;
    font-weight: 800;
    font-size: 1.25rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.cta-timer {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: white;
    font-size: 0.875rem;
}

.countdown {
    background: rgba(0, 0, 0, 0.2);
    padding: 0.35rem 0.75rem;
    border-radius: 4px;
    font-family: monospace;
    font-weight: 700;
    font-size: 0.875rem;
    letter-spacing: 0.1em;
}

.cta-btn {
    background: white;
    color: #2563eb;
    text-decoration: none;
    padding: 0.5rem 1.5rem;
    border-radius: 20px;
    font-weight: 700;
    font-size: 0.75rem;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
    display: flex;
    align-items: center;
    gap: 0.375rem;
}

.cta-btn:hover {
    transform: translateY(-2px) scale(1.05);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    color: #2563eb;
}

.cta-btn i {
    transition: transform 0.3s ease;
}

.cta-btn:hover i {
    transform: translateX(4px);
}

/* Currency Rates in CTA Bar - Sağ taraf */
.currency-rates-cta {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex: 1;
    justify-content: flex-end;
}

.currency-item-cta {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    color: white;
    font-size: 0.8rem;
    font-weight: 600;
    background: rgba(255, 255, 255, 0.15);
    padding: 0.3rem 0.7rem;
    border-radius: 10px;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.currency-item-cta:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: translateY(-1px);
    box-shadow: 0 3px 8px rgba(0, 0, 0, 0.2);
}

.currency-item-cta i {
    font-size: 0.7rem;
    opacity: 0.9;
}



/* Footer Currency Rates */
.footer-currency {
    margin-bottom: 1rem;
}

.currency-rates-footer {
    display: flex;
    gap: 1rem;
    justify-content: flex-end;
    flex-wrap: wrap;
}

.currency-item-footer {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    color: #e2e8f0;
    font-size: 0.85rem;
    font-weight: 500;
    background: rgba(255, 255, 255, 0.1);
    padding: 0.3rem 0.6rem;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.currency-item-footer:hover {
    background: rgba(255, 255, 255, 0.15);
    color: white;
}

.currency-item-footer i {
    font-size: 0.7rem;
    opacity: 0.8;
}

/* Responsive Design */
@media (max-width: 768px) {
    .cta-bar {
        padding: 0.25rem 0;
    }
    
    /* Mobilde CTA center düzeni */
    .cta-content {
        justify-content: center !important;
        align-items: center;
        text-align: center;
    }
    
    .cta-left-spacer {
        display: none;
    }
    
    /* Mobilde currency rates CTA'da gizli */
    .currency-rates-cta {
        display: none !important;
    }
    
    /* Footer döviz kurları mobilde ortalansın */
    .currency-rates-footer {
        justify-content: center;
    }
    
    .cta-badge {
        display: none;
    }
    
    .cta-text {
        font-size: 0.7rem;
        line-height: 1.2;
        margin: 0;
    }
    
    .discount-text {
        font-size: 0.8rem;
    }
    
    .cta-timer {
        display: none;
    }
    
    .cta-btn {
        display: none;
    }
}

@media (max-width: 480px) {
    .cta-bar {
        padding: 0.25rem 0;
    }
    
    .cta-content {
        gap: 0;
    }
    
    .cta-badge {
        display: none;
    }
    
    .cta-text {
        font-size: 0.65rem;
        line-height: 1.1;
    }
    
    .discount-text {
        font-size: 0.75rem;
    }
    
    .cta-timer {
        display: none;
    }
    
    .cta-btn {
        display: none;
    }
}

@media (max-width: 360px) {
    .cta-bar {
        padding: 0.2rem 0;
    }
    
    .cta-content {
        gap: 0;
    }
    
    .cta-badge {
        display: none;
    }
    
    .cta-text {
        font-size: 0.6rem;
    }
    
    .discount-text {
        font-size: 0.7rem;
    }
    
    .cta-timer {
        display: none;
    }
    
    .cta-btn {
        display: none;
    }
}

/* Modern Dropdown Menus */
.dropdown-modern {
    position: absolute;
    top: 100%;
    right: 0;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 16px;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
    padding: 0.75rem 0;
    min-width: 200px;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-15px) scale(0.95);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
}

.dropdown-modern::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-color), var(--primary-light), var(--primary-lighter));
}

.dropdown-modern.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
}

.dropdown-item-modern {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.875rem 1.25rem;
    color: var(--text-color);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.2s ease;
    font-size: 0.9rem;
    position: relative;
    overflow: hidden;
}

.dropdown-item-modern::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 0;
    background: linear-gradient(90deg, var(--primary-color), var(--primary-light));
    transition: width 0.3s ease;
    z-index: -1;
}

.dropdown-item-modern:hover {
    color: white;
    transform: translateX(5px);
}

.dropdown-item-modern:hover::before {
    width: 100%;
}

.dropdown-item-modern i {
    width: 16px;
    text-align: center;
    font-size: 0.875rem;
    transition: transform 0.2s ease;
}

.dropdown-item-modern:hover i {
    transform: scale(1.1);
}

.dropdown-divider {
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(0, 0, 0, 0.1), transparent);
    margin: 0.5rem 1.25rem;
    border-radius: 1px;
}

/* Search Results */
.search-results {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: white;
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-lg);
    max-height: 350px;
    overflow-y: auto;
    z-index: 1000;
    margin-top: 0.375rem;
}

.search-result-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 0.75rem;
    color: var(--text-color);
    text-decoration: none;
    transition: all 0.2s ease;
    border-bottom: 1px solid var(--border-color);
}
.search-result-item:hover {
    background: var(--light-color);
}

.search-result-item:last-child {
    border-bottom: none;
}

.search-result-image {
    width: 36px;
    height: 36px;
    border-radius: 6px;
    object-fit: cover;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .navbar-nav-modern {
        display: none;
    }
    
    .search-container {
        max-width: 100%;
        margin: 0.75rem 0;
    }
    
    .action-buttons {
        gap: 0.375rem;
        flex-direction: row !important;
        flex-wrap: nowrap !important;
        display: none !important;
    }
    
    .search-icon-btn {
        display: none !important;
    }
    
    .action-btn {
        width: 40px;
        height: 40px;
        min-width: 40px;
        padding: 0.6rem;
    }
    
    .categories-list {
        justify-content: center;
    }
}

/* Animations */
.fade-in-up {
    animation: fadeInUp 0.3s ease;
}

/* Auth Buttons */
.auth-buttons {
    display: flex;
    gap: 0.375rem;
}

.auth-btn {
    padding: 0.375rem 0.75rem;
    border-radius: var(--border-radius-xl);
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition-normal);
    display: flex;
    align-items: center;
    gap: 0.375rem;
    font-size: 0.875rem;
}

.auth-btn.login {
    color: var(--primary-color);
    background: rgba(5, 150, 105, 0.08);
    border: 1px solid rgba(5, 150, 105, 0.2);
}

.auth-btn.login:hover {
    background: var(--primary-color);
    color: white;
}

.auth-btn.register {
    background: var(--primary-color);
    color: white;
    border: 1px solid var(--primary-color);
}

.auth-btn.register:hover {
    background: var(--primary-dark);
}

.auth-btn.login-dropdown {
    color: var(--primary-color);
    background: rgba(5, 150, 105, 0.08);
    border: 1px solid rgba(5, 150, 105, 0.2);
    cursor: pointer;
    border: none;
    outline: none;
}

.auth-btn.login-dropdown:hover {
    background: var(--primary-color);
    color: white;
}

.auth-btn.login-dropdown:focus {
    box-shadow: 0 0 0 0.2rem rgba(5, 150, 105, 0.25);
}

/* Utility Classes */
.transition-normal {
    transition: var(--transition-normal);
}

.transition-fast {
    transition: var(--transition-fast);
}

.transition-slow {
    transition: var(--transition-slow);
}

.border-radius-sm {
    border-radius: var(--border-radius-sm);
}

.border-radius-md {
    border-radius: var(--border-radius-md);
}

.border-radius-lg {
    border-radius: var(--border-radius-lg);
}

.border-radius-full {
    border-radius: var(--border-radius-full);
}

.shadow-sm {
    box-shadow: var(--shadow-sm);
}

.shadow-md {
    box-shadow: var(--shadow-md);
}

.shadow-lg {
    box-shadow: var(--shadow-lg);
}

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

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

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

.bg-primary {
    background: var(--primary-color) !important;
}

.bg-light {
    background: var(--light-color);
}

/* Alert Styles - Theme Compatible */
.alert-info {
    background: linear-gradient(135deg, rgba(5, 150, 105, 0.1) 0%, rgba(4, 120, 87, 0.05) 100%);
    border: 1px solid rgba(5, 150, 105, 0.2);
    border-left: 4px solid var(--primary-color);
    color: #1e293b;
    padding: 1rem 1.5rem;
    border-radius: var(--border-radius-md);
    position: relative;
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 8px rgba(5, 150, 105, 0.1);
    transition: all var(--transition-normal);
}

.alert-info:hover {
    background: linear-gradient(135deg, rgba(5, 150, 105, 0.15) 0%, rgba(4, 120, 87, 0.08) 100%);
    border-color: rgba(5, 150, 105, 0.3);
    box-shadow: 0 4px 12px rgba(5, 150, 105, 0.15);
    transform: translateY(-1px);
    transition: all var(--transition-normal);
}

.alert-info .alert-heading {
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.alert-info .alert-link {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 500;
    transition: color var(--transition-fast);
}

.alert-info .alert-link:hover {
    color: var(--primary-dark);
    text-decoration: underline;
}

.alert-info.alert-dismissible {
    padding-right: 3rem;
}

.alert-info .btn-close {
    color: var(--primary-color);
    opacity: 0.7;
    transition: opacity var(--transition-fast);
}

.alert-info .btn-close:hover {
    opacity: 1;
    color: var(--primary-dark);
}

/* Alert variants for different contexts */
.alert-info.alert-success {
    background: linear-gradient(135deg, rgba(5, 150, 105, 0.1) 0%, rgba(4, 120, 87, 0.05) 100%);
    border-color: rgba(5, 150, 105, 0.3);
}

.alert-info.alert-warning {
    background: linear-gradient(135deg, rgba(245, 158, 11, 0.1) 0%, rgba(217, 119, 6, 0.05) 100%);
    border-color: rgba(245, 158, 11, 0.3);
    border-left-color: #f59e0b;
}

.alert-info.alert-danger {
    background: linear-gradient(135deg, rgba(239, 68, 68, 0.1) 0%, rgba(220, 38, 38, 0.05) 100%);
    border-color: rgba(239, 68, 68, 0.3);
    border-left-color: #ef4444;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .alert-info {
        padding: 0.75rem 1rem;
        font-size: 0.9rem;
    }
    
    .alert-info::before {
        font-size: 1rem;
        left: 0.75rem;
    }
    
    .alert-info.alert-dismissible {
        padding-right: 2.5rem;
    }
}

/* ===== HEADER STYLES ===== */

/* Navigation Menu Styles */
.navbar-nav-modern {
    display: flex;
    align-items: center;
}

.nav-menu {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 1rem;
}

.nav-item {
    position: relative;
}

.nav-link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #374151;
    text-decoration: none;
    padding: 0.75rem 1rem;
    border-radius: 0.5rem;
    font-weight: 500;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.nav-link:hover {
    color: var(--primary-color, #059669);
    background: rgba(5, 150, 105, 0.1);
    transform: translateY(-1px);
}

.nav-link i {
    font-size: 1rem;
}

.nav-link span {
    font-size: 0.9rem;
}

/* Dropdown Styles */
.dropdown {
    position: relative;
}

.dropdown-toggle {
    position: relative;
}

.dropdown-toggle .fa-chevron-down {
    font-size: 0.75rem;
    transition: transform 0.3s ease;
}

.dropdown:hover .fa-chevron-down {
    transform: rotate(180deg);
}

.dropdown-menu-modern {
    position: absolute;
    top: 100%;
    left: 0;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 16px;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
    min-width: 220px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-15px) scale(0.95);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1000;
    padding: 0.75rem 0;
    overflow: hidden;
}

.dropdown-menu-modern::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-color), var(--primary-light), var(--primary-lighter));
}

.dropdown:hover .dropdown-menu-modern {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
    animation: dropdownSlideIn 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

@keyframes dropdownSlideIn {
    from {
        opacity: 0;
        transform: translateY(-10px) scale(0.95);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.dropdown-menu-modern li {
    list-style: none;
}

.dropdown-menu-modern a {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.875rem 1.25rem;
    color: var(--text-color);
    text-decoration: none;
    transition: all 0.2s ease;
    font-size: 0.9rem;
    position: relative;
    overflow: hidden;
}

.dropdown-menu-modern a::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 0;
    background: linear-gradient(90deg, var(--primary-color), var(--primary-light));
    transition: width 0.3s ease;
    z-index: -1;
}

.dropdown-menu-modern a:hover {
    color: white;
    transform: translateX(5px);
}

.dropdown-menu-modern a:hover::before {
    width: 100%;
}

.dropdown-menu-modern i {
    width: 16px;
    text-align: center;
    font-size: 0.875rem;
    transition: transform 0.2s ease;
}

.dropdown-menu-modern a:hover i {
    transform: scale(1.1);
}

.dropdown-menu-modern .dropdown-divider {
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--border-color), transparent);
    margin: 0.5rem 0;
    border: none;
}

.dropdown-menu-modern .dropdown-header {
    color: var(--text-light);
    font-size: 0.875rem;
    font-weight: 600;
    padding: 0.5rem 1rem;
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    background: var(--light-color);
    border-radius: var(--border-radius-sm);
    margin: 0.25rem 0.5rem;
}

.dropdown-menu-modern .dropdown-header i {
    margin-right: 0.5rem;
    color: var(--primary-color);
}

/* Search Icon Styles */
.search-icon-container {
    display: flex;
    align-items: center;
}

.search-icon-btn {
    background: none;
    border: none;
    color: #374151;
    font-size: 1.2rem;
    padding: 0.75rem;
    border-radius: 0.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.search-icon-btn:hover {
    color: var(--primary-color, #059669);
    background: rgba(5, 150, 105, 0.1);
    transform: translateY(-1px);
}

/* Search Panel Styles */
.search-panel {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: white;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    z-index: 10000;
    transform: translateY(-100%);
    transition: transform 0.3s ease;
    padding: 1rem 0;
}

/* Search Panel Overlay */
.search-panel-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(4px);
    z-index: 9998;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.search-panel-overlay.active {
    opacity: 1;
    visibility: visible;
}

.search-panel.active {
    transform: translateY(0);
}

.search-panel-content {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.search-panel-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 1rem;
    border-bottom: 1px solid #e5e7eb;
}

.search-panel-header h4 {
    color: #1e293b;
    font-weight: 600;
    margin: 0;
    display: flex;
    align-items: center;
}

.search-close-btn {
    background: none;
    border: none;
    color: #64748b;
    font-size: 1.2rem;
    padding: 0.5rem;
    border-radius: 0.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.search-close-btn:hover {
    color: #ef4444;
    background: rgba(239, 68, 68, 0.1);
}

.search-panel-form {
    margin-top: 1rem;
}

.search-input-group {
    display: flex;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    border-radius: 3rem;
    overflow: hidden;
    background: white;
}

.search-input {
    flex: 1;
    border: none;
    padding: 1rem 1.5rem;
    font-size: 1rem;
    outline: none;
}

.search-btn {
    background: var(--primary-color, #059669);
    color: white;
    border: none;
    padding: 1rem 1.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.search-btn:hover {
    background: var(--primary-dark, #047857);
}

.search-results {
    margin-top: 1rem;
    max-height: 400px;
    overflow-y: auto;
    border: 1px solid #e5e7eb;
    border-radius: 0.75rem;
    background: white;
}

.search-result-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    text-decoration: none;
    color: #374151;
    border-bottom: 1px solid #f3f4f6;
    transition: all 0.3s ease;
}

.search-result-item:hover {
    background: rgba(5, 150, 105, 0.05);
}

.search-result-item:last-child {
    border-bottom: none;
}

.search-result-image {
    width: 50px;
    height: 50px;
    object-fit: cover;
    border-radius: 0.5rem;
}

/* Header Responsive Design */
@media (max-width: 1200px) {
    .navbar-nav-modern {
        display: none;
    }
}

@media (max-width: 768px) {
    .nav-link span {
        display: none;
    }
    
    .nav-link {
        padding: 0.5rem;
    }

    .search-panel {
        padding: 0.5rem 0;
    }

    .search-input {
        padding: 0.75rem 1rem;
        font-size: 0.9rem;
    }

    .search-btn {
        padding: 0.75rem 1rem;
    }
}

/* ===== FOOTER STYLES ===== */

/* Modern Footer Styles */
.modern-footer {
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 50%, #334155 100%);
    color: #f8fafc;
    position: relative;
    overflow: hidden;
}

.modern-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Ccircle cx='30' cy='30' r='2'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    pointer-events: none;
}

/* Newsletter Section */
.newsletter-section {
    background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 50%, #1e40af 100%);
    padding: 2rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    overflow: hidden;
}

.newsletter-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1200 120' preserveAspectRatio='none'%3E%3Cpath d='M0,0V46.29c47.79,22.2,103.59,32.17,158,28,70.36-5.37,136.33-33.31,206.8-37.5C438.64,32.43,512.34,53.67,583,72.05c69.27,18,138.3,24.88,209.4,13.08,36.15-6,69.85-17.84,104.45-29.34C989.49,25,1113-14.29,1200,52.47V0Z' opacity='.25' class='shape-fill' fill='%23ffffff' fill-opacity='0.1'/%3E%3Cpath d='M0,0V15.81C13,36.92,27.64,56.86,47.69,72.05,99.41,111.27,165,111,224.58,91.58c31.15-10.15,60.09-26.07,89.67-39.8,40.92-19,84.73-46,130.83-49.67,36.26-2.85,70.9,9.42,98.6,31.56,31.77,25.39,62.32,62,103.63,73,40.44,10.79,81.35-6.69,119.13-24.28s75.16-39,116.92-43.05c59.73-5.85,113.28,22.88,168.9,38.84,30.2,8.66,59,6.17,87.09-7.5,22.43-10.89,48-26.93,60.65-49.24V0Z' opacity='.5' class='shape-fill' fill='%23ffffff' fill-opacity='0.08'/%3E%3Cpath d='M0,0V5.63C149.93,59,314.09,71.32,475.83,42.57c43-7.64,84.23-20.12,127.61-26.46,59-8.63,112.48,12.24,165.56,35.4C827.93,77.22,886,95.24,951.2,90c86.53-7,172.46-45.71,248.8-84.81V0Z' class='shape-fill' fill='%23ffffff' fill-opacity='0.06'/%3E%3C/svg%3E");
    background-size: cover;
    background-position: center;
    pointer-events: none;
    animation: wave 8s ease-in-out infinite;
}

@keyframes wave {
    0%, 100% { transform: translateX(0); }
    50% { transform: translateX(-20px); }
}

.newsletter-content {
    position: relative;
    z-index: 2;
}

.newsletter-content h4 {
    color: white;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.newsletter-content p {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 0;
}

.newsletter-form .input-group {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    border-radius: 25px;
    overflow: hidden;
}

.newsletter-form .form-control {
    border: none;
    padding: 0.75rem 1.5rem;
    font-size: 0.9rem;
}

.newsletter-form .btn {
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 0 25px 25px 0;
    font-weight: 600;
}

/* Main Footer */
.footer-main {
    padding: 3rem 0 2rem;
    position: relative;
    z-index: 2;
}

.footer-brand h3 {
    font-weight: 700;
    font-size: 1.5rem;
}

.footer-brand p {
    line-height: 1.6;
    opacity: 0.9;
}

.footer-logo {
    display: flex;
    align-items: center;
}

.footer-logo-img {
    height: 50px;
    width: auto;
    max-width: 300px;
    object-fit: contain;
    filter: brightness(0) invert(1);
    transition: var(--transition-normal);
}

.footer-logo-img:hover {
    filter: brightness(0) invert(1) drop-shadow(0 0 10px rgba(255, 255, 255, 0.3));
}

/* Social Icons */
.social-icons {
    display: flex;
    gap: 0.75rem;
}

.social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border-radius: 50%;
    text-decoration: none;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.social-icon:hover {
    background: var(--primary-color, #059669);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(5, 150, 105, 0.4);
}

/* Footer Links */
.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 0.75rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    font-size: 0.9rem;
}

.footer-links a:hover {
    color: var(--primary-color, #059669);
    transform: translateX(5px);
}

/* Contact Info */
.contact-info {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}
.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.contact-item i {
    color: var(--primary-color, #059669);
    font-size: 1.2rem;
    margin-top: 0.25rem;
    flex-shrink: 0;
}

.contact-item h6 {
    font-size: 0.9rem;
    font-weight: 600;
}

.contact-item p {
    font-size: 0.85rem;
    line-height: 1.4;
}

/* Footer Bottom */
.footer-bottom {
    background: rgba(0, 0, 0, 0.2);
    padding: 1.5rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.payment-methods img {
    height: 25px;
    border-radius: 4px;
    transition: transform 0.3s ease;
}

.payment-logo {
    height: 30px;
    max-width: 60px;
    object-fit: contain;
    filter: brightness(0) invert(1);
    opacity: 0.8;
    transition: all 0.3s ease;
}

.payment-logo:hover {
    transform: scale(1.1);
    opacity: 1;
    filter: brightness(0) invert(1);
}

.footer-badges .badge {
    font-size: 0.75rem;
    padding: 0.5rem 0.75rem;
    border-radius: 20px;
}

/* Scroll to Top Button */
.scroll-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--primary-color, #059669);
    color: white;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: none;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    box-shadow: 0 4px 12px rgba(5, 150, 105, 0.3);
    transition: all 0.3s ease;
    z-index: 1000;
}

.scroll-to-top:hover {
    background: var(--primary-dark, #047857);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(5, 150, 105, 0.4);
}

.scroll-to-top.show {
    display: flex;
}

/* Footer Responsive Design */
@media (max-width: 768px) {
    .newsletter-section {
        padding: 1.5rem 0;
    }

    .footer-main {
        padding: 2rem 0 1rem;
    }

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

    .contact-info {
        gap: 1rem;
    }

    .footer-bottom {
        text-align: center;
    }

    .payment-methods {
        justify-content: center;
        margin-bottom: 1rem;
    }

    .footer-badges {
        justify-content: center;
    }

    .scroll-to-top {
        bottom: 20px;
        right: 20px;
        width: 45px;
        height: 45px;
        font-size: 16px;
    }
}

/* Animation */
.footer-links a,
.social-icon,
.payment-methods img {
    transition: all 0.3s ease;
}

/* Modern Index Page Styles */

/* Modern Hero Section */
.hero-section-modern {
    position: relative;
    display: flex;
    align-items: center;
    color: white;
    overflow: hidden;
    width: 100%;
    min-height: calc(100dvh - var(--header-offset, 0px));
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: transparent;
}

.hero-pattern {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: transparent;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
}

/* Hero Brand Section */
.hero-brand {
    margin-bottom: 2rem;
    animation: fadeInDown 1s ease-out;
}

.brand-logo {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #3b82f6 0%, #60a5fa 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    font-size: 2.5rem;
    color: white;
    box-shadow: 0 10px 30px rgba(59, 130, 246, 0.3);
    animation: pulse 2s infinite;
}

.brand-name {
    font-size: 2.5rem;
    font-weight: 700;
    color: white;
    margin-bottom: 0.5rem;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.brand-tagline {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 400;
    margin-bottom: 0;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(15px);
    padding: 0.75rem 1.5rem;
    border-radius: 30px;
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    animation: fadeInUp 1s ease-out 0.3s both;
}

.hero-title {
    font-size: 4rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    animation: fadeInUp 1s ease-out 0.6s both;
}

.text-gradient {
    background: linear-gradient(135deg, #3b82f6 0%, #60a5fa 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
}

.text-gradient::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(135deg, #3b82f6 0%, #60a5fa 100%);
    border-radius: 2px;
}

.hero-description {
    font-size: 1.3rem;
    line-height: 1.7;
    margin-bottom: 2.5rem;
    opacity: 0.95;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    animation: fadeInUp 1s ease-out 0.9s both;
}

.hero-actions {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
    justify-content: center;
    animation: fadeInUp 1s ease-out 1.2s both;
}

.hero-btn {
    padding: 1.25rem 2.5rem;
    font-weight: 700;
    font-size: 1.1rem;
    border-radius: 15px;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(59, 130, 246, 0.4);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.hero-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(59, 130, 246, 0.5);
}

.hero-btn-outline {
    border: 2px solid rgba(255, 255, 255, 0.4);
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(15px);
    padding: 1.25rem 2.5rem;
    font-weight: 700;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.hero-btn-outline:hover {
    background: rgba(255, 255, 255, 0.25);
    border-color: rgba(255, 255, 255, 0.6);
    transform: translateY(-3px);
}

.hero-stats {
    display: flex;
    gap: 3rem;
    flex-wrap: wrap;
    justify-content: center;
    animation: fadeInUp 1s ease-out 1.5s both;
}

.stat-item {
    text-align: center;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 1.5rem 2rem;
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    min-width: 120px;
    transition: all 0.3s ease;
}

.stat-item:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.15);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: #3b82f6;
    margin-bottom: 0.5rem;
    text-shadow: 0 2px 10px rgba(59, 130, 246, 0.3);
}

.stat-label {
    font-size: 1rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.9);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Animations */
@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 10px 30px rgba(59, 130, 246, 0.3);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 0 15px 40px rgba(59, 130, 246, 0.4);
    }
}

.hero-visual {
    position: relative;
    z-index: 2;
}

.hero-image-container {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-main-image {
    width: 100%;
    max-width: 500px;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.floating-card {
    position: absolute;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 1rem;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #1e293b;
    font-weight: 600;
    animation: float 3s ease-in-out infinite;
}

.floating-card i {
    color: #3b82f6;
    font-size: 1.2rem;
}

.card-1 {
    top: 10%;
    left: 10%;
    animation-delay: 0s;
}

.card-2 {
    top: 60%;
    right: 10%;
    animation-delay: 1s;
}

.card-3 {
    bottom: 20%;
    left: 20%;
    animation-delay: 2s;
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
}

/* Features Section */
.features-section-modern {
    padding-top: 5rem;
    background: #f8fafc;
}

/* Full-width variant for Aden Elektronik features section */
.features-section-modern.features-fullwidth {
    width: 100%;
}

.features-section-modern.features-fullwidth .container-fluid {
    padding-left: 0;
    padding-right: 0;
}

.features-section-modern.features-fullwidth .row {
    margin-left: 0;
    margin-right: 0;
}

/* Compact, border-only, no-gap feature cards */
.features-section-modern.features-fullwidth .feature-card-modern {
    border-radius: 0;
    padding: 1.25rem 1.5rem;
    box-shadow: none;
    height: auto;
    border-left: 1px solid rgba(0,0,0,0.08);
    border-right: 1px solid rgba(0,0,0,0.08);
    border-top: 1px solid rgba(0,0,0,0.08);
    border-bottom: 1px solid rgba(0,0,0,0.08);
}

.features-section-modern.features-fullwidth .feature-card-modern::before {
    display: none;
}

/* Horizontal layout: icon left, text right */
.features-section-modern.features-fullwidth .feature-card-modern {
    display: grid;
    grid-template-columns: 72px 1fr;
    align-items: center;
    gap: 1rem;
    text-align: left;
}

.features-section-modern.features-fullwidth .feature-icon-modern {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0;
}

.features-section-modern.features-fullwidth .feature-content {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.features-section-modern.features-fullwidth .feature-card-modern h4 {
    margin: 0;
    font-size: 1.1rem;
    font-weight: 600;
    color: #1e293b;
}

.features-section-modern.features-fullwidth .feature-card-modern p {
    margin: 0;
    font-size: 0.9rem;
    color: #64748b;
    line-height: 1.4;
}

/* Remove column paddings to make cards touch each other */
.features-section-modern.features-fullwidth .col-lg-3,
.features-section-modern.features-fullwidth .col-md-6,
.features-section-modern.features-fullwidth .col-12 {
    padding-left: 0;
    padding-right: 0;
}

/* Thin separators between items only (avoid double borders) */
.features-section-modern.features-fullwidth .row.g-0 > [class^="col-"]:not(:first-child) .feature-card-modern {
    border-left: none;
}

.section-title-modern {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 1rem;
}

.section-subtitle {
    font-size: 1.1rem;
    color: #64748b;
    margin-bottom: 3rem;
}

.feature-card-modern {
    background: white;
    padding: 2.5rem 2rem;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    height: 320px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.feature-card-modern::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #2563eb, #3b82f6, #60a5fa);
}

.feature-card-modern:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.feature-icon-modern {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #2563eb 0%, #3b82f6 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
    color: white;
    transition: all 0.3s ease;
}

.feature-card-modern:hover .feature-icon-modern {
    transform: scale(1.1);
    box-shadow: 0 8px 25px rgba(37, 99, 235, 0.4);
}

.feature-card-modern h4 {
    font-size: 1.25rem;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 1rem;
}

.feature-card-modern p {
    color: #64748b;
    margin-bottom: 1rem;
}

.feature-badge {
    display: inline-block;
    background: rgba(37, 99, 235, 0.1);
    color: #2563eb;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

/* Categories Section */
.categories-section-modern {
    padding: 5rem 0;
    background: white;
}

.category-card-modern {
    display: block;
    background: white;
    padding: 2rem;
    border-radius: 16px;
    text-decoration: none;
    color: #1e293b;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.category-card-modern::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #2563eb, #3b82f6, #60a5fa);
}

.category-card-modern:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    text-decoration: none;
    color: #1e293b;
}

.category-icon-modern {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #2563eb 0%, #3b82f6 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
    color: white;
    transition: all 0.3s ease;
}

.category-card-modern:hover .category-icon-modern {
    transform: scale(1.1);
    box-shadow: 0 8px 25px rgba(37, 99, 235, 0.4);
}

.category-card-modern h4 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.category-card-modern p {
    color: #64748b;
    margin-bottom: 1rem;
}

.category-arrow {
    color: #2563eb;
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.category-card-modern:hover .category-arrow {
    transform: translateX(5px);
}

/* Products Section */
.products-section-modern {
    padding: 5rem 0;
    background: #f8fafc;
}

.loading-spinner-modern {
    display: inline-block;
    width: 40px;
    height: 40px;
    border: 3px solid #e2e8f0;
    border-radius: 50%;
    border-top-color: #2563eb;
    animation: spin 1s ease-in-out infinite;
}

/* Promotional Banners */
.promo-section-modern {
    padding: 5rem 0;
    background: white;
}

.promo-card-modern {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.promo-card-modern:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.promo-card-modern.large {
    height: 300px;
}

.promo-card-modern.small {
    height: 140px;
}

.promo-card-link {
    text-decoration: none;
    color: inherit;
    transition: transform 0.3s ease;
}

.promo-card-link:hover {
    transform: translateY(-2px);
}

.promo-card-link:hover .promo-card-modern {
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.promo-content {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(5, 150, 105, 0.9) 0%, rgba(4, 120, 87, 0.8) 100%);
    color: white;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    z-index: 2;
}

.promo-text {
    text-align: center;
}

.promo-title {
    margin-bottom: 1rem;
    line-height: 1.2;
}

.promo-highlight {
    display: block;
    font-size: 1.5rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 0.25rem;
}

.promo-subtitle {
    display: block;
    font-size: 1.1rem;
    font-weight: 600;
    color: #ffffff;
}

.promo-description {
    color: #ffffff;
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.promo-offer {
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}
.offer-text {
    font-size: 0.9rem;
    font-weight: 600;
    color: #ffffff;
}

.offer-discount {
    font-size: 1.1rem;
    font-weight: 700;
    color: #ffffff;
}

.promo-btn {
    display: inline-block;
    background: #ffffff;
    color: #059669;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    align-self: center;
}

.promo-btn:hover {
    background: #f8fafc;
    color: #059669;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 255, 255, 0.3);
}

@media (max-width: 768px) {
    .promo-section-modern {
        padding: 3rem 0;
    }
    
    .promo-content {
        padding: 1.5rem;
    }
    
    .promo-highlight {
        font-size: 1.25rem;
    }
    
    .promo-subtitle {
        font-size: 1rem;
    }
    
    .promo-description {
        font-size: 0.9rem;
    }
    
    .promo-btn {
        padding: 0.6rem 1.2rem;
        font-size: 0.85rem;
    }
}

@media (max-width: 480px) {
    .promo-card-modern.large {
        height: 250px;
    }
    
    .promo-content {
        padding: 1rem;
    }
    
    .promo-highlight {
        font-size: 1.1rem;
    }
    
    .promo-subtitle {
        font-size: 0.9rem;
    }
    
    .promo-description {
        font-size: 0.85rem;
        margin-bottom: 1rem;
    }
    
    .promo-offer {
        margin-bottom: 1rem;
    }
    
    .offer-text {
        font-size: 0.8rem;
    }
    
    .offer-discount {
        font-size: 1rem;
    }
    
    .promo-btn {
        padding: 0.5rem 1rem;
        font-size: 0.8rem;
    }
}

/* Product Showcase Slider Styles */
.product-showcase-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
    position: relative;
}

.product-showcase-slider {
    position: relative;
    overflow: hidden;
    margin: 0 2rem;
}

.product-showcase-track {
    display: flex;
    transition: transform 0.5s ease;
}

.product-showcase-slide {
    min-width: 100%;
    padding: 4rem 3rem;
    display: none;
    opacity: 0;
    transform: translateX(20px);
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.product-showcase-slide.active {
    display: block;
    opacity: 1;
    transform: translateX(0);
}

.product-showcase-info {
    padding: 3rem;
    color: #333;
    position: relative;
    z-index: 2;
    backdrop-filter: blur(10px);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    animation: fadeInUp 0.8s ease-out;
}

/* New professional header styles */
.product-showcase-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
}

.product-badge {
    background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
}



@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Professional header/kicker and accent */
.product-kicker {
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    color: #64748b;
    text-transform: uppercase;
    margin-bottom: 0.75rem;
    position: relative;
}

.product-kicker::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 50%;
    transform: translateX(-50%);
    width: 24px;
    height: 2px;
    background: #2563eb;
    border-radius: 1px;
}

.accent-line {
    display: block;
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, #2563eb 0%, #1d4ed8 100%);
    border-radius: 2px;
    margin: 1rem 0 1.5rem 0;
    box-shadow: 0 2px 8px rgba(37, 99, 235, 0.3);
}

.product-category {
    font-size: 0.8rem;
    color: #64748b;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 0.5rem;
}

.product-title {
    font-size: 2rem;
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 1.25rem;
    line-height: 1.1;
    letter-spacing: -0.02em;
}

.product-description {
    font-size: 1.1rem;
    color: #475569;
    line-height: 1.7;
    margin-bottom: 2.5rem;
    font-weight: 400;
}

.product-price {
    margin: 2rem 0;
    text-align: left;
}

.price-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
    padding-bottom: 20px;
}

.best-price-label {
    font-size: 0.85rem;
    color: #94a3b8;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.price-amount {
    font-size: 2.5rem;
    font-weight: 800;
    color: #059669;
    line-height: 1;
}

.product-actions {
    display: flex;
    gap: 1rem;
}

.btn-lime {
    background: #2563eb;
    color: #ffffff;
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 9999px;
    font-weight: 700;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    transition: all 0.2s ease;
}

.btn-lime:hover { 
    background: #1d4ed8; 
    color: #ffffff; 
    transform: translateY(-1px); 
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
}

.btn-dark-ghost {
    background: transparent;
    color: #374151;
    border: 1px solid #e5e7eb;
    padding: 0.75rem 1.5rem;
    border-radius: 9999px;
    font-weight: 700;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    transition: all 0.2s ease;
}

.btn-dark-ghost:hover { background: #f3f4f6; }

.product-showcase-image {
    text-align: center;
    padding: 2rem;
    animation: fadeInRight 0.8s ease-out 0.2s both;
}

.product-showcase-link {
    text-decoration: none;
    color: inherit;
    display: block;
    width: 100%;
    height: 100%;
}

.product-showcase-image-link {
    text-decoration: none;
    color: inherit;
    display: block;
    width: 100%;
    height: 100%;
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.product-showcase-image img {
    max-width: 100%;
    height: auto;
    border-radius: 16px;
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.12);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.product-showcase-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid #e5e7eb;
    width: 52px;
    height: 52px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 10;
    backdrop-filter: blur(10px);
}

.product-showcase-nav:hover { 
    background: rgba(255, 255, 255, 1); 
    border-color: #2563eb; 
    transform: translateY(-50%) scale(1.1); 
    box-shadow: 0 8px 24px rgba(37, 99, 235, 0.2);
}

.product-showcase-nav i { 
    color: #64748b; 
    font-size: 1.2rem; 
    transition: all 0.3s ease;
}

.product-showcase-nav:hover i {
    color: #2563eb;
}

.product-showcase-nav.prev-btn {
    left: 20px;
}

.product-showcase-nav.next-btn {
    right: 20px;
}

.product-showcase-dots {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 0.75rem;
    z-index: 10;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 20px;
    backdrop-filter: blur(10px);
}

.product-showcase-dot { 
    width: 10px; 
    height: 10px; 
    border-radius: 50%; 
    background: #e5e7eb; 
    cursor: pointer; 
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.product-showcase-dot.active { 
    background: #2563eb; 
    box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.3);
    transform: scale(1.2);
}

.product-showcase-dot:hover { 
    background: #cbd5e1; 
    transform: scale(1.1);
}

@media (max-width: 768px) {
    .product-showcase-section {
        padding: 4rem 0;
    }
    
    .product-showcase-slider {
        margin: 0 1rem;
        border-radius: 16px;
    }
    
    .product-showcase-slide {
        padding: 3rem 2rem;
    }
    
    .product-showcase-info {
        padding: 2rem 1.5rem;
        text-align: center;
    }
    
    .product-showcase-header {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }
    
    .product-kicker {
        font-size: 0.75rem;
        margin-bottom: 0.5rem;
    }
    
    .product-title {
        font-size: 2.25rem;
        margin-bottom: 1rem;
    }
    
    .accent-line {
        width: 50px;
        height: 3px;
        margin: 0.75rem auto 1.25rem auto;
    }
    
    .product-description {
        font-size: 1rem;
        margin-bottom: 2rem;
    }
    
    .price-content {
        align-items: center;
        text-align: center;
    }
    
    .price-amount {
        font-size: 2rem;
    }
    
    .product-actions {
        flex-direction: column;
        gap: 0.75rem;
        max-width: 280px;
        margin: 0 auto;
    }
    
    /* Slider'daki product-actions için margin korunur */
    .product-showcase-slide .product-actions {
        margin: 0 auto;
    }
    
    .btn-lime,
    .btn-dark-ghost {
        padding: 0.875rem 1.5rem;
        font-size: 0.875rem;
    }
    
    .product-showcase-image {
        padding: 1.5rem;
        margin-top: 1rem;
    }
    
    .product-showcase-nav {
        width: 44px;
        height: 44px;
    }
    
    .product-showcase-nav.prev-btn {
        left: 8px;
    }
    
    .product-showcase-nav.next-btn {
        right: 8px;
    }
    
    .product-showcase-dots {
        bottom: 20px;
        padding: 0.75rem;
        border-radius: 16px;
    }
}

@media (max-width: 480px) {
    .product-showcase-section {
        padding: 2rem 0;
    }
    
    .product-showcase-slider {
        margin: 0 0.5rem;
        border-radius: 12px;
    }
    
    .product-showcase-slide {
        padding: 2rem 1.5rem;
    }
    
    .product-showcase-info {
        padding: 1.5rem 1rem;
    }
    
    .product-showcase-header {
        gap: 0.75rem;
    }
    
    .product-badge {
        padding: 0.4rem 0.8rem;
        font-size: 0.7rem;
    }
    
    .product-kicker {
        font-size: 0.7rem;
        margin-bottom: 0.4rem;
    }
    
    .product-title {
        font-size: 1.875rem;
        margin-bottom: 0.75rem;
        line-height: 1.2;
    }
    
    .accent-line {
        width: 40px;
        height: 2px;
        margin: 0.5rem auto 1rem auto;
    }
    
    .product-description {
        font-size: 0.9rem;
        margin-bottom: 1.5rem;
        line-height: 1.6;
    }
    
    .price-content {
        align-items: center;
        text-align: center;
    }
    
    .best-price-label {
        font-size: 0.8rem;
    }
    
    .price-amount {
        font-size: 1.5rem;
    }
    
    .product-actions {
        max-width: 240px;
        gap: 0.5rem;
    }
    
    .btn-lime,
    .btn-dark-ghost {
        padding: 0.75rem 1.25rem;
        font-size: 0.8rem;
    }
    
    .product-showcase-image {
        padding: 1rem;
        margin-top: 0.5rem;
    }
    
    .product-showcase-image img {
        border-radius: 12px;
        box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    }
    
    .product-showcase-nav {
        width: 40px;
        height: 40px;
    }
    
    .product-showcase-nav.prev-btn {
        left: 4px;
    }
    
    .product-showcase-nav.next-btn {
        right: 4px;
    }
    
    .product-showcase-nav i {
        font-size: 1rem;
    }
    
    .product-showcase-dots {
        bottom: 15px;
        padding: 0.5rem;
        gap: 0.5rem;
    }
    
    .product-showcase-dot {
        width: 8px;
        height: 8px;
    }
}

@media (max-width: 360px) {
    .product-showcase-slide {
        padding: 1.5rem 1rem;
    }
    
    .product-title {
        font-size: 1.5rem;
    }
    
    .product-description {
        font-size: 0.85rem;
    }
    
    .price-amount {
        font-size: 1.25rem;
    }
    
    .product-actions {
        max-width: 200px;
    }
    
    .btn-lime,
    .btn-dark-ghost {
        padding: 0.625rem 1rem;
        font-size: 0.75rem;
    }
    
    .product-showcase-nav {
        width: 36px;
        height: 36px;
    }
    
    .product-showcase-nav i {
        font-size: 0.9rem;
    }
}

.promo-image {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
}

.promo-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* New Arrivals Section */
.new-arrivals-section-modern {
    padding: 5rem 0;
    background: #f8fafc;
}

/* Yeni gelenler bölümü için grid ayarları */
.new-arrivals-section-modern .row {
    align-items: stretch;
}

.new-arrivals-section-modern .product-card {
    height: 100%;
    display: flex;
    flex-direction: column;
}

.new-arrivals-section-modern .product-card-link {
    height: 100%;
    display: flex;
    flex-direction: column;
}

/* Products Header */
.products-header-modern {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    padding: 0 1rem;
}

.products-header-modern .section-title-modern {
    margin-bottom: 0;
    font-size: 1.8rem;
    font-weight: 800;
    color: #1e293b;
    letter-spacing: -0.02em;
}

.category-tabs-modern {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.category-tab {
    background: none;
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 600;
    color: #64748b;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.category-tab:hover {
    color: #3b82f6;
    background: rgba(59, 130, 246, 0.1);
}

.category-tab.active {
    background: #3b82f6;
    color: white;
    box-shadow: 0 4px 15px rgba(59, 130, 246, 0.3);
}

/* Main Product Display */
.main-product-display {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(0, 0, 0, 0.08);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.main-product-image {
    position: relative;
    height: 400px;
    overflow: hidden;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
}

.main-product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.main-product-info {
    padding: 1.5rem;
    background: white;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.main-product-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #374151;
    margin-bottom: 0.75rem;
}

.main-product-description {
    font-size: 0.9rem;
    color: #6b7280;
    margin-bottom: 1rem;
    line-height: 1.5;
}

.main-product-price {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2rem;
}

.price-label {
    font-size: 1rem;
    font-weight: 600;
    color: #64748b;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.price-amount {
    font-size: 1.5rem;
    font-weight: 800;
    color: #3b82f6;
}

.main-product-actions {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
}

.btn-inspect {
    flex: 1;
    padding: 0.75rem 1.5rem;
    font-weight: 600;
    border-radius: 12px;
    border: 2px solid #3b82f6;
    color: #3b82f6;
    background: transparent;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.btn-inspect:hover {
    background: #3b82f6;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(59, 130, 246, 0.3);
}

.btn-buy {
    flex: 1;
    padding: 0.75rem 1.5rem;
    font-weight: 600;
    border-radius: 12px;
    background: #10b981;
    border: 2px solid #10b981;
    color: white;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.btn-buy:hover {
    background: #059669;
    border-color: #059669;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(16, 185, 129, 0.3);
}

/* Countdown Timer */
.countdown-timer {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
}

.timer-item {
    text-align: center;
    flex: 1;
}

.timer-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 800;
    margin: 0 auto 0.5rem;
    box-shadow: 0 4px 15px rgba(59, 130, 246, 0.3);
}

.timer-label {
    font-size: 0.8rem;
    font-weight: 600;
    color: #64748b;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Pagination Dots */
.pagination-dots {
    display: flex;
    gap: 0.5rem;
    justify-content: center;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #e2e8f0;
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot.active {
    background: #3b82f6;
    transform: scale(1.2);
}

/* Product Grid */
.product-grid-modern {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
    height: 100%;
}

.product-grid-modern .product-card-modern {
    height: auto;
    margin-bottom: 0;
}

/* Featured Products Grid */
#featured-products {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    height: 100%;
    align-items: stretch;
}

#featured-products .product-card-modern {
    margin-bottom: 0;
    background: white;
    border-radius: 16px;
    padding: 1rem;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    height: 100%;
    position: relative;
    overflow: hidden;
}

#featured-products .product-card-modern::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #3b82f6, #60a5fa);
    opacity: 0;
    transition: opacity 0.3s ease;
}

#featured-products .product-card-modern:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 20px 40px rgba(59, 130, 246, 0.15);
    border-color: rgba(59, 130, 246, 0.3);
    background: linear-gradient(135deg, #ffffff 0%, #f0f9ff 100%);
}

#featured-products .product-card-modern:hover::before {
    opacity: 1;
}

#featured-products .product-image-modern {
    width: 100%;
    height: 140px;
    border-radius: 12px;
    overflow: hidden;
    position: relative;
    margin-bottom: 0.75rem;
}

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

#featured-products .product-card-modern:hover .product-image-modern img {
    transform: scale(1.05);
}

#featured-products .product-content-modern {
    flex: 1;
    padding: 0;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

#featured-products .product-title-modern {
    font-size: 0.9rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    line-height: 1.2;
    color: #374151;
}

#featured-products .product-title-modern a {
    color: #0f172a;
    text-decoration: none;
    transition: color 0.3s ease;
}

#featured-products .product-title-modern a:hover {
    color: #3b82f6;
}

#featured-products .product-description-modern {
    display: none;
}

#featured-products .product-price-modern {
    font-size: 1rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
}

#featured-products .product-rating-modern {
    display: none;
}

#featured-products .product-actions-modern {
    display: flex;
    gap: 0.5rem;
    margin-top: 0.75rem;
    opacity: 1;
    visibility: visible;
    transform: none;
}

#featured-products .product-actions-modern .btn {
    flex: 1;
    font-size: 0.75rem;
    padding: 0.5rem 0.75rem;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

#featured-products .product-actions-modern .btn-outline-primary {
    color: #3b82f6;
    border: 2px solid #3b82f6;
    background: transparent;
}

#featured-products .product-actions-modern .btn-outline-primary:hover {
    background: #3b82f6;
    color: white;
    transform: translateY(-1px);
    box-shadow: 0 2px 8px rgba(59, 130, 246, 0.3);
}

#featured-products .product-actions-modern .btn-success {
    background: #10b981;
    border: 2px solid #10b981;
    color: white;
}

#featured-products .product-actions-modern .btn-success:hover {
    background: #059669;
    border-color: #059669;
    transform: translateY(-1px);
    box-shadow: 0 2px 8px rgba(16, 185, 129, 0.3);
}

#featured-products .product-overlay-actions {
    display: none;
}
#featured-products .favorite-btn-modern {
    position: absolute;
    top: 5px;
    right: 5px;
    width: 38px;
    height: 38px;
    background: rgba(255, 255, 255, 0.95);
    border: 2px solid rgba(59, 130, 246, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    color: #64748b;
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(12px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

#featured-products .favorite-btn-modern:hover {
    background: #3b82f6;
    color: white;
    transform: scale(1.2);
    box-shadow: 0 6px 20px rgba(59, 130, 246, 0.4);
    border-color: #3b82f6;
}

#featured-products .favorite-btn-modern.active {
    background: #3b82f6;
    color: white;
    border-color: #3b82f6;
}

#featured-products .product-badge-modern {
    display: none;
}

/* Product Cards */
.product-card-modern {
    background: white;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.08);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    height: 100%;
    display: flex;
    flex-direction: column;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.product-card-modern::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.02) 0%, rgba(37, 99, 235, 0.01) 100%);
    opacity: 0;
    transition: opacity 0.5s ease;
    pointer-events: none;
    border-radius: 24px;
}

.product-card-modern:hover::before {
    opacity: 1;
}

.product-card-modern:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow: 0 24px 48px rgba(0, 0, 0, 0.12);
    border-color: rgba(59, 130, 246, 0.2);
}

.product-image-modern {
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    aspect-ratio: 1;
    border-radius: 20px 20px 0 0;
}

.product-image-modern::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.1) 0%, transparent 50%, rgba(0, 0, 0, 0.05) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
}

.product-card-modern:hover .product-image-modern::after {
    opacity: 1;
}

.product-image-modern img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    filter: brightness(0.98);
}

.product-card-modern:hover .product-image-modern img {
    transform: scale(1.08);
    filter: brightness(1.05);
}

.product-badge-modern {
    position: absolute;
    top: 18px;
    left: 18px;
    background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
    color: white;
    padding: 0.5rem 1.2rem;
    border-radius: 30px;
    font-size: 0.75rem;
    font-weight: 800;
    z-index: 3;
    box-shadow: 0 6px 20px rgba(59, 130, 246, 0.4);
    text-transform: uppercase;
    letter-spacing: 0.8px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.favorite-btn-modern {
    position: absolute;
    top: 18px;
    right: 18px;
    width: 44px;
    height: 44px;
    background: rgba(255, 255, 255, 0.95);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: #64748b;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 3;
    backdrop-filter: blur(15px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.12);
}

.favorite-btn-modern:hover {
    background: rgba(255, 255, 255, 1);
    color: #ef4444;
    transform: scale(1.15);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.favorite-btn-modern.active {
    background: #ef4444;
    color: white;
    box-shadow: 0 6px 20px rgba(239, 68, 68, 0.5);
    border-color: rgba(255, 255, 255, 0.3);
}

.favorite-btn-modern.active:hover {
    background: #dc2626;
    transform: scale(1.15);
    box-shadow: 0 8px 25px rgba(220, 38, 38, 0.6);
}

.favorite-btn-modern:hover {
    background: rgba(255, 255, 255, 1);
    color: #ef4444;
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.favorite-btn-modern.active {
    background: #ef4444;
    color: white;
    box-shadow: 0 4px 15px rgba(239, 68, 68, 0.4);
}

.favorite-btn-modern.active:hover {
    background: #dc2626;
    transform: scale(1.1);
}

.product-content-modern {
    padding: 1.75rem;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    background: linear-gradient(135deg, #ffffff 0%, #fafafa 100%);
}

.product-title-modern {
    font-size: 1.15rem;
    font-weight: 800;
    margin-bottom: 0.75rem;
    line-height: 1.4;
    color: #0f172a;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    letter-spacing: -0.02em;
}

.product-description-modern {
    font-size: 0.9rem;
    color: #64748b;
    line-height: 1.6;
    margin-bottom: 1.25rem;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    font-weight: 400;
    letter-spacing: 0.01em;
}

.product-price-modern {
    font-size: 1.6rem;
    font-weight: 900;
    color: #3b82f6;
    margin-bottom: 1.25rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    letter-spacing: -0.02em;
}

.product-rating-modern {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1.75rem;
    padding: 0.5rem 0;
}

.stars-modern {
    color: #fbbf24;
    font-size: 0.95rem;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

.rating-count-modern {
    font-size: 0.875rem;
    color: #64748b;
    font-weight: 600;
    letter-spacing: 0.02em;
}

.product-overlay-actions {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    display: flex;
    gap: 0.75rem;
    padding: 1.25rem;
    backdrop-filter: blur(15px);
    opacity: 0;
    transform: translateY(100%);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 2;
    border-radius: 20px 20px 0 0;
}

.product-card-modern:hover .product-overlay-actions {
    opacity: 1;
    transform: translateY(0);
}

.btn-overlay {
    flex: 1;
    padding: 0.875rem 1.25rem;
    font-size: 0.875rem;
    font-weight: 800;
    border-radius: 12px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    text-transform: uppercase;
    letter-spacing: 0.8px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: white;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    backdrop-filter: blur(10px);
}

.btn-overlay:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.4);
    color: white;
    text-decoration: none;
    border-color: rgba(255, 255, 255, 0.4);
}

.btn-overlay.btn-primary {
    background: linear-gradient(135deg, #3b82f6 0%, #1d4ed8 100%);
    box-shadow: 0 4px 15px rgba(59, 130, 246, 0.3);
}

.btn-overlay.btn-primary:hover {
    background: linear-gradient(135deg, #2563eb 0%, #1e40af 100%);
    box-shadow: 0 8px 25px rgba(37, 99, 235, 0.4);
}

.btn-overlay.btn-success {
    background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
    box-shadow: 0 4px 15px rgba(59, 130, 246, 0.3);
}

.btn-overlay.btn-success:hover {
    background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
    box-shadow: 0 8px 25px rgba(37, 99, 235, 0.4);
}

.product-actions-modern {
    display: flex;
    gap: 0.75rem;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.product-card-modern:hover .product-actions-modern {
    opacity: 1;
    transform: none;
}

.btn-modern {
    flex: 1;
    padding: 0.75rem 1rem;
    font-size: 0.9rem;
    font-weight: 700;
    border-radius: 12px;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border: none;
    position: relative;
    overflow: hidden;
}

.btn-modern::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.btn-modern:hover::before {
    left: 100%;
}

.btn-modern:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

/* Product Card Hover Overlay */
.product-card-modern::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.1) 0%, rgba(37, 99, 235, 0.05) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
    border-radius: 20px;
}

.product-card-modern:hover::after {
    opacity: 1;
}

/* Color Swatches */
.product-colors {
    display: flex;
    gap: 0.5rem;
    margin-top: 1rem;
}

.color-swatch {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    border: 2px solid white;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    cursor: pointer;
    transition: all 0.3s ease;
}

.color-swatch:hover {
    transform: scale(1.2);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.color-swatch.active {
    border-color: #3b82f6;
    transform: scale(1.1);
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-content {
        max-width: 100%;
        padding: 0 1rem;
    }
    
    .brand-name {
        font-size: 2rem;
    }
    
    .brand-tagline {
        font-size: 1rem;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-description {
        font-size: 1.1rem;
        max-width: 100%;
    }
    
    .hero-actions {
        flex-direction: column;
        gap: 1rem;
    }
    
    .hero-btn,
    .hero-btn-outline {
        padding: 1rem 2rem;
        font-size: 1rem;
    }
    
    .hero-stats {
        gap: 1.5rem;
        justify-content: center;
    }
    
    .stat-item {
        padding: 1rem 1.5rem;
        min-width: 100px;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .stat-label {
        font-size: 0.9rem;
    }
    
    .floating-card {
        display: none;
    }
    
    .section-title-modern {
        font-size: 2rem;
    }
    
    .product-description-modern {
        font-size: 0.85rem;
        -webkit-line-clamp: 3;
    }
    
    .product-overlay-actions {
        padding: 0.75rem;
    }
    
    .btn-overlay {
        padding: 0.6rem 0.8rem;
        font-size: 0.8rem;
    }
    
    .products-header-modern {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
    
    .category-tabs-modern {
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .category-tab {
        padding: 0.5rem 1rem;
        font-size: 0.8rem;
    }
    
    .main-product-title {
        font-size: 1.5rem;
    }
    
    .price-amount {
        font-size: 1.5rem;
    }
    
    .main-product-actions {
        flex-direction: column;
        gap: 0.75rem;
    }
    
    .btn-inspect,
    .btn-buy {
        padding: 0.6rem 1rem;
        font-size: 0.9rem;
    }
    
    .countdown-timer {
        gap: 0.5rem;
    }
    
    .timer-number {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }
    
    .timer-label {
        font-size: 0.7rem;
    }
    
    #featured-products .product-card-modern {
        height: 140px;
        padding: 0.75rem;
    }
    
    #featured-products .product-image-modern {
        width: 100%;
        height: 60px;
    }
    
    #featured-products .product-title-modern {
        font-size: 1rem;
        margin-bottom: 0.75rem;
    }
    
    #featured-products .product-price-modern {
        font-size: 1.1rem;
    }
    
    #featured-products .favorite-btn-modern {
        width: 32px;
        height: 32px;
        font-size: 0.9rem;
        top: 1rem;
        right: 1rem;
    }
    
    #featured-products .product-actions-modern .btn {
        font-size: 0.65rem;
        padding: 0.35rem 0.5rem;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .brand-name {
        font-size: 1.8rem;
    }
    
    .hero-description {
        font-size: 1rem;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 1rem;
    }
    
    .stat-item {
        min-width: auto;
        width: 100%;
        max-width: 200px;
        margin: 0 auto;
    }
}

/* Hero Background Slider */
.hero-background-slider {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
    overflow: hidden;
}

.slider-container {
    position: relative;
    width: 100%;
    height: 100%;
}

.slider-track {
    display: flex;
    transition: transform 0.8s ease-in-out;
    height: 100%;
}

.slider-item {
    min-width: 100%;
    position: relative;
    height: 100%;
}

.slider-item img {
    width: 100%;
    height: 100%;
    object-fit: contain; /* Görsel kırpılmasın */
    object-position: center;
    background-color: transparent;
}



/* Hero Slider Controls */
.hero-slider-controls {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    gap: 1.5rem;
    z-index: 10;
}

.hero-slider-btn {
    background: rgba(255, 255, 255, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    font-size: 1.2rem;
}

.hero-slider-btn:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: scale(1.1);
}

.hero-slider-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.hero-slider-dots {
    display: flex;
    gap: 0.75rem;
}

.hero-slider-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s ease;
}

.hero-slider-dot.active {
    background: white;
    transform: scale(1.3);
}

.hero-slider-dot:hover {
    background: rgba(255, 255, 255, 0.8);
}

/* Responsive Design for Hero Slider */
@media (max-width: 768px) {
    .hero-slider-controls {
        bottom: 1rem;
        gap: 1rem;
    }
    
    .hero-slider-btn {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
    
    .hero-slider-dot {
        width: 10px;
        height: 10px;
    }
}
.feature-icon-modern i {
    width: 90px;
    height: 90px;
    line-height: 90px;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* ===== Top Banner Slider ===== */
.home-banner-slider-section {
    padding: 20px 0;
}
.banner-slider {
    position: relative;
    overflow: hidden;
}
.banner-track {
    display: flex;
    transition: transform 0.5s ease;
    will-change: transform;
}
.banner-track > * {
    flex: 0 0 auto;
    padding: 8px;
    box-sizing: border-box;
    width: 33.3333%;
}
.banner-item { padding: 0; }
.banner-item img {
    display: block;
    width: 100%;
    height: auto;
    border-radius: 12px;
    background-color: transparent;
}

.banner-item-link {
    display: block;
    text-decoration: none;
    color: inherit;
    transition: transform 0.3s ease;
}

.banner-item-link:hover {
    transform: translateY(-2px);
}

.banner-item-link:hover .banner-item img {
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

/* Tablet: 2 per view */
@media (max-width: 991.98px) {
    .banner-track > * { width: 33.3333%; }
}

/* Mobile: 1 per view */
@media (max-width: 575.98px) {
    .banner-track > * { width: 33.3333%; }
}

/* ===== SIDEBAR STYLES ===== */

/* Modern Sidebar */
.sidebar-modern {
    position: fixed;
    top: 0;
    right: -100%;
    width: 350px;
    height: 100vh;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    border-right: 1px solid rgba(226, 232, 240, 0.6);
    box-shadow: var(--shadow-lg);
    z-index: 1050;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    overflow-y: auto;
    display: flex;
    flex-direction: column;
}

.sidebar-modern.active {
    right: 0;
}

/* Sidebar Header */
.sidebar-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.5rem;
    border-bottom: 1px solid rgba(226, 232, 240, 0.6);
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    position: sticky;
    top: 0;
    z-index: 10;
}

.sidebar-brand {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: var(--transition-normal);
}

.sidebar-brand:hover {
    color: var(--primary-light);
    transform: translateY(-1px);
}

.sidebar-brand i {
    font-size: 1.25rem;
}
.sidebar-logo {
    height: 40px;
    width: auto;
    max-width: 180px;
    object-fit: contain;
    transition: var(--transition-normal);
}

.sidebar-brand:hover .sidebar-logo {
    filter: brightness(0) invert(1) drop-shadow(0 0 10px rgba(255, 255, 255, 0.3));
}

.sidebar-close-btn {
    background: none;
    border: none;
    color: var(--text-color);
    font-size: 1.2rem;
    padding: 0.5rem;
    border-radius: 50%;
    cursor: pointer;
    transition: var(--transition-normal);
    display: flex;
    align-items: center;
    justify-content: center;
}

.sidebar-close-btn:hover {
    background: rgba(239, 68, 68, 0.1);
    color: #ef4444;
    transform: scale(1.1);
}

/* Sidebar CTA Bar */
.sidebar-cta-bar {
    background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%);
    padding: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    overflow: hidden;
}

.sidebar-cta-bar::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11 18c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm48 25c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm-43-7c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm63 31c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM34 90c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm56-76c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM12 86c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm28-65c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm23-11c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-6 60c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm29 22c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zM32 63c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm57-13c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-9-21c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM60 91c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM35 41c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM12 60c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2z' fill='%23ffffff' fill-opacity='0.05' fill-rule='evenodd'/%3E%3C/svg%3E");
    animation: shine 3s linear infinite;
}

.sidebar-cta-bar .cta-content {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    align-items: center;
    text-align: center;
}

.sidebar-cta-bar .cta-badge {
    background: #fef2f2;
    color: #dc2626;
    padding: 0.35rem 0.75rem;
    border-radius: 16px;
    font-weight: 700;
    font-size: 0.75rem;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    animation: pulse 2s infinite;
}

.sidebar-cta-bar .cta-text {
    color: white;
    font-size: 0.9rem;
    font-weight: 600;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.sidebar-cta-bar .cta-timer {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: white;
    font-size: 0.8rem;
    flex-wrap: wrap;
    justify-content: center;
}

.sidebar-cta-bar .cta-btn {
    background: white;
    color: #dc2626;
    text-decoration: none;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-weight: 700;
    font-size: 0.75rem;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
    display: flex;
    align-items: center;
    gap: 0.375rem;
}

.sidebar-cta-bar .cta-btn:hover {
    transform: translateY(-2px) scale(1.05);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    color: #dc2626;
}

/* Sidebar Search */
.sidebar-search {
    padding: 1.5rem;
    border-bottom: 1px solid rgba(226, 232, 240, 0.6);
}

.sidebar-search .search-panel-header {
    margin-bottom: 1rem;
}

.sidebar-search .search-panel-header h4 {
    color: var(--dark-color);
    font-weight: 600;
    margin: 0;
    display: flex;
    align-items: center;
    font-size: 1rem;
}

.sidebar-search .search-input-group {
    display: flex;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    border-radius: 0.75rem;
    overflow: hidden;
    background: white;
}

.sidebar-search .search-input {
    flex: 1;
    border: none;
    padding: 0.75rem 1rem;
    font-size: 0.9rem;
    outline: none;
}

.sidebar-search .search-btn {
    background: var(--primary-color);
    color: white;
    border: none;
    padding: 0.75rem 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.sidebar-search .search-btn:hover {
    background: var(--primary-dark);
}

/* Sidebar Navigation */
.sidebar-nav {
    flex: 1;
    padding: 1rem 0;
}

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

.sidebar-item {
    position: relative;
}

.sidebar-link {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--text-color);
    text-decoration: none;
    padding: 1rem 1.5rem;
    font-weight: 500;
    transition: all 0.3s ease;
    border-left: 3px solid transparent;
    position: relative;
    overflow: hidden;
}

.sidebar-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(5, 150, 105, 0.1), transparent);
    transition: left 0.6s ease;
}

.sidebar-link:hover::before {
    left: 100%;
}

.sidebar-link:hover {
    color: var(--primary-color);
    background: rgba(5, 150, 105, 0.08);
    border-left-color: var(--primary-color);
    transition: all 0.3s ease;
}

.sidebar-link i {
    font-size: 1rem;
    width: 20px;
    text-align: center;
}

.sidebar-link span {
    font-size: 0.95rem;
}

.sidebar-link .fa-chevron-down {
    margin-left: auto;
    transition: transform 0.3s ease;
}

.sidebar-item.dropdown.active .fa-chevron-down {
    transform: rotate(180deg);
}

/* Sidebar Dropdown Menu */
.sidebar-dropdown-menu {
    list-style: none;
    margin: 0;
    padding: 0;
    background: rgba(248, 250, 252, 0.8);
    backdrop-filter: blur(10px);
    border-left: 3px solid rgba(5, 150, 105, 0.3);
    display: none;
}

.sidebar-dropdown-menu li {
    border-bottom: 1px solid rgba(226, 232, 240, 0.3);
}

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

.sidebar-dropdown-menu a {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1.5rem 0.75rem 3rem;
    color: var(--text-color);
    text-decoration: none;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.sidebar-dropdown-menu a::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(5, 150, 105, 0.1), transparent);
    transition: left 0.6s ease;
}

.sidebar-dropdown-menu a:hover::before {
    left: 100%;
}

.sidebar-dropdown-menu a:hover {
    background: rgba(5, 150, 105, 0.1);
    color: var(--primary-color);
    transform: translateX(5px);
}

.sidebar-dropdown-menu i {
    width: 16px;
    text-align: center;
}

/* Sidebar User Section */
.sidebar-user-section {
    padding: 1.5rem;
    border-top: 1px solid rgba(226, 232, 240, 0.6);
    background: rgba(248, 250, 252, 0.5);
}

.sidebar-user-account {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.user-info {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 12px;
    border: 1px solid rgba(226, 232, 240, 0.6);
    backdrop-filter: blur(10px);
}

.user-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--premium-gradient);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 600;
    font-size: 1.2rem;
    box-shadow: 0 4px 12px rgba(5, 150, 105, 0.3);
    overflow: hidden;
}

.user-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

.user-details {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.user-name {
    font-weight: 600;
    color: var(--dark-color);
    font-size: 1rem;
}

.user-email {
    font-size: 0.85rem;
    color: var(--text-light);
}

.user-menu {
    list-style: none;
    margin: 0;
    padding: 0;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 12px;
    border: 1px solid rgba(226, 232, 240, 0.6);
    backdrop-filter: blur(10px);
    overflow: hidden;
}

.user-menu li {
    border-bottom: 1px solid rgba(226, 232, 240, 0.3);
}

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

.user-menu li.divider {
    height: 1px;
    background: rgba(226, 232, 240, 0.6);
    margin: 0.5rem 0;
}

.user-menu a {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1rem;
    color: var(--text-color);
    text-decoration: none;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.user-menu a::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(5, 150, 105, 0.1), transparent);
    transition: left 0.6s ease;
}

.user-menu a:hover::before {
    left: 100%;
}

.user-menu a:hover {
    background: rgba(5, 150, 105, 0.1);
    color: var(--primary-color);
    transform: translateX(5px);
}

.user-menu a.logout-link:hover {
    background: rgba(239, 68, 68, 0.1);
    color: #ef4444;
}

.user-menu i {
    width: 16px;
    text-align: center;
}

/* Sidebar Auth Buttons */
.sidebar-auth-buttons {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.sidebar-auth-buttons .auth-btn {
    padding: 0.75rem 1rem;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    text-align: center;
}

.sidebar-auth-buttons .auth-btn.login {
    color: var(--primary-color);
    background: rgba(5, 150, 105, 0.08);
    border: 1px solid rgba(5, 150, 105, 0.2);
}

.sidebar-auth-buttons .auth-btn.login:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(5, 150, 105, 0.3);
}

.sidebar-auth-buttons .auth-btn.register {
    background: var(--primary-color);
    color: white;
    border: 1px solid var(--primary-color);
}

.sidebar-auth-buttons .auth-btn.register:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(5, 150, 105, 0.3);
}

/* Sidebar Actions */
.sidebar-actions {
    padding: 1.5rem;
    border-top: 1px solid rgba(226, 232, 240, 0.6);
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.sidebar-actions .action-btn {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1rem;
    background: rgba(255, 255, 255, 0.8);
    border: 1px solid rgba(226, 232, 240, 0.6);
    border-radius: 12px;
    color: var(--text-color);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
    width: auto;
    height: auto;
    min-width: auto;
}

.sidebar-actions .action-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(5, 150, 105, 0.1), transparent);
    transition: left 0.6s ease;
}

.sidebar-actions .action-btn:hover::before {
    left: 100%;
}

.sidebar-actions .action-btn:hover {
    background: rgba(255, 255, 255, 1);
    border-color: var(--primary-color);
    color: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(5, 150, 105, 0.2);
}

.sidebar-actions .action-btn i {
    font-size: 1rem;
    width: 20px;
    text-align: center;
}

.sidebar-actions .action-btn span {
    font-size: 0.9rem;
}

/* Sidebar action buttons badge positioning */
.sidebar-actions .action-btn .badge-modern {
    position: absolute;
    top: -8px;
    right: -8px;
    z-index: 10;
}

/* Sidebar Footer */
.sidebar-footer {
    padding: 1.5rem;
    border-top: 1px solid rgba(226, 232, 240, 0.6);
    background: rgba(248, 250, 252, 0.5);
    margin-top: auto;
}

.social-links {
    display: flex;
    gap: 0.75rem;
    justify-content: center;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.8);
    color: var(--text-color);
    border-radius: 50%;
    text-decoration: none;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(226, 232, 240, 0.6);
}

.social-link:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(5, 150, 105, 0.3);
}

/* Sidebar Overlay */
.sidebar-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(5px);
    z-index: 1040;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.sidebar-overlay.active {
    opacity: 1;
    visibility: visible;
}

/* Sidebar Toggle Button in Navbar */
.sidebar-toggle-container {
    display: flex;
    align-items: center;
    z-index: 1000;
}

.sidebar-toggle-btn-navbar {
    background: none;
    border: none;
    color: var(--text-color);
    font-size: 1.2rem;
    padding: 0.75rem;
    border-radius: 0.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1001;
}

.sidebar-toggle-btn-navbar:hover {
    color: var(--primary-color);
    background: rgba(5, 150, 105, 0.1);
    transform: translateY(-1px);
}

/* Mobile responsive styles for sidebar toggle */
@media (max-width: 991px) {
    .sidebar-toggle-container {
        position: relative;
        z-index: 1000;
        display: flex !important;
    }
    
    .sidebar-toggle-btn-navbar {
        font-size: 1.4rem;
        padding: 0.5rem;
        border-radius: 0.375rem;
        background: var(--primary-color);
        color: white;
        border: none;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
        position: relative;
        z-index: 1001;
        display: flex !important;
        align-items: center;
        justify-content: center;
        min-width: 40px;
        min-height: 40px;
    }
    
    .sidebar-toggle-btn-navbar:hover {
        background: var(--primary-dark);
        color: white;
        transform: scale(1.05);
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    }
    
    .sidebar-toggle-btn-navbar:active {
        transform: scale(0.95);
    }
}

/* Fixed Sidebar Toggle Button (for mobile) */
.sidebar-toggle-btn {
    position: fixed;
    top: 50%;
    right: 20px;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    background: var(--primary-color);
    color: white;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    box-shadow: 0 4px 12px rgba(5, 150, 105, 0.3);
    transition: all 0.3s ease;
    z-index: 1030;
}

.sidebar-toggle-btn:hover {
    background: var(--primary-dark);
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 6px 20px rgba(5, 150, 105, 0.4);
}

/* Body State When Sidebar is Open */
body.sidebar-open {
    overflow: hidden;
}

/* Responsive Design for Sidebar */
@media (max-width: 768px) {
    .sidebar-modern {
        width: 100%;
        right: -100%;
    }
    
    .sidebar-toggle-btn {
        top: 20px;
        right: 20px;
        transform: none;
    }
    
    .sidebar-toggle-btn:hover {
        transform: scale(1.1);
    }
    
    .sidebar-cta-bar .cta-content {
        gap: 0.5rem;
    }
    
    .sidebar-cta-bar .cta-text {
        font-size: 0.8rem;
    }
    
    .sidebar-cta-bar .cta-timer {
        font-size: 0.75rem;
    }
    
    .sidebar-cta-bar .cta-btn {
        padding: 0.4rem 0.8rem;
        font-size: 0.7rem;
    }
    
    /* Hide navbar toggle button on mobile */
    .sidebar-toggle-container {
        display: none;
    }
}

@media (max-width: 480px) {
    .sidebar-modern {
        width: 100%;
    }
    
    .sidebar-header {
        padding: 1rem;
    }
    
    .sidebar-cta-bar {
        padding: 0.75rem;
    }
    
    .sidebar-search {
        padding: 1rem;
    }
    
    .sidebar-user-section {
        padding: 1rem;
    }
    
    .sidebar-actions {
        padding: 1rem;
    }
    
    .sidebar-actions .action-btn {
        padding: 0.6rem 0.8rem;
        gap: 0.5rem;
    }
    
    .sidebar-footer {
        padding: 1rem;
    }
    
    .user-info {
        padding: 0.75rem;
    }
    
    .user-avatar {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
    
    .user-name {
        font-size: 0.9rem;
    }
    
    .user-email {
        font-size: 0.8rem;
    }
}

/* Checkout Page Styles */
.progress-steps {
    display: flex;
    justify-content: space-between;
    margin-bottom: 30px;
}

.step {
    display: flex;
    flex-direction: column;
    align-items: center;
    flex: 1;
    position: relative;
}

.step:not(:last-child)::after {
    content: '';
    position: absolute;
    top: 15px;
    left: 50%;
    width: 100%;
    height: 2px;
    background-color: var(--border-color);
    z-index: -1;
}

.step.active:not(:last-child)::after {
    background-color: var(--primary-color);
}

.step-number {
    width: 30px;
    height: 30px;
    border-radius: var(--border-radius-full);
    background-color: var(--border-color);
    color: var(--text-light);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    margin-bottom: 5px;
}

.step.active .step-number {
    background-color: var(--primary-color);
    color: white;
}

.step-title {
    font-size: 12px;
    text-align: center;
    color: var(--text-light);
}

.step.active .step-title {
    color: var(--primary-color);
    font-weight: bold;
}

.checkout-step {
    display: none;
}
.checkout-step.active {
    display: block;
}

.payment-method-card {
    cursor: pointer;
    transition: var(--transition-normal);
}

.payment-method-card:hover {
    transform: translateY(-2px);
}

.payment-method-card.selected .card {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.2rem rgba(5, 150, 105, 0.25);
}

.address-card {
    cursor: pointer;
    transition: var(--transition-normal);
    border: 2px solid transparent;
}

.address-card:hover {
    border-color: var(--primary-color);
}

.address-card.selected {
    border-color: var(--primary-color);
    background-color: var(--light-color);
}

@media (max-width: 768px) {
    .sticky-top {
        position: static !important;
        margin-top: 20px;
    }
}

/* Contact Page Styles */
.contact-page {
    background: var(--secondary-gradient);
    min-height: 100vh;
}

/* Hero Section */
.contact-hero {
    background: var(--primary-gradient);
    padding: 4rem 0;
    position: relative;
    overflow: hidden;
}

.contact-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11 18c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm48 25c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm-43-7c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm63 31c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM34 90c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm56-76c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM12 86c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm28-65c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm23-11c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-6 60c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm29 22c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zM32 63c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm57-13c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-9-21c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM60 91c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM35 41c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM12 60c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2z' fill='%23ffffff' fill-opacity='0.1' fill-rule='evenodd'/%3E%3C/svg%3E");
    pointer-events: none;
}

.contact-title {
    color: white;
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.contact-subtitle {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.2rem;
    font-weight: 400;
    margin-bottom: 0;
    line-height: 1.6;
}

/* Contact Content */
.contact-content {
    padding: 3rem 0;
}

/* Contact Form */
.contact-form-card {
    background: white;
    border-radius: var(--border-radius-lg);
    padding: 2rem;
    box-shadow: var(--shadow-lg);
    margin-bottom: 2rem;
}

.form-title {
    color: var(--dark-color);
    font-weight: 700;
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
}

.form-description {
    color: var(--text-color);
    margin-bottom: 2rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-label {
    color: var(--text-color);
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.form-control, .form-select {
    border: 2px solid var(--border-color);
    border-radius: var(--border-radius-md);
    padding: 0.75rem 1rem;
    transition: var(--transition-normal);
}

.form-control:focus, .form-select:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.25rem rgba(5, 150, 105, 0.1);
}

.form-check-input:checked {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}

.form-check-label {
    color: var(--text-color);
    font-size: 0.9rem;
}

.form-check-label a {
    color: var(--primary-color);
    text-decoration: none;
}

.submit-btn {
    background: var(--primary-gradient);
    border: none;
    border-radius: var(--border-radius-md);
    padding: 1rem 2rem;
    font-weight: 600;
    transition: var(--transition-normal);
    width: 100%;
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(5, 150, 105, 0.4);
}

/* Contact Info Cards */
.contact-info-card,
.quick-contact-card,
.social-media-card {
    background: white;
    border-radius: var(--border-radius-lg);
    padding: 1.5rem;
    margin-bottom: 2rem;
    box-shadow: var(--shadow-lg);
}

.info-title,
.quick-title,
.social-title {
    color: var(--dark-color);
    font-weight: 700;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
}

.contact-info-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-info-item {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.info-icon {
    width: 40px;
    height: 40px;
    background: rgba(5, 150, 105, 0.1);
    border-radius: var(--border-radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    flex-shrink: 0;
}

.info-content h6 {
    color: var(--dark-color);
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.info-content p {
    color: var(--text-color);
    margin-bottom: 0.25rem;
    font-size: 0.9rem;
}

/* Quick Contact */
.quick-contact-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.quick-contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    border-radius: var(--border-radius-md);
    text-decoration: none;
    color: var(--text-color);
    transition: var(--transition-normal);
    border: 2px solid var(--border-color);
}

.quick-contact-item:hover {
    background: rgba(5, 150, 105, 0.1);
    border-color: var(--primary-color);
    color: var(--primary-color);
    transform: translateX(5px);
}

.quick-contact-item.whatsapp:hover {
    background: rgba(37, 211, 102, 0.1);
    border-color: #25d366;
    color: #25d366;
}

.quick-contact-item i {
    font-size: 1.2rem;
    width: 20px;
    text-align: center;
}

/* Social Media */
.social-links {
    display: flex;
    flex-direction: row;
    gap: 1rem;
}

.social-link {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    border-radius: var(--border-radius-md);
    text-decoration: none;
    color: white;
    transition: var(--transition-normal);
}

.social-links-footer {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.social-link.facebook {
    background: #1877f2;
}

.social-link.twitter {
    background: #1da1f2;
}

.social-link.instagram {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
}

.social-link.linkedin {
    background: #0077b5;
}

.social-link.youtube {
    background: #ff0000;
}

.social-link:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.social-link i {
    font-size: 1.2rem;
    width: 20px;
    text-align: center;
    color: white;
}

/* Responsive Design */
@media (max-width: 768px) {
    .contact-title {
        font-size: 2rem;
    }

    .contact-subtitle {
        font-size: 1rem;
    }

    .contact-form-card {
        padding: 1.5rem;
    }

    .contact-info-card,
    .quick-contact-card,
    .social-media-card {
        padding: 1rem;
    }
}

/* Blog Page Styles */
.blog-page {
    background: var(--secondary-gradient);
    min-height: 100vh;
}

/* Hero Section */
.blog-hero {
    background: var(--primary-gradient);
    padding: 4rem 0;
    position: relative;
    overflow: hidden;
}

.blog-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11 18c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm48 25c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm-43-7c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm63 31c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM34 90c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm56-76c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM12 86c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm28-65c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm23-11c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-6 60c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm29 22c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zM32 63c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm57-13c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-9-21c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM60 91c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM35 41c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM12 60c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2z' fill='%23ffffff' fill-opacity='0.1' fill-rule='evenodd'/%3E%3C/svg%3E");
    pointer-events: none;
}

.blog-title {
    color: white;
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.blog-subtitle {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.2rem;
    font-weight: 400;
    margin-bottom: 0;
    line-height: 1.6;
}

/* Blog Content */
.blog-content {
    padding: 3rem 0;
}

/* Post Cards */
.post-card {
    background: white;
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    transition: var(--transition-normal);
    height: 100%;
}

.post-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.post-card.featured {
    margin-bottom: 3rem;
}

.post-image {
    position: relative;
    overflow: hidden;
}

.post-image img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: var(--transition-normal);
}

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

.post-category {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background: var(--primary-color);
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: var(--border-radius-lg);
    font-size: 0.8rem;
    font-weight: 600;
}

.post-content {
    padding: 1.5rem;
}

.post-meta {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
    font-size: 0.85rem;
    color: var(--text-color);
}

.post-meta span {
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.post-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 1rem;
    line-height: 1.3;
}

.post-card.featured .post-title {
    font-size: 2rem;
}

.post-excerpt {
    color: var(--text-color);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.read-more-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition-normal);
}

.read-more-btn:hover {
    color: var(--primary-dark);
    transform: translateX(5px);
}

/* Sidebar */
.sidebar-widget {
    background: white;
    border-radius: var(--border-radius-lg);
    padding: 1.5rem;
    margin-bottom: 2rem;
    box-shadow: var(--shadow-lg);
}

.widget-title {
    color: var(--dark-color);
    font-weight: 700;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.blog-search-form .input-group {
    box-shadow: var(--shadow-md);
    border-radius: var(--border-radius-md);
    overflow: hidden;
}

.blog-search-form .form-control {
    border: none;
    padding: 0.75rem 1rem;
}

.blog-search-form .btn {
    border: none;
    padding: 0.75rem 1rem;
}

.category-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.category-list li {
    margin-bottom: 0.75rem;
}

.category-list a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: var(--text-color);
    text-decoration: none;
    padding: 0.75rem;
    border-radius: var(--border-radius-sm);
    transition: var(--transition-normal);
}

.category-list a:hover {
    background: rgba(5, 150, 105, 0.1);
    color: var(--primary-color);
    transform: translateX(5px);
}

.category-list span {
    background: var(--border-color);
    color: var(--text-color);
    padding: 0.25rem 0.5rem;
    border-radius: var(--border-radius-sm);
    font-size: 0.8rem;
}

.popular-posts {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.popular-post {
    display: flex;
    gap: 1rem;
    padding: 1rem;
    border-radius: var(--border-radius-sm);
    transition: var(--transition-normal);
}

.popular-post:hover {
    background: rgba(5, 150, 105, 0.05);
}

.popular-post img {
    width: 80px;
    height: 60px;
    object-fit: cover;
    border-radius: var(--border-radius-sm);
}

.post-info h6 {
    margin-bottom: 0.25rem;
    font-size: 0.9rem;
    line-height: 1.3;
}

.post-info h6 a {
    color: var(--dark-color);
    text-decoration: none;
}

.post-info h6 a:hover {
    color: var(--primary-color);
}

.post-info .post-date {
    font-size: 0.8rem;
    color: var(--text-color);
}

.widget-description {
    color: var(--text-color);
    margin-bottom: 1rem;
}

/* Pagination */
.pagination-wrapper {
    margin-top: 3rem;
}

.pagination .page-link {
    color: var(--primary-color);
    border: 1px solid var(--border-color);
    margin: 0 0.25rem;
    border-radius: var(--border-radius-sm);
}

.pagination .page-item.active .page-link {
    background: var(--primary-color);
    border-color: var(--primary-color);
    color: #000;
}

/* Responsive Design */
@media (max-width: 768px) {
    .blog-title {
        font-size: 2rem;
    }

    .blog-subtitle {
        font-size: 1rem;
    }

    .post-meta {
        flex-direction: column;
        gap: 0.5rem;
    }

    .post-title {
        font-size: 1.25rem;
    }

    .post-card.featured .post-title {
        font-size: 1.5rem;
    }
}

/* Login Page Styles */
body.login-page {
    background: var(--secondary-gradient);
    min-height: 100vh;
    font-family: 'Inter', sans-serif;
    position: relative;
    overflow-x: hidden;
}

body.login-page .login-container {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    padding: 20px 0;
    margin: 0 auto;
    max-width: 450px;
    width: 100%;
}

body.login-page::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23059669' fill-opacity='0.03'%3E%3Ccircle cx='30' cy='30' r='2'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    pointer-events: none;
}

.login-container {
    position: relative;
    z-index: 2;
}

.login-card {
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: var(--border-radius-xl);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
    overflow: hidden;
    position: relative;
    animation: slideInUp 0.6s ease-out;
    max-width: 450px;
    width: 100%;
}

.login-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--primary-light), var(--primary-lighter));
}

.login-header {
    background: var(--primary-gradient);
    color: white;
    padding: 2.5rem 2rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.login-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11 18c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm48 25c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm-43-7c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm63 31c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM34 90c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm56-76c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM12 86c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm28-65c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm23-11c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-6 60c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm29 22c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zM32 63c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm57-13c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-9-21c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM60 91c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM35 41c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM12 60c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2z' fill='%23ffffff' fill-opacity='0.1' fill-rule='evenodd'/%3E%3C/svg%3E");
    pointer-events: none;
}

.login-header-content {
    position: relative;
    z-index: 2;
}

.login-logo {
    margin-bottom: 1rem;
    text-align: center;
}

.logo-image {
    max-width: 350px;
    height: auto;
    filter: brightness(0) invert(1);
    transition: var(--transition-normal);
}

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

.login-header p {
    opacity: 0.9;
    font-size: 0.95rem;
    margin: 0;
}

.login-body {
    padding: 2.5rem 2rem;
}

.login-body .alert {
    border-radius: var(--border-radius-md);
    border: none;
    font-weight: 500;
    margin-bottom: 1.5rem;
}

.login-body .alert-danger {
    background: rgba(239, 68, 68, 0.1);
    color: #dc2626;
    border-left: 4px solid #dc2626;
}

.login-body .alert-success {
    background: rgba(34, 197, 94, 0.1);
    color: #16a34a;
    border-left: 4px solid #16a34a;
}

.form-floating {
    margin-bottom: 1.5rem;
    position: relative;
}

.form-floating .form-control {
    border: 2px solid var(--border-color);
    border-radius: var(--border-radius-md);
    padding: 1rem 1rem;
    font-size: 1rem;
    transition: var(--transition-normal);
    background: rgba(255, 255, 255, 0.9);
    height: auto;
    min-height: 60px;
}

.form-floating .form-control[type="password"] {
    padding-right: 3rem;
}

.form-floating .form-control:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
    background: white;
    outline: none;
}
.form-floating label {
    padding: 1rem 1rem;
    color: var(--text-light);
    font-weight: 500;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 100%;
    display: flex;
    align-items: center;
    pointer-events: none;
    transition: var(--transition-normal);
    transform-origin: left top;
    z-index: 1;
}

.form-floating .form-control:focus ~ label,
.form-floating .form-control:not(:placeholder-shown) ~ label {
    transform: scale(0.85) translateY(-1.5rem);
    color: var(--primary-color);
    font-weight: 600;
    background: transparent;
    padding: 0 0.5rem;
    height: auto;
    border-radius: var(--border-radius-sm);
}

.password-toggle-container {
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
}

.password-toggle-btn {
    background: none;
    border: none;
    color: var(--text-light);
    padding: 8px;
    border-radius: var(--border-radius-sm);
    cursor: pointer;
    transition: var(--transition-normal);
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
}

.password-toggle-btn:hover {
    background: rgba(37, 99, 235, 0.1);
    color: var(--primary-color);
}

.password-toggle-btn:focus {
    outline: none;
    box-shadow: 0 0 0 2px rgba(37, 99, 235, 0.2);
}

.btn-login {
    background: var(--primary-gradient);
    border: none;
    border-radius: var(--border-radius-md);
    padding: 1rem 2rem;
    font-weight: 600;
    color: white;
    transition: var(--transition-normal);
    min-height: 60px;
    font-size: 1.1rem;
    letter-spacing: 0.5px;
}

.btn-login:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(37, 99, 235, 0.4);
    color: white;
    background: var(--primary-gradient);
}

.btn-register {
    background: rgba(37, 99, 235, 0.1);
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
    border-radius: var(--border-radius-md);
    padding: 0.75rem 1.5rem;
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition-normal);
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1rem;
}

.btn-register:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(37, 99, 235, 0.3);
}

/* Login Footer Styles */
.login-footer {
    padding: 2rem;
    background: rgba(248, 250, 252, 0.9);
    border-top: 1px solid var(--border-color);
    position: relative;
}

.footer-divider {
    position: relative;
    text-align: center;
    margin-bottom: 2rem;
}

.footer-divider::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 1px;
    background: var(--border-color);
    z-index: 1;
}

.divider-text {
    background: rgba(248, 250, 252, 0.8);
    padding: 0 1rem;
    color: var(--text-light);
    font-size: 0.9rem;
    font-weight: 500;
    position: relative;
    z-index: 2;
}

.footer-actions {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.action-group {
    text-align: center;
}

.action-label {
    color: var(--text-color);
    font-size: 0.95rem;
    font-weight: 500;
    margin-bottom: 0.75rem;
}

.btn-register {
    background: rgba(37, 99, 235, 0.1);
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
    border-radius: var(--border-radius-md);
    padding: 0.875rem 1.75rem;
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition-normal);
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1rem;
    min-width: 180px;
    justify-content: center;
}

.btn-back-home {
    background: rgba(71, 85, 105, 0.1);
    color: var(--text-color);
    border: 2px solid var(--border-color);
    border-radius: var(--border-radius-md);
    padding: 0.875rem 1.75rem;
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition-normal);
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1rem;
    min-width: 180px;
    justify-content: center;
}

.btn-back-home:hover {
    background: rgba(71, 85, 105, 0.15);
    color: var(--dark-color);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(71, 85, 105, 0.2);
}

/* Footer linkleri kaldırıldı - sadece ana aksiyonlar bırakıldı */

/* Eski back-home stilleri kaldırıldı - yeni btn-back-home kullanılıyor */

/* Register Page Styles */
body.register-page {
    background: var(--secondary-gradient);
    min-height: 100vh;
    font-family: 'Inter', sans-serif;
    position: relative;
    overflow-x: hidden;
}

body.register-page .register-container {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    padding: 20px 0;
    margin: 0 auto;
    max-width: 600px;
    width: 100%;
}

body.register-page::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23059669' fill-opacity='0.03'%3E%3Ccircle cx='30' cy='30' r='2'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    pointer-events: none;
}

.register-container {
    position: relative;
    z-index: 2;
}

.register-card {
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: var(--border-radius-xl);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
    overflow: hidden;
    position: relative;
    animation: slideInUp 0.6s ease-out;
    max-width: 600px;
    width: 100%;
}

.register-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--primary-light), var(--primary-lighter));
}

.register-header {
    background: var(--primary-gradient);
    color: white;
    padding: 2.5rem 2rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.register-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11 18c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm48 25c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm-43-7c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm63 31c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM34 90c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm56-76c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM12 86c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm28-65c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm23-11c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-6 60c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm29 22c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zM32 63c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm57-13c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-9-21c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM60 91c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM35 41c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM12 60c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2z' fill='%23ffffff' fill-opacity='0.1' fill-rule='evenodd'/%3E%3C/svg%3E");
    pointer-events: none;
}

.register-header-content {
    position: relative;
    z-index: 2;
}

.register-logo {
    margin-bottom: 1rem;
    text-align: center;
}

.register-header p {
    opacity: 0.9;
    font-size: 0.95rem;
    margin: 0;
}

.register-body {
    padding: 2.5rem 2rem;
}

.register-body .alert {
    border-radius: var(--border-radius-md);
    border: none;
    font-weight: 500;
    margin-bottom: 1.5rem;
}

.register-body .alert-danger {
    background: rgba(239, 68, 68, 0.1);
    color: #dc2626;
    border-left: 4px solid #dc2626;
}

.register-body .alert-success {
    background: rgba(34, 197, 94, 0.1);
    color: #16a34a;
    border-left: 4px solid #16a34a;
}

.btn-register-submit {
    background: var(--primary-gradient);
    border: none;
    border-radius: var(--border-radius-md);
    padding: 1rem 2rem;
    font-weight: 600;
    color: white;
    transition: var(--transition-normal);
    min-height: 60px;
    font-size: 1.1rem;
    letter-spacing: 0.5px;
}

.btn-register-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(37, 99, 235, 0.4);
    color: white;
    background: var(--primary-gradient);
}

.btn-login-link {
    background: rgba(37, 99, 235, 0.1);
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
    border-radius: var(--border-radius-md);
    padding: 0.875rem 1.75rem;
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition-normal);
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1rem;
    min-width: 180px;
    justify-content: center;
}

.btn-login-link:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(37, 99, 235, 0.3);
}

.register-footer {
    padding: 2rem;
    background: rgba(248, 250, 252, 0.9);
    border-top: 1px solid var(--border-color);
    position: relative;
}

/* Footer styling for login/register pages */
body.login-page .modern-footer,
body.register-page .modern-footer {
    margin-top: 0;
    position: relative;
    z-index: 1;
    width: 100%;
    left: 0;
    right: 0;
}

/* Remove dropdown toggle arrow */
.dropdown-toggle::after {
    display: none !important;
}

/* Header User Dropdown Styles */
.user-account .dropdown-menu {
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: var(--border-radius-xl);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
    padding: 0.75rem 0;
    min-width: 200px;
    margin-top: 0.5rem;
    overflow: hidden;
    animation: slideInDown 0.3s ease-out;
}

.user-account .dropdown-menu::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-color), var(--primary-light), var(--primary-lighter));
}

.user-account .dropdown-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.875rem 1.25rem;
    color: var(--text-color);
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 0.9rem;
    font-weight: 500;
    position: relative;
    overflow: hidden;
}

.user-account .dropdown-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(5, 150, 105, 0.1), transparent);
    transition: left 0.5s ease;
}

.user-account .dropdown-item:hover::before {
    left: 100%;
}

.user-account .dropdown-item:hover {
    background: rgba(5, 150, 105, 0.08);
    color: var(--primary-color);
    transform: translateX(8px);
    padding-left: 1.5rem;
}

.user-account .dropdown-item i {
    width: 16px;
    text-align: center;
    font-size: 0.85rem;
    color: var(--primary-color);
    transition: all 0.3s ease;
}

.user-account .dropdown-item:hover i {
    transform: scale(1.2);
    color: var(--primary-color);
}

.user-account .dropdown-divider {
    margin: 0.5rem 0;
    border-color: rgba(226, 232, 240, 0.6);
}

.user-account .logout-link:hover {
    background: rgba(239, 68, 68, 0.1) !important;
    color: #ef4444 !important;
}

.user-account .logout-link:hover i {
    color: #ef4444 !important;
}

@keyframes slideInDown {
    from {
        opacity: 0;
        transform: translateY(-10px) scale(0.95);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

/* Modern Modal Styles */
.modal-content {
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: var(--border-radius-xl);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
    overflow: hidden;
    position: relative;
    animation: slideInUp 0.4s ease-out;
}

.modal-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--primary-light), var(--primary-lighter));
}

.modal-header {
    background: var(--primary-gradient);
    color: white;
    border: none;
    padding: 1.5rem 2rem;
    position: relative;
    overflow: hidden;
}

.modal-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11 18c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm48 25c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm-43-7c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm63 31c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM34 90c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm56-76c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm12 86c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm28-65c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm23-11c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-6 60c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm29 22c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zM32 63c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm57-13c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-9-21c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM60 91c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM35 41c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM12 60c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2z' fill='%23ffffff' fill-opacity='0.1' fill-rule='evenodd'/%3E%3C/svg%3E");
    pointer-events: none;
}

.modal-title {
    font-weight: 700;
    font-size: 1.5rem;
    margin: 0;
    position: relative;
    z-index: 2;
}

.btn-close {
    background: rgba(255, 255, 255, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: var(--border-radius-full);
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-normal);
    position: relative;
    z-index: 2;
}

.btn-close:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: scale(1.1);
}

.btn-close::before,
.btn-close::after {
    content: '';
    position: absolute;
    background: white;
    height: 2px;
    width: 16px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.btn-close::before {
    transform: translate(-50%, -50%) rotate(45deg);
}

.btn-close::after {
    transform: translate(-50%, -50%) rotate(-45deg);
}

.modal-body {
    padding: 2rem;
    background: rgba(255, 255, 255, 0.95);
}

.modal-body h5 {
    color: var(--primary-color);
    font-weight: 700;
    font-size: 1.25rem;
    margin-bottom: 1rem;
    border-bottom: 2px solid var(--primary-color);
    padding-bottom: 0.5rem;
}

.modal-body h6 {
    color: var(--dark-color);
    font-weight: 600;
    font-size: 1.1rem;
    margin: 1.5rem 0 0.75rem 0;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.modal-body h6::before {
    content: '';
    width: 4px;
    height: 20px;
    background: var(--primary-color);
    border-radius: 2px;
}

.modal-body p {
    color: var(--text-color);
    line-height: 1.7;
    margin-bottom: 1rem;
    font-size: 0.95rem;
}

.modal-footer {
    background: rgba(248, 250, 252, 0.9);
    border-top: 1px solid var(--border-color);
    padding: 1.5rem 2rem;
}

.modal-footer .btn {
    border-radius: var(--border-radius-md);
    font-weight: 600;
    padding: 0.75rem 1.5rem;
    transition: var(--transition-normal);
}

.modal-footer .btn-secondary {
    background: rgba(71, 85, 105, 0.1);
    color: var(--text-color);
    border: 2px solid var(--border-color);
}

.modal-footer .btn-secondary:hover {
    background: rgba(71, 85, 105, 0.15);
    transform: translateY(-1px);
    box-shadow: 0 4px 15px rgba(71, 85, 105, 0.2);
}

.modal-footer .btn-primary {
    background: var(--primary-gradient);
    border: none;
    color: white;
}

.modal-footer .btn-primary:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 15px rgba(37, 99, 235, 0.3);
}

/* Modal Animation */
@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Modal */
@media (max-width: 768px) {
    .modal-content {
        margin: 10px;
        border-radius: var(--border-radius-lg);
    }
    
    .modal-header {
        padding: 1.25rem 1.5rem;
    }
    
    .modal-body {
        padding: 1.5rem;
    }
    
    .modal-footer {
        padding: 1.25rem 1.5rem;
    }
    
    .modal-title {
        font-size: 1.25rem;
    }
}

/* Container positioning fixes */
body.login-page,
body.register-page {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

body.login-page .login-container,
body.register-page .register-container {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

/* Responsive Design for Register */
@media (max-width: 768px) {
    /* Register container padding handled in main responsive section */

    .register-header {
        padding: 2rem 1.5rem;
    }

    .register-body {
        padding: 2rem 1.5rem;
    }

    .register-footer {
        padding: 1.5rem;
    }

    .logo-image {
        max-width: 220px;
    }
}

@media (max-width: 480px) {
    /* Register container padding handled in main responsive section */

    .register-header {
        padding: 1.5rem 1rem;
    }

    .register-body {
        padding: 1.5rem 1rem;
    }

    .register-footer {
        padding: 1.5rem 1rem;
    }

    .logo-image {
        max-width: 180px;
    }

    .btn-register-submit,
    .btn-login-link,
    .btn-back-home {
        min-width: 160px;
        padding: 0.75rem 1.5rem;
        font-size: 0.95rem;
    }
}

.loading-spinner {
    display: inline-block;
    width: 20px;
    height: 20px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: var(--border-radius-full);
    border-top-color: white;
    animation: spin 1s ease-in-out infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    body.login-page .login-container,
    body.register-page .register-container {
        padding: 15px;
    }

    .login-header {
        padding: 2rem 1.5rem;
    }

    .login-body {
        padding: 2rem 1.5rem;
    }

    .login-footer {
        padding: 1.5rem;
    }

    .logo-image {
        max-width: 220px;
    }
}
@media (max-width: 480px) {
    body.login-page .login-container,
    body.register-page .register-container {
        padding: 10px;
    }

    .login-header {
        padding: 1.5rem 1rem;
    }

    .login-body {
        padding: 1.5rem 1rem;
    }

    .logo-image {
        max-width: 180px;
    }

    .login-footer {
        padding: 1.5rem 1rem;
    }

    .footer-actions {
        gap: 1rem;
    }

    .btn-register,
    .btn-back-home {
        min-width: 160px;
        padding: 0.75rem 1.5rem;
        font-size: 0.95rem;
    }
}

/* Register Page Styles */
body.register-page {
    background-color: var(--light-color);
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 40px;
}

.register-container {
    max-width: 650px;
    width: 100%;
    padding: 20px;
}

.register-container .card {
    border: none;
    border-radius: var(--border-radius-md);
    box-shadow: var(--shadow-lg);
}

.register-container .card-header {
    background-color: var(--primary-color);
    color: white;
    border-radius: var(--border-radius-md) var(--border-radius-md) 0 0 !important;
    padding: 1.5rem;
    text-align: center;
}

.register-container .btn-register {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}

.register-container .btn-register:hover {
    background-color: var(--primary-dark);
    border-color: var(--primary-dark);
}

.register-container .alert {
    margin-bottom: 0;
    display: none;
}

/* Orders Page Styles */
.rating {
    display: flex;
    flex-direction: row-reverse;
    justify-content: flex-end;
}

.rating input {
    display: none;
}

.rating label {
    cursor: pointer;
    font-size: 30px;
    color: #ddd;
    margin: 0 2px;
}

.rating input:checked ~ label {
    color: #ffd700;
}

.rating label:hover,
.rating label:hover ~ label {
    color: #ffd700;
}

.product-rating {
    color: #ffd700;
    font-size: 20px;
}

/* Customer Service Page Styles */
.modern-customer-service {
    background: var(--secondary-gradient);
    min-height: 100vh;
}

/* Hero Section */
.hero-section {
    background: var(--primary-gradient);
    padding: 4rem 0;
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11 18c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm48 25c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm-43-7c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm63 31c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM34 90c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm56-76c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm12 86c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm28-65c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm23-11c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-6 60c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm29 22c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zM32 63c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm57-13c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-9-21c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM60 91c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM35 41c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM12 60c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2z' fill='%23ffffff' fill-opacity='0.1' fill-rule='evenodd'/%3E%3C/svg%3E");
    animation: float 6s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero-icon {
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: var(--border-radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.hero-icon i {
    font-size: 2.5rem;
    color: white;
}

.hero-title {
    color: white;
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-subtitle {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.2rem;
    font-weight: 400;
    margin-bottom: 0;
    line-height: 1.6;
}

/* Tab Section */
.tab-section {
    padding: 3rem 0;
    background: white;
    margin-top: -2rem;
    border-radius: 2rem 2rem 0 0;
    position: relative;
    z-index: 3;
    box-shadow: 0 -10px 30px rgba(0, 0, 0, 0.1);
}

/* Modern Tabs */
.modern-tabs {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 3rem;
}

.tab-navigation {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-bottom: 3rem;
    width: 250px;
    border-right: 2px solid #e5e7eb;
    padding-right: 2rem;
}

.tab-btn {
    background: transparent;
    border: none;
    border-radius: 8px;
    padding: 1rem 1.5rem;
    color: #6b7280;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    white-space: nowrap;
    position: relative;
    border-left: 3px solid transparent;
    text-align: left;
    width: 100%;
}

.tab-btn:hover {
    background: rgba(59, 130, 246, 0.1);
    color: #3b82f6;
    border-left-color: #3b82f6;
    transform: none;
}

.tab-btn.active {
    background: rgba(59, 130, 246, 0.1);
    color: #3b82f6;
    border-left-color: #3b82f6;
    font-weight: 700;
}

/* Payment Page Styles */
.payment-status {
    display: inline-block;
    padding: 5px 15px;
    border-radius: var(--border-radius-lg);
    font-size: 12px;
    font-weight: bold;
}

.status-beklemede {
    background-color: #fff3cd;
    color: #856404;
}

.paytr-iframe {
    width: 100%;
    min-height: 400px;
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius-sm);
}

.payment-error {
    background-color: #f8d7da;
    border: 1px solid #f5c6cb;
    color: #721c24;
    padding: 15px;
    border-radius: var(--border-radius-sm);
    margin: 20px 0;
}

/* Bank Transfer Styles */
.bank-account-card {
    border: 2px solid var(--border-color);
    border-radius: var(--border-radius-md);
    padding: 20px;
    margin-bottom: 15px;
    transition: var(--transition-normal);
}

.bank-account-card:hover {
    border-color: var(--primary-color);
    box-shadow: 0 0 10px rgba(5, 150, 105, 0.1);
}

.bank-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
}

.bank-name {
    font-weight: bold;
    color: var(--primary-color);
}

.account-details {
    background-color: var(--light-color);
    padding: 15px;
    border-radius: var(--border-radius-sm);
    margin-top: 10px;
}

.copy-btn {
    cursor: pointer;
    color: var(--primary-color);
    transition: var(--transition-normal);
}

.copy-btn:hover {
    color: var(--primary-dark);
}

/* Modern Cart Widget */
.modern-cart-widget {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: var(--border-radius-xl);
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
}

.modern-cart-widget:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

.cart-widget-header {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 1rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: white;
    font-weight: 600;
    font-size: 0.95rem;
}

.cart-widget-header i {
    font-size: 1.1rem;
    opacity: 0.9;
}

.cart-widget-content {
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.05);
}

.cart-items-preview {
    min-height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cart-widget-footer {
    padding: 1rem 1.5rem;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
}

.btn-cart-view {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    width: 100%;
    padding: 0.75rem 1rem;
    background: rgba(255, 255, 255, 0.2);
    color: white;
    text-decoration: none;
    border-radius: var(--border-radius-md);
    font-weight: 500;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.btn-cart-view:hover {
    background: rgba(255, 255, 255, 0.3);
    color: white;
    transform: translateY(-1px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.btn-cart-view i {
    font-size: 0.9rem;
    transition: transform 0.3s ease;
}

.btn-cart-view:hover i {
    transform: translateX(3px);
}

.order-status {

/* Modern Blog Detail Page Styles */
.blog-detail-modern {
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
    min-height: 100vh;
}

.blog-hero-modern {
    background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
    padding: 4rem 0 3rem;
    color: white;
    position: relative;
    overflow: hidden;
}

.blog-hero-modern::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="50" cy="50" r="1" fill="white" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.3;
}

.breadcrumb-modern {
    margin-bottom: 2rem;
}

.breadcrumb-modern .breadcrumb {
    background: transparent;
    padding: 0;
    margin: 0;
}

.breadcrumb-modern .breadcrumb-item {
    display: flex;
    align-items: center;
}

.breadcrumb-modern .breadcrumb-item a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.breadcrumb-modern .breadcrumb-item a:hover {
    color: white;
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-1px);
}

.breadcrumb-modern .breadcrumb-item.active {
    color: rgba(255, 255, 255, 0.6);
}

.breadcrumb-modern .breadcrumb-item i {
    font-size: 0.875rem;
}

.article-header-modern {
    text-align: center;
    position: relative;
    z-index: 2;
}

.category-badge-modern {
    display: inline-block;
    background: rgba(255, 255, 255, 0.2);
    color: white;
    padding: 0.75rem 2rem;
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 2rem;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    transition: all 0.3s ease;
}

.category-badge-modern:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: translateY(-2px);
}

.category-badge-modern i {
    margin-right: 0.5rem;
}

.article-title-modern {
    font-size: 3.5rem;
    font-weight: 800;
    color: white;
    margin-bottom: 2.5rem;
    line-height: 1.1;
    text-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    letter-spacing: -0.02em;
}

.article-meta-modern {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin-bottom: 0;
    max-width: 800px;
    margin: 0 auto;
}

.meta-item-modern {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: rgba(255, 255, 255, 0.1);
    padding: 1rem 1.5rem;
    border-radius: 12px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.meta-item-modern:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

.meta-icon {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1rem;
}

.meta-content {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.meta-label {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.75rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.meta-value {
    color: white;
    font-size: 0.9rem;
    font-weight: 600;
}

.blog-content-modern {
    padding: 4rem 0;
}

.article-modern {
    background: white;
    border-radius: 24px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    margin-bottom: 3rem;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.article-image-modern {
    width: 100%;
    height: 450px;
    overflow: hidden;
    position: relative;
}

.article-image-modern img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s ease;
}

.article-image-modern:hover img {
    transform: scale(1.08);
}

.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.1) 0%, rgba(29, 78, 216, 0.1) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.article-image-modern:hover .image-overlay {
    opacity: 1;
}

.overlay-content {
    color: white;
    font-size: 2rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.article-content-modern {
    padding: 3.5rem;
    line-height: 1.8;
    color: #374151;
    font-size: 1.125rem;
}

.article-content-modern h3 {
    color: #1f2937;
    font-size: 1.875rem;
    font-weight: 700;
    margin: 3rem 0 1.5rem;
    position: relative;
    padding-left: 2rem;
    letter-spacing: -0.01em;
}

.article-content-modern h3::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 5px;
    background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
    border-radius: 3px;
    box-shadow: 0 2px 4px rgba(37, 99, 235, 0.3);
}

.article-content-modern p {
    margin-bottom: 1.75rem;
    text-align: justify;
    color: #4b5563;
    font-size: 1.1rem;
    line-height: 1.75;
}

.article-footer-modern {
    padding: 0 3.5rem 3.5rem;
    border-top: 1px solid #e5e7eb;
}

.tags-section-modern,
.share-section-modern {
    margin-bottom: 2.5rem;
}

.section-title-modern {
    color: #1f2937;
    font-weight: 700;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    font-size: 1.25rem;
    letter-spacing: -0.01em;
}

.section-title-modern i {
    margin-right: 0.75rem;
    color: #2563eb;
    font-size: 1.1rem;
}

.tags-container-modern {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.tag-modern {
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
    color: #374151;
    padding: 0.75rem 1.5rem;
    border-radius: 30px;
    text-decoration: none;
    font-size: 0.875rem;
    font-weight: 600;
    transition: all 0.3s ease;
    border: 2px solid #e5e7eb;
    position: relative;
    overflow: hidden;
}

.tag-modern::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
    transition: left 0.3s ease;
    z-index: -1;
}

.tag-modern:hover {
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(37, 99, 235, 0.3);
    border-color: #2563eb;
}

.tag-modern:hover::before {
    left: 0;
}

.share-buttons-modern {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.share-btn-modern {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1.5rem;
    border-radius: 12px;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 0.9rem;
    font-weight: 600;
    position: relative;
    overflow: hidden;
    min-width: 140px;
    justify-content: center;
}

.share-btn-modern::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: inherit;
    transition: transform 0.3s ease;
}

.share-btn-modern:hover::before {
    transform: scale(1.05);
}

.share-btn-modern.facebook {
    background: linear-gradient(135deg, #1877f2 0%, #166fe5 100%);
}

.share-btn-modern.twitter {
    background: linear-gradient(135deg, #1da1f2 0%, #1a91da 100%);
}

.share-btn-modern.linkedin {
    background: linear-gradient(135deg, #0077b5 0%, #006097 100%);
}

.share-btn-modern.whatsapp {
    background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
}

.share-btn-modern:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.share-btn-modern i {
    position: relative;
    z-index: 1;
    font-size: 1rem;
}

.share-btn-modern span {
    position: relative;
    z-index: 1;
}

.author-section-modern {
    margin-top: 2.5rem;
}
.author-card-modern {
    display: flex;
    align-items: center;
    padding: 2.5rem;
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
    border-radius: 16px;
    border: 1px solid #e5e7eb;
    transition: all 0.3s ease;
}

.author-card-modern:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.author-avatar-modern {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    overflow: hidden;
    margin-right: 2rem;
    flex-shrink: 0;
    border: 4px solid white;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
}

.author-card-modern:hover .author-avatar-modern {
    transform: scale(1.05);
}

.author-avatar-modern img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.author-info-modern {
    flex: 1;
}

.author-name {
    color: #1f2937;
    font-weight: 700;
    margin-bottom: 0.75rem;
    font-size: 1.25rem;
    letter-spacing: -0.01em;
}

.author-bio {
    color: #6b7280;
    margin: 0 0 1rem 0;
    line-height: 1.6;
    font-size: 0.95rem;
}

.author-social {
    display: flex;
    gap: 1rem;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: white;
    color: #6b7280;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 2px solid #e5e7eb;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.social-link:hover {
    background: #2563eb;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
}

.sidebar-modern {
    position: sticky;
    top: 2rem;
}

.widget-modern {
    background: white;
    border-radius: 20px;
    padding: 2.5rem;
    margin-bottom: 2rem;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.06);
    border: 1px solid #f3f4f6;
    transition: all 0.3s ease;
}

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

.widget-header-modern {
    margin-bottom: 2rem;
}

.widget-title-modern {
    color: #1f2937;
    font-weight: 700;
    margin-bottom: 0;
    display: flex;
    align-items: center;
    font-size: 1.25rem;
    letter-spacing: -0.01em;
}

.widget-title-modern i {
    margin-right: 0.75rem;
    color: #2563eb;
    font-size: 1.1rem;
}

.search-form-modern .input-group-modern {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    border: 2px solid #e5e7eb;
    transition: all 0.3s ease;
}

.search-form-modern .input-group-modern:focus-within {
    border-color: #2563eb;
    box-shadow: 0 4px 15px rgba(37, 99, 235, 0.2);
}

.form-control-modern {
    border: none;
    padding: 1rem 1.25rem;
    font-size: 1rem;
    background: transparent;
    color: #374151;
}

.form-control-modern:focus {
    outline: none;
    box-shadow: none;
}

.btn-search-modern {
    background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
    border: none;
    padding: 1rem 1.25rem;
    color: white;
    transition: all 0.3s ease;
    font-size: 1rem;
}

.btn-search-modern:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
}

.category-list-modern {
    list-style: none;
    padding: 0;
    margin: 0;
}

.category-list-modern li {
    margin-bottom: 1rem;
}

.category-link-modern {
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: #374151;
    text-decoration: none;
    padding: 1rem 1.25rem;
    border-radius: 12px;
    transition: all 0.3s ease;
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
    border: 2px solid #e5e7eb;
    position: relative;
    overflow: hidden;
}

.category-link-modern::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
    transition: left 0.3s ease;
    z-index: -1;
}

.category-link-modern:hover {
    color: white;
    transform: translateX(8px);
    box-shadow: 0 8px 25px rgba(37, 99, 235, 0.3);
    border-color: #2563eb;
}

.category-link-modern:hover::before {
    left: 0;
}

.category-icon {
    width: 40px;
    height: 40px;
    background: rgba(37, 99, 235, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #2563eb;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.category-link-modern:hover .category-icon {
    background: rgba(255, 255, 255, 0.2);
    color: white;
}

.category-info {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex: 1;
    margin-left: 1rem;
}

.category-name {
    font-weight: 600;
    font-size: 0.95rem;
}

.category-count {
    background: rgba(37, 99, 235, 0.1);
    color: #2563eb;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

.category-link-modern:hover .category-count {
    background: rgba(255, 255, 255, 0.2);
    color: white;
}

.related-posts-modern,
.popular-posts-modern {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.related-post-modern,
.popular-post-modern {
    display: flex;
    gap: 1.25rem;
    padding: 1.25rem;
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
    border-radius: 16px;
    transition: all 0.3s ease;
    border: 2px solid #e5e7eb;
    position: relative;
    overflow: hidden;
}

.related-post-modern::before,
.popular-post-modern::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
    transition: left 0.3s ease;
    z-index: -1;
}

.related-post-modern:hover,
.popular-post-modern:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(37, 99, 235, 0.15);
    border-color: #2563eb;
}

.related-post-modern:hover::before,
.popular-post-modern:hover::before {
    left: 0;
}

.related-post-image-modern,
.popular-post-image-modern {
    width: 90px;
    height: 70px;
    border-radius: 12px;
    overflow: hidden;
    flex-shrink: 0;
    border: 2px solid #e5e7eb;
    transition: all 0.3s ease;
}

.related-post-modern:hover .related-post-image-modern,
.popular-post-modern:hover .popular-post-image-modern {
    border-color: white;
    transform: scale(1.05);
}

.related-post-image-modern img,
.popular-post-image-modern img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.related-post-content-modern,
.popular-post-content-modern {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.related-post-title,
.popular-post-title {
    margin: 0 0 0.75rem;
    font-size: 0.95rem;
    line-height: 1.4;
    font-weight: 700;
    letter-spacing: -0.01em;
}

.related-post-title a,
.popular-post-title a {
    color: #1f2937;
    text-decoration: none;
    transition: color 0.3s ease;
}

.related-post-modern:hover .related-post-title a,
.popular-post-modern:hover .popular-post-title a {
    color: white;
}

.related-post-meta,
.popular-post-meta {
    display: flex;
    gap: 1rem;
    font-size: 0.8rem;
    color: #6b7280;
    transition: color 0.3s ease;
}

.related-post-modern:hover .related-post-meta,
.popular-post-modern:hover .popular-post-meta {
    color: rgba(255, 255, 255, 0.8);
}

.post-date,
.post-category,
.post-views {
    font-weight: 500;
}

.newsletter-description {
    color: #6b7280;
    margin-bottom: 1.5rem;
    line-height: 1.6;
    font-size: 0.95rem;
}

.newsletter-form-modern {
    margin-top: 1rem;
}

.newsletter-form-modern .input-group-modern {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    border: 2px solid #e5e7eb;
    transition: all 0.3s ease;
}

.newsletter-form-modern .input-group-modern:focus-within {
    border-color: #2563eb;
    box-shadow: 0 4px 15px rgba(37, 99, 235, 0.2);
}

.newsletter-form-modern .form-control-modern {
    border: none;
    padding: 1rem 1.25rem;
    font-size: 1rem;
    background: transparent;
    color: #374151;
}

.newsletter-form-modern .form-control-modern:focus {
    outline: none;
    box-shadow: none;
}

.btn-newsletter-modern {
    background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
    border: none;
    padding: 1rem 1.25rem;
    color: white;
    transition: all 0.3s ease;
    font-size: 1rem;
}

.btn-newsletter-modern:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
}

@media (max-width: 768px) {
    .blog-hero-modern {
        padding: 3rem 0 2rem;
    }
    
    .article-title-modern {
        font-size: 2.5rem;
    }
    
    .article-meta-modern {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .article-image-modern {
        height: 300px;
    }
    
    .article-content-modern {
        padding: 2rem;
        font-size: 1rem;
    }
    
    .article-content-modern h3 {
        font-size: 1.5rem;
        padding-left: 1rem;
    }
    
    .article-content-modern h3::before {
        width: 3px;
    }
    
    .article-footer-modern {
        padding: 0 2rem 2rem;
    }
    
    .tags-section-modern,
    .share-section-modern {
        margin-bottom: 2rem;
    }
    
    .author-card-modern {
        flex-direction: column;
        text-align: center;
        padding: 2rem;
    }
    
    .author-avatar-modern {
        margin-right: 0;
        margin-bottom: 1.5rem;
    }
    
    .share-buttons-modern {
        justify-content: center;
        flex-direction: column;
    }
    
    .share-btn-modern {
        min-width: auto;
        width: 100%;
    }
    
    .tags-container-modern {
        justify-content: center;
    }
    
    .widget-modern {
        padding: 1.5rem;
    }
    
    .breadcrumb-modern .breadcrumb-item a {
        padding: 0.5rem 0.75rem;
        font-size: 0.875rem;
    }
}

@media (max-width: 480px) {
    .article-title-modern {
        font-size: 2rem;
    }
    
    .article-content-modern {
        padding: 1.5rem;
    }
    
    .article-footer-modern {
        padding: 0 1.5rem 1.5rem;
    }
    
    .widget-modern {
        padding: 1rem;
    }
    
    .category-link-modern {
        padding: 0.75rem 1rem;
    }
    
    .related-post-modern,
    .popular-post-modern {
        padding: 1rem;
        gap: 1rem;
    }
    
    .related-post-image-modern,
    .popular-post-image-modern {
        width: 70px;
        height: 55px;
    }
    
    .breadcrumb-modern .breadcrumb-item a {
        padding: 0.4rem 0.6rem;
        font-size: 0.8rem;
    }
    
    .breadcrumb-modern .breadcrumb-item span {
        display: none;
    }
}

.breadcrumb-section {
    background: var(--white);
    padding: 1rem 0;
    border-bottom: 1px solid var(--border-color);
}

.breadcrumb {
    background: transparent;
    padding: 0;
    margin: 0;
}

.breadcrumb-item a {
    color: var(--primary-color);
    text-decoration: none;
    transition: var(--transition-fast);
}

.breadcrumb-item a:hover {
    color: var(--primary-dark);
}

.breadcrumb-item.active {
    color: var(--text-color);
}

.blog-detail-content {
    padding: 3rem 0;
}

.blog-post {
    background: var(--white);
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-md);
    overflow: hidden;
    margin-bottom: 2rem;
}

.post-header {
    padding: 2rem 2rem 1rem;
}

.post-category {
    display: inline-block;
    background: var(--primary-gradient);
    color: var(--white);
    padding: 0.5rem 1rem;
    border-radius: var(--border-radius-full);
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.post-category i {
    margin-right: 0.5rem;
}

.post-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 1.5rem;
    line-height: 1.3;
    word-wrap: break-word;
}

.post-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    margin-bottom: 1rem;
}

.meta-item {
    display: flex;
    align-items: center;
    color: var(--text-light);
    font-size: 0.875rem;
}

.meta-item i {
    margin-right: 0.5rem;
    color: var(--primary-color);
}

.post-image {
    width: 100%;
    height: 400px;
    overflow: hidden;
}

.post-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-normal);
}

.post-content {
    padding: 2rem;
    line-height: 1.8;
    color: var(--text-color);
    font-size: 1.1rem;
}

.post-content h3 {
    color: var(--dark-color);
    font-size: 1.5rem;
    font-weight: 600;
    margin: 2rem 0 1rem;
    border-left: 4px solid var(--primary-color);
    padding-left: 1rem;
}

.post-content p {
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
    text-align: justify;
}

.post-tags {
    padding: 0 2rem 2rem;
}

.post-tags h5 {
    color: var(--dark-color);
    font-weight: 600;
    margin-bottom: 1rem;
}

.post-tags h5 i {
    margin-right: 0.5rem;
    color: var(--primary-color);
}

.tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.tag {
    background: var(--light-color);
    color: var(--text-color);
    padding: 0.5rem 1rem;
    border-radius: var(--border-radius-full);
    text-decoration: none;
    font-size: 0.875rem;
    transition: var(--transition-fast);
}

.tag:hover {
    background: var(--primary-color);
    color: var(--white);
}

.share-buttons {
    padding: 0 2rem 2rem;
}

.share-buttons h5 {
    color: var(--dark-color);
    font-weight: 600;
    margin-bottom: 1rem;
}

.share-buttons h5 i {
    margin-right: 0.5rem;
    color: var(--primary-color);
}

.social-share {
    display: flex;
    gap: 0.75rem;
}

.share-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    border-radius: var(--border-radius-full);
    color: var(--white);
    text-decoration: none;
    transition: var(--transition-fast);
    font-size: 1.1rem;
}

.share-btn.facebook {
    background: #1877f2;
}

.share-btn.twitter {
    background: #1da1f2;
}

.share-btn.linkedin {
    background: #0077b5;
}

.share-btn.whatsapp {
    background: #25d366;
}

.share-btn:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.author-info {
    display: flex;
    align-items: center;
    padding: 2rem;
    background: var(--light-color);
    border-top: 1px solid var(--border-color);
}

.author-avatar {
    width: 80px;
    height: 80px;
    border-radius: var(--border-radius-full);
    overflow: hidden;
    margin-right: 1.5rem;
    flex-shrink: 0;
}

.author-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.author-details h5 {
    color: var(--dark-color);
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.author-details p {
    color: var(--text-color);
    margin: 0;
    line-height: 1.6;
}



.related-posts {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}
.related-post {
    display: flex;
    gap: 1rem;
    padding: 1rem;
    background: var(--light-color);
    border-radius: var(--border-radius-md);
    transition: var(--transition-fast);
}

.related-post:hover {
    background: var(--white);
    box-shadow: var(--shadow-md);
}

.related-post img {
    width: 80px;
    height: 60px;
    border-radius: var(--border-radius);
    object-fit: cover;
    flex-shrink: 0;
}

.related-post .post-info {
    flex: 1;
}

.related-post .post-info h6 {
    margin: 0 0 0.5rem;
    font-size: 0.9rem;
    line-height: 1.4;
}

.related-post .post-info h6 a {
    color: var(--dark-color);
    text-decoration: none;
    transition: var(--transition-fast);
}

.related-post .post-info h6 a:hover {
    color: var(--primary-color);
}

.related-post .post-date {
    color: var(--text-light);
    font-size: 0.8rem;
}

.newsletter-form {
    margin-top: 1rem;
}

.newsletter-form .input-group {
    border-radius: var(--border-radius);
    overflow: hidden;
}

.newsletter-form .form-control {
    border: 1px solid var(--border-color);
    border-right: none;
}

.newsletter-form .btn {
    background: var(--primary-gradient);
    border: none;
    padding: 0.75rem 1rem;
}

@media (max-width: 768px) {
    .post-title {
        font-size: 2rem;
    }
    
    .post-meta {
        flex-direction: column;
        gap: 0.75rem;
    }
    
    .post-image {
        height: 250px;
    }
    
    .post-content {
        padding: 1.5rem;
        font-size: 1rem;
    }
    
    .post-content h3 {
        font-size: 1.25rem;
        border-left: 3px solid var(--primary-color);
        padding-left: 0.75rem;
    }
    
    .author-info {
        flex-direction: column;
        text-align: center;
        padding: 1.5rem;
    }
    
    .author-avatar {
        margin-right: 0;
        margin-bottom: 1rem;
    }
    
    .social-share {
        justify-content: center;
    }
    
    .tags {
        justify-content: center;
    }
    
    .post-header {
        padding: 1.5rem 1.5rem 1rem;
    }
    
    .post-tags,
    .share-buttons {
        padding: 0 1.5rem 1.5rem;
    }
}

@media (max-width: 480px) {
    .post-title {
        font-size: 1.75rem;
    }
    
    .post-header {
        padding: 1.5rem 1.5rem 1rem;
    }
    
    .post-content {
        padding: 1.5rem;
    }
    
    .post-tags,
    .share-buttons {
        padding: 0 1.5rem 1.5rem;
    }
  }
}

/* Blog Detail Page Styles */
.blog-detail-page {
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
    min-height: 100vh;
}

.blog-detail-hero {
    background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
    padding: 4rem 0 3rem;
    color: white;
    position: relative;
    overflow: hidden;
}

.blog-detail-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="50" cy="50" r="1" fill="white" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.3;
}

.blog-breadcrumb {
    margin-bottom: 2rem;
}

.blog-breadcrumb .breadcrumb {
    background: transparent;
    padding: 0;
    margin: 0;
}

.blog-breadcrumb .breadcrumb-item {
    display: flex;
    align-items: center;
}

.blog-breadcrumb .breadcrumb-item a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.blog-breadcrumb .breadcrumb-item a:hover {
    color: white;
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-1px);
}

.blog-breadcrumb .breadcrumb-item.active {
    color: rgba(255, 255, 255, 0.6);
}

.blog-breadcrumb .breadcrumb-item i {
    font-size: 0.875rem;
}

.article-header {
    text-align: center;
    position: relative;
    z-index: 2;
}

.category-badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.2);
    color: white;
    padding: 0.75rem 2rem;
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 2rem;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    transition: all 0.3s ease;
}

.category-badge:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: translateY(-2px);
}

.category-badge i {
    margin-right: 0.5rem;
}

.article-title {
    font-size: 3.5rem;
    font-weight: 800;
    color: white;
    margin-bottom: 2.5rem;
    line-height: 1.1;
    text-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    letter-spacing: -0.02em;
}

.article-meta {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin-bottom: 0;
    max-width: 800px;
    margin: 0 auto;
}

.meta-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: rgba(255, 255, 255, 0.1);
    padding: 1rem 1.5rem;
    border-radius: 12px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.meta-item:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

.meta-icon {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1rem;
}

.meta-content {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.meta-label {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.75rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.meta-value {
    color: white;
    font-size: 0.9rem;
    font-weight: 600;
}

.blog-detail-content {
    padding: 4rem 0;
}

.article-main {
    background: white;
    border-radius: 24px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    margin-bottom: 3rem;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.article-image {
    width: 100%;
    height: 450px;
    overflow: hidden;
    position: relative;
}

.article-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s ease;
}

.article-image:hover img {
    transform: scale(1.08);
}

.article-body {
    padding: 3.5rem;
    line-height: 1.8;
    color: #374151;
    font-size: 1.125rem;
}

.article-body h3 {
    color: #1f2937;
    font-size: 1.875rem;
    font-weight: 700;
    margin: 3rem 0 1.5rem;
    position: relative;
    padding-left: 2rem;
    letter-spacing: -0.01em;
}

.article-body h3::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 5px;
    background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
    border-radius: 3px;
    box-shadow: 0 2px 4px rgba(37, 99, 235, 0.3);
}

.article-body p {
    margin-bottom: 1.75rem;
    text-align: justify;
    color: #4b5563;
    font-size: 1.1rem;
    line-height: 1.75;
}

.article-footer {
    padding: 0 3.5rem 3.5rem;
    border-top: 1px solid #e5e7eb;
}

.tags-section,
.share-section {
    margin-bottom: 2.5rem;
}

.section-title {
    color: #1f2937;
    font-weight: 700;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    font-size: 1.25rem;
    letter-spacing: -0.01em;
}

.section-title i {
    margin-right: 0.75rem;
    color: #2563eb;
    font-size: 1.1rem;
}

.tags-container {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.tag {
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
    color: #374151;
    padding: 0.75rem 1.5rem;
    border-radius: 30px;
    text-decoration: none;
    font-size: 0.875rem;
    font-weight: 600;
    transition: all 0.3s ease;
    border: 2px solid #e5e7eb;
    position: relative;
    overflow: hidden;
}

.tag::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
    transition: left 0.3s ease;
    z-index: -1;
}

.tag:hover {
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(37, 99, 235, 0.3);
    border-color: #2563eb;
}

.tag:hover::before {
    left: 0;
}

.share-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.share-btn {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1.5rem;
    border-radius: 12px;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 0.9rem;
    font-weight: 600;
    position: relative;
    overflow: hidden;
    min-width: 140px;
    justify-content: center;
}

.share-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: inherit;
    transition: transform 0.3s ease;
}

.share-btn:hover::before {
    transform: scale(1.05);
}

.share-btn.facebook {
    background: linear-gradient(135deg, #1877f2 0%, #166fe5 100%);
}

.share-btn.twitter {
    background: linear-gradient(135deg, #1da1f2 0%, #1a91da 100%);
}

.share-btn.linkedin {
    background: linear-gradient(135deg, #0077b5 0%, #006097 100%);
}

.share-btn.whatsapp {
    background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
}

.share-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.share-btn i {
    position: relative;
    z-index: 1;
    font-size: 1rem;
}

.share-btn span {
    position: relative;
    z-index: 1;
}

.author-section {
    margin-top: 2.5rem;
}

.author-card {
    display: flex;
    align-items: center;
    padding: 2.5rem;
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
    border-radius: 16px;
    border: 1px solid #e5e7eb;
    transition: all 0.3s ease;
}

.author-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.author-avatar {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    overflow: hidden;
    margin-right: 2rem;
    flex-shrink: 0;
    border: 4px solid white;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
}

.author-card:hover .author-avatar {
    transform: scale(1.05);
}

.author-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.author-info {
    flex: 1;
}

.author-name {
    color: #1f2937;
    font-weight: 700;
    margin-bottom: 0.75rem;
    font-size: 1.25rem;
    letter-spacing: -0.01em;
}

.author-bio {
    color: #6b7280;
    margin: 0 0 1rem 0;
    line-height: 1.6;
    font-size: 0.95rem;
}

.author-social {
    display: flex;
    gap: 1rem;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: white;
    color: #6b7280;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 2px solid #e5e7eb;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.social-link:hover {
    background: #2563eb;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
}

.blog-sidebar {
    position: sticky;
    top: 2rem;
}

.sidebar-widget {
    background: white;
    border-radius: 20px;
    padding: 2.5rem;
    margin-bottom: 2rem;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.06);
    border: 1px solid #f3f4f6;
    transition: all 0.3s ease;
}

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

.widget-header {
    margin-bottom: 2rem;
}

.widget-title {
    color: #1f2937;
    font-weight: 700;
    margin-bottom: 0;
    display: flex;
    align-items: center;
    font-size: 1.25rem;
    letter-spacing: -0.01em;
}

.widget-title i {
    margin-right: 0.75rem;
    color: #2563eb;
    font-size: 1.1rem;
}

.search-form .input-group {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    border: 2px solid #e5e7eb;
    transition: all 0.3s ease;
}

.search-form .input-group:focus-within {
    border-color: #2563eb;
    box-shadow: 0 4px 15px rgba(37, 99, 235, 0.2);
}

.search-form .form-control {
    border: none;
    padding: 1rem 1.25rem;
    font-size: 1rem;
    background: transparent;
    color: #374151;
}

.search-form .form-control:focus {
    outline: none;
    box-shadow: none;
}

.search-form .btn {
    background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
    border: none;
    padding: 1rem 1.25rem;
    color: white;
    transition: all 0.3s ease;
    font-size: 1rem;
}

.search-form .btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
}

.category-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.category-list li {
    margin-bottom: 1rem;
}

.category-link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: #374151;
    text-decoration: none;
    padding: 1rem 1.25rem;
    border-radius: 12px;
    transition: all 0.3s ease;
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
    border: 2px solid #e5e7eb;
    position: relative;
    overflow: hidden;
}

.category-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
    transition: left 0.3s ease;
    z-index: -1;
}

.category-link:hover {
    color: white;
    transform: translateX(8px);
    box-shadow: 0 8px 25px rgba(37, 99, 235, 0.3);
    border-color: #2563eb;
}

.category-link:hover::before {
    left: 0;
}

.category-icon {
    width: 40px;
    height: 40px;
    background: rgba(37, 99, 235, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #2563eb;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.category-link:hover .category-icon {
    background: rgba(255, 255, 255, 0.2);
    color: white;
}

.category-info {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex: 1;
    margin-left: 1rem;
}

.category-name {
    font-weight: 600;
    font-size: 0.95rem;
}

.category-count {
    background: rgba(37, 99, 235, 0.1);
    color: #2563eb;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

.category-link:hover .category-count {
    background: rgba(255, 255, 255, 0.2);
    color: white;
}

.related-posts,
.popular-posts {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.related-post,
.popular-post {
    display: flex;
    gap: 1.25rem;
    padding: 1.25rem;
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
    border-radius: 16px;
    transition: all 0.3s ease;
    border: 2px solid #e5e7eb;
    position: relative;
    overflow: hidden;
}
.related-post::before,
.popular-post::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
    transition: left 0.3s ease;
    z-index: -1;
}

.related-post:hover,
.popular-post:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(37, 99, 235, 0.15);
    border-color: #2563eb;
}

.related-post:hover::before,
.popular-post:hover::before {
    left: 0;
}

.related-post-image,
.popular-post-image {
    width: 90px;
    height: 70px;
    border-radius: 12px;
    overflow: hidden;
    flex-shrink: 0;
    border: 2px solid #e5e7eb;
    transition: all 0.3s ease;
}

.related-post:hover .related-post-image,
.popular-post:hover .popular-post-image {
    border-color: white;
    transform: scale(1.05);
}

.related-post-image img,
.popular-post-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.related-post-content,
.popular-post-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.related-post-title,
.popular-post-title {
    margin: 0 0 0.75rem;
    font-size: 0.95rem;
    line-height: 1.4;
    font-weight: 700;
    letter-spacing: -0.01em;
}

.related-post-title a,
.popular-post-title a {
    color: #1f2937;
    text-decoration: none;
    transition: color 0.3s ease;
}

.related-post:hover .related-post-title a,
.popular-post:hover .popular-post-title a {
    color: white;
}

.related-post-meta,
.popular-post-meta {
    display: flex;
    gap: 1rem;
    font-size: 0.8rem;
    color: #6b7280;
    transition: color 0.3s ease;
}

.related-post:hover .related-post-meta,
.popular-post:hover .popular-post-meta {
    color: rgba(255, 255, 255, 0.8);
}

.post-date,
.post-category,
.post-views {
    font-weight: 500;
}

.newsletter-description {
    color: #6b7280;
    margin-bottom: 1.5rem;
    line-height: 1.6;
    font-size: 0.95rem;
}

.newsletter-form {
    margin-top: 1rem;
}

.newsletter-form .input-group {
    border-radius: 32px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    border: 2px solid #e5e7eb;
    transition: all 0.3s ease;
}

.newsletter-form .input-group:focus-within {
    border-color: #2563eb;
    box-shadow: 0 4px 15px rgba(37, 99, 235, 0.2);
}

.newsletter-form .form-control {
    border: none;
    padding: 1rem 1.25rem;
    font-size: 1rem;
    background: white;
    color: #374151;
}

.newsletter-form .form-control:focus {
    outline: none;
    box-shadow: none;
}

.newsletter-form .btn {
    background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
    border: none;
    padding: 1rem 1.25rem;
    color: white;
    transition: all 0.3s ease;
    font-size: 1rem;
}

.newsletter-form .btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
}

/* Responsive Design */
@media (max-width: 768px) {
    .blog-detail-hero {
        padding: 3rem 0 2rem;
    }
    
    .article-title {
        font-size: 2.5rem;
    }
    
    .article-meta {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .article-image {
        height: 300px;
    }
    
    .article-body {
        padding: 2rem;
        font-size: 1rem;
    }
    
    .article-body h3 {
        font-size: 1.5rem;
        padding-left: 1rem;
    }
    
    .article-body h3::before {
        width: 3px;
    }
    
    .article-footer {
        padding: 0 2rem 2rem;
    }
    
    .tags-section,
    .share-section {
        margin-bottom: 2rem;
    }
    
    .author-card {
        flex-direction: column;
        text-align: center;
        padding: 2rem;
    }
    
    .author-avatar {
        margin-right: 0;
        margin-bottom: 1.5rem;
    }
    
    .share-buttons {
        justify-content: center;
        flex-direction: column;
    }
    
    .share-btn {
        min-width: auto;
        width: 100%;
    }
    
    .tags-container {
        justify-content: center;
    }
    
    .sidebar-widget {
        padding: 1.5rem;
    }
    
    .blog-breadcrumb .breadcrumb-item a {
        padding: 0.5rem 0.75rem;
        font-size: 0.875rem;
    }
}

@media (max-width: 480px) {
    .article-title {
        font-size: 2rem;
    }
    
    .article-body {
        padding: 1.5rem;
    }
    
    .article-footer {
        padding: 0 1.5rem 1.5rem;
    }
    
    .sidebar-widget {
        padding: 1rem;
    }
    
    .category-link {
        padding: 0.75rem 1rem;
    }
    
    .related-post,
    .popular-post {
        padding: 1rem;
        gap: 1rem;
    }
    
    .related-post-image,
    .popular-post-image {
        width: 70px;
        height: 55px;
    }
    
    .blog-breadcrumb .breadcrumb-item a {
        padding: 0.4rem 0.6rem;
        font-size: 0.8rem;
    }
    
    .blog-breadcrumb .breadcrumb-item span {
        display: none;
    }
}

/* Tab Navigation Responsive */
@media (max-width: 768px) {
    .modern-tabs {
        flex-direction: column;
        gap: 2rem;
    }
    
    .tab-navigation {
        width: 100%;
        border-right: none;
        border-bottom: 2px solid #e5e7eb;
        padding-right: 0;
        padding-bottom: 1rem;
        flex-direction: row;
        overflow-x: auto;
    }
    
    .tab-btn {
        padding: 0.75rem 1rem;
        font-size: 0.9rem;
        min-width: fit-content;
    }
    
    .tab-btn span {
        font-size: 0.85rem;
    }
}

@media (max-width: 480px) {
    .tab-navigation {
        gap: 0.25rem;
        padding-bottom: 0.75rem;
    }
    
    .tab-btn {
        padding: 0.6rem 0.8rem;
        font-size: 0.8rem;
    }
    
    .tab-btn span {
        font-size: 0.75rem;
    }
}

/* Modern About Page Styles */
.about-modern {
    padding: 2rem 0;
}

/* Hero Section */
.about-hero {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 20px;
    padding: 3rem;
    color: white;
    margin-bottom: 4rem;
    position: relative;
    overflow: hidden;
}

.about-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="50" cy="50" r="1" fill="white" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.3;
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.hero-description {
    font-size: 1.1rem;
    line-height: 1.6;
    opacity: 0.9;
    margin-bottom: 2rem;
}

.hero-stats {
    margin-top: 2rem;
}

.stat-card {
    text-align: center;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.stat-number {
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
    color: #fff;
}

.stat-label {
    font-size: 0.9rem;
    opacity: 0.8;
    margin: 0;
}

/* Floating Cards */
.hero-visual {
    position: relative;
    height: 400px;
}

.floating-cards {
    position: relative;
    height: 100%;
}

.floating-card {
    position: absolute;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 15px;
    padding: 1.5rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: center;
    gap: 1rem;
    color: #333;
    font-weight: 600;
    animation: float 6s ease-in-out infinite;
}

.floating-card i {
    font-size: 1.5rem;
    color: #667eea;
}

.floating-card.card-1 {
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.floating-card.card-2 {
    top: 50%;
    right: 15%;
    animation-delay: 2s;
}

.floating-card.card-3 {
    bottom: 20%;
    left: 20%;
    animation-delay: 4s;
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
}

/* Mission & Vision Cards */
.mission-vision {
    margin-bottom: 4rem;
}

.mission-card, .vision-card {
    background: white;
    border-radius: 20px;
    padding: 3rem;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(0, 0, 0, 0.05);
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.mission-card:hover, .vision-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.12);
}

.mission-card::before, .vision-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #667eea, #764ba2);
}

.card-icon {
    width: 80px;
    height: 80px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 2rem;
    font-size: 2rem;
    color: white;
}

.mission-card .card-icon {
    background: linear-gradient(135deg, #667eea, #764ba2);
}

.vision-card .card-icon {
    background: linear-gradient(135deg, #f093fb, #f5576c);
}

.card-title {
    font-size: 20px;
    font-weight: 400;
    margin-bottom: 1.5rem;
    color: #333;
}

.card-description {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #666;
    margin-bottom: 2rem;
}

.card-features {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: rgba(102, 126, 234, 0.05);
    border-radius: 10px;
    border-left: 4px solid #667eea;
}

.feature-item i {
    color: #667eea;
    font-size: 1.1rem;
}

/* Section Headers */
.section-header {
    margin-bottom: 4rem;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 1rem;
}

.section-subtitle {
    font-size: 1.1rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
}

/* Values Section */
.values-section {
    margin-bottom: 4rem;
}

.value-card {
    background: white;
    border-radius: 20px;
    padding: 3rem 2rem;
    text-align: center;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    height: 100%;
}

.value-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
}

.value-icon {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
    font-size: 2.5rem;
    color: white;
    background: linear-gradient(135deg, #667eea, #764ba2);
    box-shadow: 0 10px 30px rgba(102, 126, 234, 0.3);
}

.value-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 1rem;
}

.value-description {
    font-size: 1rem;
    line-height: 1.6;
    color: #666;
}

/* Team Section */
.team-section {
    margin-bottom: 4rem;
}

.team-card {
    background: white;
    border-radius: 20px;
    padding: 2.5rem 2rem;
    text-align: center;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    height: 100%;
}

.team-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
}

.team-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
    color: white;
    background: linear-gradient(135deg, #667eea, #764ba2);
    box-shadow: 0 10px 30px rgba(102, 126, 234, 0.3);
}

.team-name {
    font-size: 1.3rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 0.5rem;
}

.team-role {
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 1.5rem;
}

.team-skills {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    justify-content: center;
}

.skill-tag {
    background: rgba(102, 126, 234, 0.1);
    color: #667eea;
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

/* Certificates Section */
.certificates-section {
    margin-bottom: 4rem;
}

.certificate-card {
    background: white;
    border-radius: 20px;
    padding: 2.5rem 2rem;
    text-align: center;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    height: 100%;
}

.certificate-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
}

.certificate-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
    color: white;
    background: linear-gradient(135deg, #667eea, #764ba2);
    box-shadow: 0 10px 30px rgba(102, 126, 234, 0.3);
}

.certificate-title {
    font-size: 1.2rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 0.5rem;
}

.certificate-desc {
    font-size: 0.9rem;
    color: #666;
}

/* Responsive Design */
@media (max-width: 768px) {
    .about-hero {
        padding: 2rem;
        margin-bottom: 3rem;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-description {
        font-size: 1rem;
    }
    
    .mission-card, .vision-card {
        padding: 2rem;
    }
    
    .card-title {
        font-size: 1.5rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .value-card, .team-card, .certificate-card {
        padding: 2rem 1.5rem;
    }
    
    .floating-cards {
        display: none;
    }
}

@media (max-width: 480px) {
    .about-hero {
        padding: 1.5rem;
    }
    
    .hero-title {
        font-size: 1.5rem;
    }
    
    .stat-card {
        padding: 1rem;
    }
    
    .stat-number {
        font-size: 1.5rem;
    }
    
    .mission-card, .vision-card {
        padding: 1.5rem;
    }
    
    .card-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
    
    .value-icon, .team-avatar, .certificate-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
}

/* Clean About Page Styles */
.about-clean {
    padding: 2rem 0;
}

/* Hero Section */
.about-hero-clean {
    background: #f8f9fa;
    border-radius: 12px;
    padding: 3rem;
    margin-bottom: 4rem;
    border: 1px solid #e9ecef;
}

.hero-title-clean {
    font-size: 2.5rem;
    font-weight: 600;
    color: #212529;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}
.hero-description-clean {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #6c757d;
    margin-bottom: 2rem;
}

.hero-stats-clean {
    margin-top: 2rem;
}

.stat-item-clean {
    text-align: center;
    padding: 1rem;
}

.stat-number-clean {
    font-size: 2rem;
    font-weight: 700;
    color: #0d6efd;
    margin-bottom: 0.5rem;
}

.stat-label-clean {
    font-size: 0.9rem;
    color: #6c757d;
    margin: 0;
    font-weight: 500;
}

/* Feature List */
.hero-visual-clean {
    padding: 1rem;
}

.feature-list-clean {
    list-style: none;
    padding: 0;
    margin: 0;
}

.feature-item-clean {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    margin-bottom: 1rem;
    background: white;
    border-radius: 8px;
    border: 1px solid #e9ecef;
    color: #495057;
    font-weight: 500;
}

.feature-item-clean i {
    font-size: 1.2rem;
    color: #0d6efd;
    width: 20px;
}

/* Mission & Vision Cards */
.mission-vision-clean {
    margin-bottom: 4rem;
}

.mission-card-clean, .vision-card-clean {
    background: white;
    border-radius: 12px;
    padding: 2.5rem;
    border: 1px solid #e9ecef;
    height: 100%;
}

.card-header-clean {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.card-header-clean i {
    font-size: 1.5rem;
    color: #0d6efd;
}

.card-title-clean {
    font-size: 1.5rem;
    font-weight: 600;
    color: #212529;
    margin: 0;
}

.card-description-clean {
    font-size: 1rem;
    line-height: 1.6;
    color: #6c757d;
    margin-bottom: 1.5rem;
}

.feature-list-clean li {
    padding: 0.5rem 0;
    color: #495057;
    position: relative;
    padding-left: 1.5rem;
}

.feature-list-clean li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #0d6efd;
    font-weight: bold;
}

/* Section Headers */
.section-header-clean {
    margin-bottom: 3rem;
}

.section-title-clean {
    font-size: 2rem;
    font-weight: 600;
    color: #212529;
    margin-bottom: 0.5rem;
}

.section-subtitle-clean {
    font-size: 1rem;
    color: #6c757d;
    max-width: 600px;
    margin: 0 auto;
}

/* Values Section */
.values-section-clean {
    margin-bottom: 4rem;
}

.value-card-clean {
    background: white;
    border-radius: 12px;
    padding: 2rem;
    text-align: center;
    border: 1px solid #e9ecef;
    height: 100%;
    transition: transform 0.2s ease;
}

.value-card-clean:hover {
    transform: translateY(-2px);
}

.value-icon-clean {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 1.5rem;
    color: white;
    background: #0d6efd;
}

.value-title-clean {
    font-size: 1.2rem;
    font-weight: 600;
    color: #212529;
    margin-bottom: 1rem;
}

.value-description-clean {
    font-size: 0.9rem;
    line-height: 1.5;
    color: #6c757d;
}

/* Team Section */
.team-section-clean {
    margin-bottom: 4rem;
}

.team-card-clean {
    background: white;
    border-radius: 12px;
    padding: 2rem;
    text-align: center;
    border: 1px solid #e9ecef;
    height: 100%;
    transition: transform 0.2s ease;
}

.team-card-clean:hover {
    transform: translateY(-2px);
}

.team-avatar-clean {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    font-size: 1.5rem;
    color: white;
    background: #0d6efd;
}

.team-name-clean {
    font-size: 1.1rem;
    font-weight: 600;
    color: #212529;
    margin-bottom: 0.5rem;
}

.team-role-clean {
    font-size: 0.9rem;
    color: #6c757d;
}

/* Certificates Section */
.certificates-section-clean {
    margin-bottom: 4rem;
}

.certificate-card-clean {
    background: white;
    border-radius: 12px;
    padding: 2rem;
    text-align: center;
    border: 1px solid #e9ecef;
    height: 100%;
    transition: transform 0.2s ease;
}

.certificate-card-clean:hover {
    transform: translateY(-2px);
}

.certificate-icon-clean {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    font-size: 1.5rem;
    color: white;
    background: #0d6efd;
}

.certificate-title-clean {
    font-size: 1.1rem;
    font-weight: 600;
    color: #212529;
    margin-bottom: 0.5rem;
}

.certificate-desc-clean {
    font-size: 0.9rem;
    color: #6c757d;
}

/* Responsive Design */
@media (max-width: 768px) {
    .about-hero-clean {
        padding: 2rem;
        margin-bottom: 3rem;
    }
    
    .hero-title-clean {
        font-size: 2rem;
    }
    
    .hero-description-clean {
        font-size: 1rem;
    }
    
    .mission-card-clean, .vision-card-clean {
        padding: 2rem;
    }
    
    .card-title-clean {
        font-size: 1.3rem;
    }
    
    .section-title-clean {
        font-size: 1.8rem;
    }
    
    .value-card-clean, .team-card-clean, .certificate-card-clean {
        padding: 1.5rem;
    }
}

@media (max-width: 480px) {
    .about-hero-clean {
        padding: 1.5rem;
    }
    
    .hero-title-clean {
        font-size: 1.5rem;
    }
    
    .stat-item-clean {
        padding: 0.5rem;
    }
    
    .stat-number-clean {
        font-size: 1.5rem;
    }
    
    .mission-card-clean, .vision-card-clean {
        padding: 1.5rem;
    }
    
    .value-icon-clean, .team-avatar-clean, .certificate-icon-clean {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }
}

/* Product Highlights Section - Premium Design */
.product-highlights-section {
    padding: 2rem 0;
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
    position: relative;
}

.product-highlights-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, #e2e8f0, transparent);
}

.highlight-column {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    padding: 1.5rem;
    transition: all 0.3s ease;
    height: 100%;
    position: relative;
    overflow: hidden;
}

.highlight-column::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, #3b82f6, #8b5cf6, #06b6d4);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.highlight-column:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    border-color: rgba(59, 130, 246, 0.3);
}

.highlight-column:hover::before {
    transform: scaleX(1);
}

.highlight-header {
    text-align: center;
    margin-bottom: 1rem;
    position: relative;
}

.highlight-header::after {
    content: '';
    position: absolute;
    bottom: -0.5rem;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 2px;
    background: linear-gradient(90deg, #3b82f6, #8b5cf6);
    border-radius: 1px;
}

.highlight-title {
    font-size: 1.125rem;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 0.25rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    letter-spacing: -0.025em;
}



.highlight-subtitle {
    color: #64748b;
    font-size: 0.8rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.highlight-products {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.highlight-product-card {
    background: #ffffff;
    border: 1px solid rgba(241, 245, 249, 0.8);
    border-radius: 4px;
    padding: 1rem;
    transition: all 0.2s ease;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    gap: 1rem;
    text-decoration: none;
    color: inherit;
}

.highlight-product-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.02), rgba(139, 92, 246, 0.02));
    opacity: 0;
    transition: opacity 0.2s ease;
}

.highlight-product-card:hover {
    border-color: rgba(59, 130, 246, 0.2);
    box-shadow: 0 2px 8px rgba(59, 130, 246, 0.1);
    transform: translateY(-1px);
}

.highlight-product-card:hover::before {
    opacity: 1;
}

.highlight-product-image {
    position: relative;
    width: 120px;
    height: 120px;
    border-radius: 4px;
    overflow: hidden;
    flex-shrink: 0;
    background: linear-gradient(135deg, #f8fafc, #f1f5f9);
}

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

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

.highlight-product-info {
    text-align: left;
    position: relative;
    z-index: 1;
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.highlight-product-category {
    font-size: 0.7rem;
    color: #64748b;
    font-weight: 600;
    margin-bottom: 0.25rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.highlight-product-name {
    font-size: 1rem;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 0.25rem;
    line-height: 1.3;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.highlight-product-price {
    font-size: 1.1rem;
    font-weight: 700;
    color: #059669;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 0.25rem;
    margin-bottom: 0.5rem;
}

.current-price {
    color: #059669;
    font-weight: 700;
}

.highlight-product-description {
    font-size: 0.85rem;
    color: #64748b;
    line-height: 1.4;
    margin-bottom: 0.5rem;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}



.current-price::before {
    content: '₺';
    font-size: 0.75rem;
    opacity: 0.8;
}

/* Premium Badges */
.hot-badge {
    position: absolute;
    top: 4px;
    right: 4px;
    background: #ef4444;
    color: white;
    font-size: 0.6rem;
    font-weight: 600;
    padding: 3px 6px;
    border-radius: 4px;
    display: flex;
    align-items: center;
    gap: 3px;
    z-index: 2;
}



.rating-badge {
    position: absolute;
    top: 4px;
    right: 4px;
    background: #f59e0b;
    color: white;
    font-size: 0.6rem;
    font-weight: 600;
    padding: 3px 6px;
    border-radius: 4px;
    display: flex;
    align-items: center;
    gap: 3px;
    z-index: 2;
}



.new-badge {
    position: absolute;
    top: 4px;
    right: 4px;
    background: #10b981;
    color: white;
    font-size: 0.6rem;
    font-weight: 600;
    padding: 3px 6px;
    border-radius: 4px;
    display: flex;
    align-items: center;
    gap: 3px;
    z-index: 2;
}



/* No products state */
.no-products {
    text-align: center;
    padding: 1rem;
    color: #64748b;
}



.no-products h5 {
    margin-bottom: 0.25rem;
    color: #475569;
    font-size: 0.8rem;
}

.no-products p {
    font-size: 0.7rem;
    margin: 0;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .product-highlights-section {
        padding: 1.5rem 0;
    }
    
    .highlight-column {
        padding: 1rem;
        margin-bottom: 0.75rem;
    }
    
    .highlight-title {
        font-size: 1rem;
    }
    
    .highlight-subtitle {
        font-size: 0.75rem;
    }
    
    .highlight-product-name {
        font-size: 0.75rem;
    }
    
    .highlight-product-price {
        font-size: 0.8rem;
    }
}

@media (max-width: 480px) {
    .highlight-column {
        padding: 0.75rem;
    }
    
    .highlight-title {
        font-size: 0.9rem;
    }
    
    .highlight-product-name {
        font-size: 0.7rem;
    }
    
    .highlight-product-price {
        font-size: 0.75rem;
    }
}

/* Modern Popular Products Section */
.products-section-modern {
    padding: 4rem 0;
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
    position: relative;
}

.products-section-modern::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
    z-index: -1;
}

.products-header-modern {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 3rem;
    padding: 0 1rem;
}

.products-header-modern .section-title-modern {
    margin-bottom: 0;
    font-size: 2.2rem;
    font-weight: 900;
    color: #1e293b;
    letter-spacing: -0.02em;
    text-transform: uppercase;
}

.category-tabs-modern {
    display: flex;
    gap: 0.5rem;
    background: white;
    padding: 0.5rem;
    border-radius: 50px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.category-tab {
    padding: 0.75rem 1.5rem;
    border: none;
    background: transparent;
    color: #64748b;
    font-weight: 600;
    font-size: 0.875rem;
    border-radius: 25px;
    transition: all 0.3s ease;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.category-tab:hover {
    color: #2563eb;
    background: rgba(37, 99, 235, 0.1);
}

.category-tab.active {
    background: #2563eb;
    color: white;
    box-shadow: 0 4px 15px rgba(37, 99, 235, 0.3);
}

/* Main Product Display */
.main-product-display {
    position: relative;
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.main-product-display:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.main-product-image {
    position: relative;
    width: 100%;
    height: 400px;
    overflow: hidden;
    background: #f8fafc;
}

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

.main-product-display:hover .main-product-image img {
    transform: scale(1.05);
}

.main-product-info {
    padding: 2rem;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.main-product-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 1rem;
    line-height: 1.3;
}
.main-product-description {
    color: #64748b;
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.main-product-price {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.price-label {
    font-size: 0.875rem;
    font-weight: 600;
    color: #059669;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.price-amount {
    font-size: 1.75rem;
    font-weight: 800;
    color: #1e293b;
}

/* Countdown Timer */
.countdown-timer {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
    justify-content: center;
}

.timer-item {
    text-align: center;
    background: #f8fafc;
    padding: 1rem;
    border-radius: 12px;
    min-width: 60px;
    border: 2px solid #e2e8f0;
}

.timer-number {
    font-size: 1.5rem;
    font-weight: 800;
    color: #1e293b;
    display: block;
    margin-bottom: 0.25rem;
}

.timer-label {
    font-size: 0.75rem;
    font-weight: 600;
    color: #64748b;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Pagination Dots */
.pagination-dots {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 1rem;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #e2e8f0;
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot.active {
    background: #2563eb;
    transform: scale(1.2);
}

/* Product Grid */
.product-grid-modern {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    height: 100%;
}

#featured-products {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

#featured-products .product-card-modern {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    position: relative;
    height: 100%;
    display: flex;
    flex-direction: column;
}

#featured-products .product-card-modern::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.05) 0%, rgba(37, 99, 235, 0.02) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 1;
}

#featured-products .product-card-modern:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

#featured-products .product-card-modern:hover::before {
    opacity: 1;
}

#featured-products .product-image-modern {
    position: relative;
    width: 100%;
    height: 180px;
    overflow: hidden;
    background: #f8fafc;
}

#featured-products .product-image-modern img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

#featured-products .product-card-modern:hover .product-image-modern img {
    transform: scale(1.05);
}

#featured-products .product-content-modern {
    padding: 1.25rem;
    flex: 1;
    display: flex;
    flex-direction: column;
    position: relative;
    z-index: 2;
}

#featured-products .product-category-modern {
    font-size: 0.75rem;
    font-weight: 700;
    color: #059669;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 0.5rem;
}

#featured-products .product-title-modern {
    font-size: 1rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 0.75rem;
    line-height: 1.3;
}

#featured-products .product-title-modern a {
    color: inherit;
    text-decoration: none;
    transition: color 0.3s ease;
}

#featured-products .product-title-modern a:hover {
    color: #2563eb;
}

#featured-products .product-description-modern {
    color: #64748b;
    font-size: 0.875rem;
    line-height: 1.5;
    margin-bottom: 1rem;
    flex: 1;
}

#featured-products .product-price-modern {
    font-size: 1.125rem;
    font-weight: 800;
    color: #1e293b;
    margin-top: auto;
}

/* Product Badge */
.product-badge-modern {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background: #059669;
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    z-index: 3;
}

/* Favorite Button */
.favorite-btn-modern {
    position: absolute;
    top: 1rem;
    right: 1rem;
    width: 40px;
    height: 40px;
    border: none;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 3;
    backdrop-filter: blur(10px);
}

.favorite-btn-modern:hover {
    background: #fee2e2;
    transform: scale(1.1);
}

.favorite-btn-modern.active {
    background: #fecaca;
    color: #dc2626;
}

.favorite-btn-modern i {
    font-size: 1rem;
    transition: all 0.3s ease;
}

/* Product Overlay Actions */
.product-overlay-actions {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.95) 0%, rgba(37, 99, 235, 0.9) 100%);
    padding: 1rem;
    display: flex;
    gap: 0.5rem;
    opacity: 0;
    transform: translateY(100%);
    transition: all 0.3s ease;
    z-index: 3;
}

.product-card-modern:hover .product-overlay-actions {
    opacity: 1;
    transform: translateY(0);
}

.btn-overlay {
    flex: 1;
    padding: 0.75rem;
    border: none;
    border-radius: 8px;
    font-size: 0.875rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

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

.btn-overlay.btn-primary {
    background: white;
    color: #2563eb;
}

.btn-overlay.btn-primary:hover {
    background: #f8fafc;
}

.btn-overlay.btn-success {
    background: #059669;
    color: white;
}

.btn-overlay.btn-success:hover {
    background: #047857;
}

/* Main Product Actions */
.main-product-actions {
    display: flex;
    gap: 1rem;
    margin-top: auto;
}

.btn-inspect {
    flex: 1;
    padding: 0.875rem 1.5rem;
    border: 2px solid #2563eb;
    background: transparent;
    color: #2563eb;
    border-radius: 12px;
    font-weight: 600;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
}

.btn-inspect:hover {
    background: #2563eb;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(37, 99, 235, 0.3);
}

.btn-buy {
    flex: 1;
    padding: 0.875rem 1.5rem;
    border: none;
    background: #059669;
    color: white;
    border-radius: 12px;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
}

.btn-buy:hover {
    background: #047857;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(5, 150, 105, 0.3);
}

/* Responsive Design */
@media (max-width: 768px) {
    .products-header-modern {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
    
    .category-tabs-modern {
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .main-product-title {
        font-size: 1.25rem;
    }
    
    .price-amount {
        font-size: 1.5rem;
    }
    
    .main-product-actions {
        flex-direction: column;
    }
    
    .countdown-timer {
        gap: 0.5rem;
    }
    
    .timer-item {
        min-width: 50px;
        padding: 0.75rem;
    }
    
    .timer-number {
        font-size: 1.25rem;
    }
    
    .timer-label {
        font-size: 0.625rem;
    }
    
    #featured-products {
        grid-template-columns: 1fr;
    }
    
    #featured-products .product-image-modern {
        height: 150px;
    }
    
    #featured-products .product-title-modern {
        font-size: 0.875rem;
    }
    
    #featured-products .product-price-modern {
        font-size: 1rem;
    }
    
    .favorite-btn-modern {
        width: 35px;
        height: 35px;
    }
    
    .product-overlay-actions {
        padding: 0.75rem;
    }
    
    .btn-overlay {
        padding: 0.5rem;
        font-size: 0.75rem;
    }
}

@media (max-width: 480px) {
    .products-section-modern {
        padding: 2rem 0;
    }
    
    .products-header-modern .section-title-modern {
        font-size: 1.5rem;
    }
    
    .category-tabs-modern {
        padding: 0.25rem;
    }
    
    .category-tab {
        padding: 0.5rem 1rem;
        font-size: 0.75rem;
    }
    
    .main-product-info {
        padding: 1.5rem;
    }
    
    .main-product-title {
        font-size: 1.125rem;
    }
    
    .countdown-timer {
        gap: 0.25rem;
    }
    
    .timer-item {
        min-width: 40px;
        padding: 0.5rem;
    }
    
    .timer-number {
        font-size: 1rem;
    }
    
    .timer-label {
        font-size: 0.5rem;
    }
    
    .btn-inspect,
    .btn-buy {
        padding: 0.75rem 1rem;
        font-size: 0.875rem;
    }
}

/* Categories and Products Section */
.categories-products-section {
    padding: 4rem 0;
    background: #ffffff;
}

.categories-products-section[style] {
    background: none !important;
}

.categories-sidebar {
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
    border-radius: 12px;
    padding: 2rem;
    height: fit-content;
    position: sticky;
    top: 2rem;
    border: 1px solid #e2e8f0;
}

.categories-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.categories-list {
    list-style: none;
    padding: 0;
    margin: 0 0 2rem 0;
}

.category-item {
    margin-bottom: 0.5rem;
}

.category-link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.75rem 1rem;
    background: #ffffff;
    border-radius: 8px;
    text-decoration: none;
    color: #475569;
    font-weight: 500;
    transition: all 0.3s ease;
    border: 1px solid #e2e8f0;
}

.category-link:hover {
    background: #2563eb;
    color: #ffffff;
    transform: translateX(4px);
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.2);
}

.category-name {
    font-size: 0.9rem;
}

.category-arrow {
    font-size: 0.8rem;
    transition: transform 0.3s ease;
}

.category-link:hover .category-arrow {
    transform: translateX(4px);
}

/* Sidebar Promotional Banner */
.sidebar-promo {
    background: #ffffff;
    border-radius: 12px;
    padding: 1rem;
    position: relative;
    overflow: hidden;
    border: 1px solid #e2e8f0;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.sidebar-promo-image {
    width: 100%;
    height: 200px;
    border-radius: 8px;
    overflow: hidden;
}

.sidebar-promo-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.sidebar-promo-link {
    text-decoration: none;
    color: inherit;
    transition: transform 0.3s ease;
}

.sidebar-promo-link:hover {
    transform: translateY(-2px);
}

.sidebar-promo-link:hover .sidebar-promo {
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

/* Products Content */
.products-content {
    padding-left: 2rem;
}



/* Products Grid */
.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
}

/* Selected categories bar */
.selected-categories-bar {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1rem;
}
.selected-category-pill {
    display: inline-block;
    padding: 0.4rem 0.75rem;
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 999px;
    text-decoration: none;
    color: #334155;
    font-weight: 600;
    transition: all 0.2s ease;
}
.selected-category-pill:hover {
    background: #2563eb;
    color: #fff;
    border-color: #2563eb;
}

/* Category cards grid: force 2 columns x 3 rows on desktop */
.category-cards-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.25rem;
}

.category-card {
    position: relative;
    display: block;
    text-decoration: none;
    color: inherit;
    border-radius: 16px;
    overflow: hidden;
    background: #0f172a;
    min-height: 240px;
    box-shadow: 0 10px 25px rgba(2, 6, 23, 0.15);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.category-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 45px rgba(2, 6, 23, 0.25);
}
.category-card-image {
    position: absolute;
    inset: 0;
}
.category-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.category-card::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(2,6,23,0.75), rgba(2,6,23,0.35) 40%, rgba(2,6,23,0) 70%);
}
.category-card-overlay {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 1.25rem 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 2;
}
.category-card-title {
    font-weight: 800;
    color: #fff;
    font-size: 1.25rem;
    letter-spacing: 0.2px;
}
.category-card-cta {
    display: inline-flex;
    align-items: center;
    color: #e2e8f0;
    background: rgba(255,255,255,0.12);
    border: 1px solid rgba(255,255,255,0.2);
    padding: 0.35rem 0.6rem;
    border-radius: 999px;
    font-size: 0.85rem;
    transition: background 0.2s ease, color 0.2s ease;
}
.category-card:hover .category-card-cta {
    background: rgba(255,255,255,0.2);
    color: #fff;
}

@media (max-width: 992px) {
    .category-cards-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 576px) {
    .category-cards-grid { grid-template-columns: 1fr; }
    .category-card { min-height: 200px; }
}

.product-card {
    background: #ffffff;
    border: 1px solid #d1d5db;
    border-radius: 8px;
    padding: 1.5rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.product-card-link {
    text-decoration: none;
    color: inherit;
    display: block;
    width: 100%;
    height: 100%;
}

.product-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #2563eb 0%, #1d4ed8 100%);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.product-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    border-color: #9ca3af;
}

.product-card:hover::before {
    transform: scaleX(1);
}

.product-category-label {
    display: inline-block;
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: #ffffff;
    font-size: 0.65rem;
    font-weight: 700;
    padding: 0.2rem 0.5rem;
    border-radius: 12px;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 0.3px;
    position: absolute;
    top: 0.5rem;
    left: 0.5rem;
    z-index: 2;
    box-shadow: 0 2px 4px rgba(16, 185, 129, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(4px);
    transition: all 0.3s ease;
    max-width: fit-content;
    white-space: nowrap;
}

.product-card:hover .product-category-label {
    transform: translateY(-2px) scale(1.05);
    box-shadow: 0 4px 8px rgba(16, 185, 129, 0.4);
}

.product-name {
    font-size: 1.1rem;
    font-weight: 700;
    color: #1e293b;
    margin: 1rem 0.25rem;
    line-height: 1.3;
}

.product-image {
    width: 100%;
    height: 200px;
    border-radius: 6px;
    overflow: hidden;
    margin-bottom: 1rem;
    background: #f8fafc;
    position: relative;
}

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

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

.product-info-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.75rem;
}

.product-price {
    margin-bottom: 0;
}

.price-amount {
    font-size: 1.25rem;
    font-weight: 700;
    color: #059669;
}

.product-actions {
    display: flex;
    gap: 0.5rem;
    justify-content: flex-end;
}

/* Ana ürün kartları için özel sınıf - slider haricindeki kartlar */
.product-card .product-actions {
    justify-content: flex-end;
    margin: 0;
}

.btn-add-cart,
.btn-favorite {
    width: 36px;
    height: 36px;
    border: none;
    border-radius: 50%;
    background: #f8fafc;
    color: #64748b;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

.btn-add-cart:hover {
    background: #2563eb;
    color: #ffffff;
    transform: scale(1.1);
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
}

.btn-favorite:hover {
    background: #ef4444;
    color: #ffffff;
    transform: scale(1.1);
    box-shadow: 0 4px 12px rgba(239, 68, 68, 0.3);
}

.btn-favorite.active {
    background: #ef4444;
    color: #ffffff;
}

.product-description {
    font-size: 0.85rem;
    color: #64748b;
    line-height: 1.5;
    margin: 0;
}

.product-rating {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.75rem;
}

.stars {
    display: flex;
    gap: 0.1rem;
}

.stars i {
    color: #f59e0b;
    font-size: 0.8rem;
}

.rating-count {
    font-size: 0.75rem;
    color: #64748b;
}

/* Responsive Design */
@media (max-width: 992px) {
    .categories-sidebar {
        position: static;
        margin-bottom: 2rem;
    }
    
    .products-content {
        padding-left: 0;
    }
    
    .products-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 1rem;
    }
}

@media (max-width: 768px) {
    .categories-products-section {
        padding: 2rem 0;
    }
    
    .categories-sidebar {
        padding: 1.5rem;
    }
    

    
    .products-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 0.75rem;
    }
    
    .product-card {
        padding: 1rem;
    }
    
    .product-name {
        font-size: 1rem;
    }
    
    .product-image {
        height: 150px;
    }
}

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

    
    .sidebar-promo {
        padding: 0.75rem;
    }
    
    .sidebar-promo-image {
        height: 150px;
    }
}

/* Contact Button Styles */
.contact-button-container {
    position: fixed;
    bottom: 30px;
    left: 30px;
    z-index: 1000;
    font-family: 'Inter', sans-serif;
}

.contact-button {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--primary-gradient);
    border: none;
    color: white;
    font-size: 24px;
    cursor: pointer;
    box-shadow: var(--shadow-lg);
    transition: var(--transition-normal);
    position: relative;
    z-index: 1001;
}

.contact-button:hover {
    transform: scale(1.1);
    box-shadow: 0 8px 25px rgba(37, 99, 235, 0.4);
}

.contact-button.active {
    background: var(--primary-dark);
    transform: scale(1.1);
}

.contact-options {
    position: absolute;
    bottom: 70px;
    left: 0;
    background: white;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-lg);
    padding: 8px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px) scale(0.8);
    transition: var(--transition-normal);
    min-width: 140px;
}

.contact-options.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
}

.contact-option {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    text-decoration: none;
    color: var(--text-color);
    border-radius: var(--border-radius-md);
    transition: var(--transition-fast);
    font-weight: 500;
    font-size: 14px;
}

.contact-option:hover {
    background: var(--light-color);
    color: var(--primary-color);
    transform: translateX(5px);
}

.contact-option.whatsapp:hover {
    color: #25D366;
}

.contact-option.phone:hover {
    color: var(--primary-color);
}

.contact-option.reps:hover {
    color: #8b5cf6;
}

.contact-option i {
    font-size: 18px;
    width: 20px;
    text-align: center;
}

.contact-option span {
    white-space: nowrap;
}

/* Contact button arrow */
.contact-options::after {
    content: '';
    position: absolute;
    top: 100%;
    left: 20px;
    width: 0;
    height: 0;
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    border-top: 8px solid white;
}

/* Mobile responsive */
@media (max-width: 768px) {
    .contact-button-container {
        bottom: 20px;
        left: 20px;
    }
    
    .contact-button {
        width: 55px;
        height: 55px;
        font-size: 20px;
    }
    
    .contact-options {
        bottom: 65px;
        min-width: 130px;
    }
    
    .contact-option {
        padding: 10px 14px;
        font-size: 13px;
    }
    
    .contact-option i {
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    .contact-button-container {
        bottom: 15px;
        left: 15px;
    }
    
    .contact-button {
        width: 50px;
        height: 50px;
        font-size: 18px;
    }
    
    .contact-options {
        bottom: 60px;
        min-width: 120px;
    }
    
    .contact-option {
        padding: 8px 12px;
        font-size: 12px;
    }
    
    .contact-option i {
        font-size: 15px;
    }
}

/* Footer Baditech credit */
.footer-credit { opacity: 0.9; }
.footer-credit .baditech-link { color: #60a5fa; text-decoration: none; font-weight: 600; }
.footer-credit .baditech-link:hover { text-decoration: underline; color: #93c5fd; }

/* Hero slider responsive 2:1 aspect ratio */
.hero-section-modern .hero-background-slider .slider-container {
  width: 100%;
  aspect-ratio: 2 / 1;
  overflow: hidden;
}

.hero-section-modern .hero-background-slider .slider-track,
.hero-section-modern .hero-background-slider .slider-item {
  width: 100%;
  height: 100%;
}

.hero-section-modern .hero-background-slider .slider-item img {
  width: 100%;
  height: 100%;
  object-fit: contain; /* kırpma yok */
  display: block;
  background-color: transparent;
}

/* Mobile: hero min-height equals image height */
@media (max-width: 575.98px) {
  .hero-section-modern {
    min-height: auto;
    height: auto;
  }

  .hero-section-modern .hero-background-slider {
    position: relative;
    top: auto;
    right: auto;
    bottom: auto;
    left: auto;
  }

  .hero-section-modern .hero-background-slider .slider-container {
    aspect-ratio: auto;
    height: auto;
  }

  .hero-section-modern .hero-background-slider .slider-track,
  .hero-section-modern .hero-background-slider .slider-item {
    height: auto;
  }

  .hero-section-modern .hero-background-slider .slider-item img {
    width: 100%;
    height: auto;
    object-fit: contain;
  }
}

/* Newsletter Subscription Styling */
.newsletter-form {
    position: relative;
}

.newsletter-form .input-group {
    border-radius: 50px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.newsletter-form .input-group:hover {
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.newsletter-form .form-control {
    border: none;
    padding: 15px 20px;
    font-size: 16px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
}

.newsletter-form .form-control:focus {
    box-shadow: none;
    border: none;
    background: rgba(255, 255, 255, 1);
}

.newsletter-form .btn {
    border: none;
    padding: 15px 20px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.newsletter-form .btn:hover {
    background: linear-gradient(135deg, #764ba2 0%, #667eea 100%);
    transform: translateY(-1px);
}

.newsletter-form .btn:disabled {
    opacity: 0.7;
    cursor: not-allowed;
    transform: none;
}

.newsletter-form .btn i.fa-spinner {
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.newsletter-message {
    font-size: 14px;
    border-radius: 10px;
    padding: 12px 15px;
    margin-top: 10px;
    border: none;
    animation: slideDown 0.3s ease-out;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.newsletter-message.alert-success {
    background: linear-gradient(135deg, #d4edda 0%, #c3e6cb 100%);
    color: #155724;
    border-left: 4px solid #28a745;
}

.newsletter-message.alert-danger {
    background: linear-gradient(135deg, #f8d7da 0%, #f5c6cb 100%);
    color: #721c24;
    border-left: 4px solid #dc3545;
}

.newsletter-section {
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.1) 0%, rgba(118, 75, 162, 0.1) 100%);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.newsletter-content h4 {
    color: #fff;
    font-weight: 600;
    margin-bottom: 10px;
}

.newsletter-content p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 15px;
}

/* Responsive Newsletter Styling */
@media (max-width: 991.98px) {
    .newsletter-section {
        text-align: center;
    }
    
    .newsletter-content {
        margin-bottom: 20px;
    }
    
    .newsletter-form .form-control {
        padding: 12px 18px;
        font-size: 15px;
    }
    
    .newsletter-form .btn {
        padding: 12px 18px;
    }
}

@media (max-width: 575.98px) {
    .newsletter-form .input-group {
        border-radius: 25px;
    }
    
    .newsletter-form .form-control {
        padding: 10px 15px;
        font-size: 14px;
    }
    
    .newsletter-form .btn {
        padding: 10px 15px;
    }
    
    .newsletter-content h4 {
        font-size: 1.3rem;
    }
}

/* Dynamic Social Media Styling */
.social-icon {
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.social-icon::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    transition: all 0.4s ease;
    transform: translate(-50%, -50%);
}

.social-icon:hover::before {
    width: 100%;
    height: 100%;
}

.social-icon:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.social-link {
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.social-link::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    transition: all 0.4s ease;
    transform: translate(-50%, -50%);
}

.social-link:hover::before {
    width: 100%;
    height: 100%;
}

.social-link:hover {
    transform: translateY(-2px) scale(1.1);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
}

/* Custom social media colors - fallback if not set dynamically */
.social-icon.facebook, .social-link.facebook { background-color: #1877F2 !important; }
.social-icon.twitter, .social-link.twitter { 
    background-color: #000000 !important; 
    color: #ffffff !important;
}
.social-icon.x, .social-link.x { 
    background-color: #000000 !important; 
    color: #ffffff !important;
}
.social-icon.instagram, .social-link.instagram { 
    background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888) !important; 
}
.social-icon.youtube, .social-link.youtube { background-color: #FF0000 !important; }
.social-icon.linkedin, .social-link.linkedin { background-color: #0A66C2 !important; }
.social-icon.tiktok, .social-link.tiktok { background-color: #000000 !important; }
.social-icon.whatsapp, .social-link.whatsapp { background-color: #25D366 !important; }
.social-icon.telegram, .social-link.telegram { background-color: #0088CC !important; }
.social-icon.pinterest, .social-link.pinterest { background-color: #E60023 !important; }
.social-icon.snapchat, .social-link.snapchat { 
    background-color: #FFFC00 !important; 
    color: #000 !important;
}

/* Force white color for X/Twitter icons - Multiple icon libraries */
.social-icon .fa-x-twitter,
.social-link .fa-x-twitter,
.social-icon .fa-brands.fa-x-twitter,
.social-link .fa-brands.fa-x-twitter,
.social-icon .bi-twitter-x,
.social-link .bi-twitter-x,
.social-icon i.bi-twitter-x,
.social-link i.bi-twitter-x {
    color: #ffffff !important;
}

/* Bootstrap Icons Twitter X specific styling */
.bi-twitter-x {
    font-size: 1rem !important;
    color: #ffffff !important;
}

/* Custom styling for Twitter/X icons in social containers */
.social-icon.twitter i,
.social-link.twitter i,
.social-icon[title*="X"] i,
.social-link[title*="X"] i {
    color: #ffffff !important;
}

/* Custom X Icon for Twitter/X */
.custom-x-icon {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    font-weight: bold;
    font-size: 1.2em;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.custom-x-icon::before {
    content: "𝕏";
    font-size: 1.1em;
    font-weight: 900;
}

/* Alternative X icon using regular X */
.simple-x-icon::before {
    content: "X";
    font-weight: 900;
    font-size: 1.1em;
}

/* Custom X-Twitter Icon - Multiple Solutions */
.custom-x-twitter-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 1em;
    height: 1em;
    position: relative;
}

/* Solution 1: SVG via CSS */
.custom-x-twitter-icon::before {
    content: '';
    display: inline-block;
    width: 16px;
    height: 16px;
    background-image: url("data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMjQiIGhlaWdodD0iMjQiIHZpZXdCb3g9IjAgMCAyNCAyNCIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHBhdGggZD0iTTE4LjMgNS43MUwxMi4zOSAxMi4wNEwxOSAyMC44NUgxNy4xNEwxMS44NyAxMy41TDcuNTggMjAuODVINS41NUw5LjU3IDEzLjU3TDMuNDMgNS43MUg1LjA2TDkuODYgMTEuNzVMMTMuNjkgNS43MUgxOC4zWiIgZmlsbD0id2hpdGUiLz4KPC9zdmc+");
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}

/* Solution 2: Using Unicode X character */
.unicode-x-icon::before {
    content: "𝕏";
    font-size: 16px;
    font-weight: 900;
    color: white;
}

/* Solution 3: CSS-only X shape */
.css-x-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 16px;
    height: 16px;
    position: relative;
}

.css-x-icon::before,
.css-x-icon::after {
    content: '';
    position: absolute;
    width: 12px;
    height: 2px;
    background-color: white;
    border-radius: 1px;
}

.css-x-icon::before {
    transform: rotate(45deg);
}

.css-x-icon::after {
    transform: rotate(-45deg);
}

/* Solution 4: Bootstrap Icons CDN */
.bootstrap-x-icon::before {
    content: '';
    display: inline-block;
    width: 16px;
    height: 16px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='white' class='bi bi-twitter-x' viewBox='0 0 16 16'%3E%3Cpath d='M12.6.75h2.454l-5.36 6.142L16 15.25h-4.937l-3.867-5.07-4.425 5.07H.316l5.733-6.57L0 .75h5.063l3.495 4.633L12.601.75Zm-.86 13.028h1.36L4.323 2.145H2.865z'/%3E%3C/svg%3E");
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}

/* Solution 5: Simple Text-based X (Most reliable fallback) */
.simple-text-x {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 1em;
    height: 1em;
    font-family: "Arial", "Helvetica", sans-serif;
    font-weight: 900;
    font-size: 16px;
    color: white !important;
}

.simple-text-x::before {
    content: "𝕏";
    color: white !important;
    font-size: 14px;
    font-weight: 900;
    line-height: 1;
}

/* Fallback if Unicode doesn't work */
.simple-text-x.fallback::before {
    content: "X";
    color: white !important;
    font-size: 14px;
    font-weight: 900;
    line-height: 1;
}

/* Responsive social media adjustments */
@media (max-width: 768px) {
    .social-icons {
        justify-content: center;
    }
    
    .social-icon, .social-link {
        margin: 0 5px 10px 5px;
    }
}