/* Genel Stiller */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: #1a1a1a;
    background: #fafafa;
    padding-top: 120px; /* Duyuru bar + top bar + navbar için yer aç */
}

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

.announcement-bar {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 8px 0;
    font-size: 14px;
    text-align: center;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1002;
    font-weight: 500;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

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

.announcement-text {
    display: inline-block;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { opacity: 1; }
    50% { opacity: 0.8; }
    100% { opacity: 1; }
}

.top-bar {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    color: #e8e8e8;
    padding: 6px 0;
    font-size: 11px;
    border-bottom: 1px solid #333;
    position: fixed;
    top: 35px;
    left: 0;
    right: 0;
    z-index: 1001;
    font-weight: 300;
}

.top-bar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
}

.social-media {
    display: flex;
    gap: 8px;
}

.social-link {
    color: #ccc;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.2s ease;
    padding: 2px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.social-link:hover {
    color: white;
}

.social-link i {
    transition: color 0.2s ease;
}

.announcement {
    flex: 1;
    text-align: center;
    font-weight: 400;
    color: #ccc;
}

.location {
    display: flex;
    align-items: center;
    gap: 5px;
    font-weight: 400;
    cursor: pointer;
    transition: color 0.2s ease;
    color: #ccc;
}

.location a {
    display: flex;
    align-items: center;
    gap: 5px;
    color: #ccc;
    text-decoration: none;
    transition: color 0.2s ease;
}

.location a:hover {
    color: white;
}

.location:hover {
    color: white;
}

.location i {
    color: #999;
    font-size: 12px;
}

.navbar {
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    padding: 18px 0;
    box-shadow: 0 2px 20px rgba(0,0,0,0.05);
    position: fixed;
    top: 60px;
    left: 0;
    right: 0;
    z-index: 1000;
    transition: all 0.3s ease;
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.98);
    border-bottom: 1px solid rgba(0,0,0,0.08);
    box-shadow: 0 4px 30px rgba(0,0,0,0.08);
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    position: relative;
}

/* Ana Navigasyon */
.main-nav {
    display: flex;
    gap: 15px;
    align-items: center;
    flex: 0 0 auto;
    margin-right: auto;
    margin-left: -40px;
}

.nav-item {
    padding: 8px 0;
    color: #2c2c2c;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 400;
    transition: all 0.3s ease;
    position: relative;
    white-space: nowrap;
    letter-spacing: 0.3px;
}

.nav-item:hover {
    color: #1a1a1a;
}

.nav-item::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: #2c3e50;
    transition: width 0.3s ease;
}

.nav-item:hover::after {
    width: 100%;
}

.logo {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    justify-content: center;
}

.logo-img {
    height: 50px;
    width: auto;
    max-width: 200px;
    object-fit: contain;
}

.search-section {
    position: relative;
    flex: 0 0 auto;
}

.search-toggle {
    background: none;
    border: none;
    color: #333;
    font-size: 18px;
    cursor: pointer;
    padding: 10px;
    border-radius: 50%;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
}

.search-toggle:hover {
    background: #f8f9fa;
    color: #2c3e50;
}

.search-box {
    position: absolute;
    top: 100%;
    right: 0;
    display: flex;
    background: white;
    border: 1px solid #e0e0e0;
    border-radius: 25px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.15);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 1001;
    min-width: 250px;
}

.search-box.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.search-box:focus-within {
    border-color: #2c3e50;
    box-shadow: 0 5px 20px rgba(44, 62, 80, 0.2);
}

.search-input {
    flex: 1;
    border: none;
    background: transparent;
    padding: 12px 15px;
    font-size: 14px;
    outline: none;
    color: #333;
}

.search-input::placeholder {
    color: #999;
}

.search-btn {
    background: #2c3e50;
    color: white;
    border: none;
    padding: 12px 15px;
    cursor: pointer;
    transition: background 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.search-btn:hover {
    background: #34495e;
}

/* Hero Section */
.hero-section {
    position: relative;
    height: calc(100vh - 80px);
    overflow: hidden;
}

.hero-slider {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.slide.active {
    opacity: 1;
}

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

.hero-content {
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(15px);
}

.hero-title {
    font-size: 3.5rem;
    color: white;
    margin-bottom: 25px;
    text-shadow: 2px 2px 12px rgba(0,0,0,0.6);
    font-weight: 300;
    line-height: 1.1;
    letter-spacing: 1px;
}

.hero-description {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
    max-width: 600px;
    margin: 0 auto;
    text-shadow: 1px 1px 6px rgba(0,0,0,0.6);
    line-height: 1.6;
    font-weight: 300;
    letter-spacing: 0.5px;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn {
    padding: 15px 30px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
    display: inline-block;
    border: 2px solid transparent;
}

.btn-primary {
    background: #2c3e50;
    color: white;
    border-color: #2c3e50;
}

.btn-primary:hover {
    background: #34495e;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(44, 62, 80, 0.3);
}

.btn-secondary {
    background: transparent;
    color: white;
    border-color: white;
}

.btn-secondary:hover {
    background: white;
    color: #2c3e50;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 255, 255, 0.3);
}

/* Slider Navigation */
.slider-nav {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 3;
}

.slider-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: 2px solid white;
    background: transparent;
    cursor: pointer;
    transition: all 0.3s ease;
}

.slider-dot.active {
    background: white;
}

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

/* Responsive Tasarım */
@media (max-width: 768px) {
    .top-bar .container {
        flex-direction: column;
        text-align: center;
        gap: 5px;
    }
    
    .announcement {
        order: -1;
        font-size: 11px;
    }
    
    .social-media {
        justify-content: center;
    }
    
    /* Navbar Responsive */
    .navbar .container {
        flex-direction: column;
        gap: 15px;
    }
    
    .categories {
        order: 1;
        width: 100%;
    }
    
    .main-nav {
        justify-content: center;
        flex-wrap: wrap;
        gap: 12px;
    }
    
    .nav-item {
        padding: 6px 0;
        font-size: 12px;
    }
    
    .logo {
        position: static;
        transform: none;
        order: 2;
    }
    
    .search-section {
        order: 3;
    }
    
    .search-box {
        min-width: 200px;
        right: auto;
        left: 50%;
        transform: translateX(-50%) translateY(-10px);
    }
    
    .search-box.active {
        transform: translateX(-50%) translateY(0);
    }
    
    .logo-img {
        height: 40px;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-description {
        font-size: 1.1rem;
        padding: 0 20px;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .btn {
        padding: 12px 25px;
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .top-bar {
        padding: 3px 0;
    }
    
    .announcement {
        font-size: 10px;
        line-height: 1.3;
    }
    
    .social-link {
        font-size: 12px;
    }
    
    /* Navbar Mobile */
    .navbar {
        padding: 10px 0;
    }
    
    .main-nav {
        gap: 8px;
    }
    
    .nav-item {
        padding: 5px 0;
        font-size: 11px;
    }
    
    .logo-img {
        height: 35px;
    }
    
    .search-toggle {
        width: 35px;
        height: 35px;
        font-size: 16px;
    }
    
    .search-box {
        min-width: 180px;
    }
    
    .search-input {
        padding: 10px 12px;
        font-size: 13px;
    }
    
    .search-btn {
        padding: 10px 12px;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-description {
        font-size: 1rem;
    }
    
    .btn {
        padding: 10px 20px;
        font-size: 13px;
    }
    
    .content-wrapper {
        gap: 30px;
    }
    
    .text-side h2 {
        font-size: 1.8rem;
    }
    
    .image-item img {
        height: 250px;
    }
    
    .process-timeline {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .step-content p {
        max-width: 300px;
    }
    
    .gallery-container {
        grid-template-columns: 1fr;
        height: 160px;
        gap: 12px;
    }
    
    .gallery-overlay {
        padding: 15px 12px 12px;
    }
    
    .gallery-overlay h3 {
        font-size: 14px;
    }
    
    .gallery-overlay p {
        font-size: 12px;
    }
    
    .offer-card {
        padding: 20px;
    }
    
    .offer-content h3 {
        font-size: 1.1rem;
    }
    
    .new-price {
        font-size: 1.3rem;
    }
    
    .review-card {
        padding: 20px;
    }
    
    .order-form {
        padding: 25px;
    }
    
    .order-steps {
        flex-direction: column;
        gap: 15px;
    }
    
    /* Sayfa İçerik Responsive */
    .page-header h1 {
        font-size: 2rem;
    }
    
    .categories-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .category-card {
        height: 250px;
    }
    
    .filters-section {
        flex-direction: column;
        gap: 20px;
        align-items: stretch;
    }
    
    .filter-tabs {
        justify-content: center;
        flex-wrap: wrap;
    }
    
    .product-detail {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .main-image {
        height: 400px;
    }
    
    .thumbnail-images {
        justify-content: center;
    }
    
    .product-actions {
        flex-direction: column;
        gap: 10px;
    }
    
    .story-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .values-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .team-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .certificates-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .mission-vision-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .contact-info-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .contact-form-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .social-links {
        flex-wrap: wrap;
        gap: 20px;
    }
    
    .policy-content {
        padding: 30px 20px;
    }
    
    /* Sayfa İçerik Mobile */
    .page-header h1 {
        font-size: 1.8rem;
    }
    
    .category-card {
        height: 200px;
    }
    
    .category-overlay {
        padding: 20px 15px 15px;
    }
    
    .category-overlay h3 {
        font-size: 1.1rem;
    }
    
    .category-overlay p {
        font-size: 0.8rem;
    }
    
    .filter-tab {
        padding: 8px 15px;
        font-size: 0.8rem;
    }
    
    .main-image {
        height: 300px;
    }
    
    .thumbnail {
        width: 60px;
        height: 60px;
    }
    
    .values-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .value-card {
        padding: 30px 15px;
    }
    
    .value-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .stat-card {
        padding: 30px 15px;
    }
    
    .stat-number {
        font-size: 2.5rem;
    }
    
    .team-member {
        padding: 20px;
    }
    
    .member-photo {
        width: 120px;
        height: 120px;
    }
    
    .certificates-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .certificate-item {
        padding: 20px 15px;
    }
    
    .mission,
    .vision {
        padding: 30px 20px;
    }
    
    .contact-info-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .contact-info-card {
        padding: 30px 15px;
    }
    
    .contact-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
    
    .contact-form {
        padding: 30px 20px;
    }
    
    .contact-map {
        padding: 30px 20px;
    }
    
    .faq-question {
        padding: 20px;
    }
    
    .faq-question h3 {
        font-size: 1rem;
    }
    
    .faq-answer {
        padding: 0 20px 20px;
    }
    
    .social-link-large {
        padding: 20px;
        min-width: 100px;
    }
    
    .social-link-large i {
        font-size: 1.5rem;
    }
    
    .policy-content {
        padding: 20px 15px;
    }
    
    .policy-section h2 {
        font-size: 1.3rem;
    }
    
    .policy-section h3 {
        font-size: 1.1rem;
    }
    
}

/* Genel Section Stilleri */
.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    font-size: 2.2rem;
    color: #2c2c2c;
    margin-bottom: 15px;
    font-weight: 300;
    letter-spacing: 1px;
}

.section-header p {
    font-size: 1rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
    font-weight: 300;
}

/* Süreç Bölümü */
.process-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #fafafa 0%, #f5f5f5 100%);
}

.process-timeline {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    position: relative;
}

.process-timeline::before {
    content: '';
    position: absolute;
    top: 30px;
    left: 12.5%;
    right: 12.5%;
    height: 1px;
    background: #e0e0e0;
    z-index: 1;
}

.process-step {
    position: relative;
    text-align: center;
    z-index: 2;
}

.step-number {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #f8f8f8 0%, #e8e8e8 100%);
    color: #2c2c2c;
    border: 2px solid rgba(0,0,0,0.05);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    font-weight: 300;
    margin: 0 auto 25px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
}

.process-step:hover .step-number {
    background: linear-gradient(135deg, #2c2c2c 0%, #1a1a1a 100%);
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.step-content {
    text-align: center;
}

.step-content h3 {
    font-size: 1.1rem;
    color: #2c2c2c;
    margin-bottom: 12px;
    font-weight: 400;
    letter-spacing: 0.8px;
}

.step-content p {
    color: #666;
    line-height: 1.6;
    font-size: 0.85rem;
    max-width: 200px;
    margin: 0 auto;
    font-weight: 300;
}


/* Görsel ve İçerik Bölümü */
.image-content-section {
    padding: 100px 0;
    background: white;
}

.content-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.images-side {
    position: relative;
}

.image-stack {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.image-item {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.image-item:hover {
    transform: translateY(-5px);
}

.image-item img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

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

.text-side h2 {
    font-size: 2.2rem;
    color: #2c2c2c;
    margin-bottom: 25px;
    font-weight: 300;
    line-height: 1.2;
    letter-spacing: 1px;
}

.text-side p {
    color: #666;
    line-height: 1.8;
    margin-bottom: 20px;
    font-size: 1rem;
    font-weight: 300;
}

.features-list {
    margin-top: 30px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
}

.feature-item i {
    width: 18px;
    height: 18px;
    background: linear-gradient(135deg, #2c2c2c 0%, #1a1a1a 100%);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.7rem;
    flex-shrink: 0;
}

.feature-item span {
    color: #2c2c2c;
    font-weight: 400;
    font-size: 0.95rem;
}

/* Öne Çıkan Ürünler */
.featured-products {
    padding: 100px 0;
    background: linear-gradient(135deg, #fafafa 0%, #f5f5f5 100%);
}

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

.product-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    border: 1px solid rgba(0,0,0,0.05);
}

.product-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.12);
}

.product-image {
    position: relative;
    height: 250px;
    overflow: hidden;
}

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

.product-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: #e74c3c;
    color: white;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

.product-info {
    padding: 25px;
}

.product-info h3 {
    font-size: 1.2rem;
    color: #2c2c2c;
    margin-bottom: 10px;
    font-weight: 400;
    letter-spacing: 0.5px;
}

.product-description {
    color: #666;
    margin-bottom: 15px;
    font-size: 0.85rem;
    font-weight: 300;
}

.product-price {
    margin-bottom: 20px;
}

.old-price {
    text-decoration: line-through;
    color: #bdc3c7;
    margin-right: 10px;
}

.new-price {
    font-size: 1.2rem;
    font-weight: 700;
    color: #e74c3c;
}

.product-btn {
    background: linear-gradient(135deg, #2c2c2c 0%, #1a1a1a 100%);
    color: white;
    padding: 12px 25px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 400;
    transition: all 0.3s ease;
    display: inline-block;
    width: 100%;
    text-align: center;
    letter-spacing: 0.5px;
    font-size: 0.9rem;
}

.product-btn:hover {
    background: linear-gradient(135deg, #1a1a1a 0%, #0f0f0f 100%);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

/* Hakkımızda Bölümü */
.about-section {
    padding: 100px 0;
    background: white;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-text h2 {
    font-size: 2.2rem;
    color: #2c2c2c;
    margin-bottom: 25px;
    font-weight: 300;
    letter-spacing: 1px;
}

.about-text p {
    color: #666;
    line-height: 1.8;
    margin-bottom: 20px;
    font-size: 1rem;
    font-weight: 300;
}

.stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.stat-item {
    text-align: center;
}

.stat-item h3 {
    font-size: 2.2rem;
    color: #2c2c2c;
    font-weight: 300;
    margin-bottom: 5px;
    letter-spacing: 1px;
}

.stat-item p {
    color: #666;
    font-weight: 400;
    font-size: 0.9rem;
}

.about-image img {
    width: 100%;
    border-radius: 15px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
}

/* Tasarım Galerisi */
.design-gallery {
    padding: 100px 0;
    background: white;
}

.gallery-container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    max-width: 1000px;
    margin: 0 auto;
    height: 280px;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(0,0,0,0.08);
    border: 1px solid rgba(0,0,0,0.05);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.gallery-item:hover img {
    transform: scale(1.08);
}

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0,0,0,0.8));
    color: white;
    padding: 20px 15px 15px;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.gallery-item:hover .gallery-overlay {
    transform: translateY(0);
}

.gallery-overlay h3 {
    font-size: 15px;
    font-weight: 400;
    margin-bottom: 5px;
    letter-spacing: 0.5px;
}

.gallery-overlay p {
    font-size: 12px;
    opacity: 0.9;
    font-weight: 300;
}


/* Özel Kampanyalar */
.special-offers {
    padding: 100px 0;
    background: linear-gradient(135deg, #fafafa 0%, #f5f5f5 100%);
}

.offers-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.offer-card {
    background: white;
    border-radius: 20px;
    padding: 30px;
    position: relative;
    box-shadow: 0 8px 25px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    border: 1px solid rgba(0,0,0,0.05);
}

.offer-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.12);
}

.offer-badge {
    position: absolute;
    top: -10px;
    right: 20px;
    background: linear-gradient(135deg, #2c2c2c 0%, #1a1a1a 100%);
    color: white;
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 0.5px;
}

/* Kampanya Badge Tipleri */
.offer-card.premium .offer-badge {
    background: linear-gradient(135deg, #f39c12 0%, #e67e22 100%);
}

.offer-card.limited .offer-badge {
    background: linear-gradient(135deg, #e74c3c 0%, #c0392b 100%);
}

.offer-card.exclusive .offer-badge {
    background: linear-gradient(135deg, #9b59b6 0%, #8e44ad 100%);
}

.offer-card.special .offer-badge {
    background: linear-gradient(135deg, #2c2c2c 0%, #1a1a1a 100%);
}

/* WhatsApp Butonları */
.whatsapp-btn {
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%) !important;
    color: white !important;
    border: none !important;
    transition: all 0.3s ease;
}

.whatsapp-btn:hover {
    background: linear-gradient(135deg, #128C7E 0%, #0F7A6B 100%) !important;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(37, 211, 102, 0.3);
}

.whatsapp-btn i {
    margin-right: 8px;
    font-size: 16px;
}

.offer-btn.whatsapp-btn {
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%) !important;
    color: white !important;
    border: none !important;
}

.offer-btn.whatsapp-btn:hover {
    background: linear-gradient(135deg, #128C7E 0%, #0F7A6B 100%) !important;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(37, 211, 102, 0.3);
}

.product-btn.whatsapp-btn {
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%) !important;
    color: white !important;
    border: none !important;
}

.product-btn.whatsapp-btn:hover {
    background: linear-gradient(135deg, #128C7E 0%, #0F7A6B 100%) !important;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(37, 211, 102, 0.3);
}

.btn-primary.whatsapp-btn {
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%) !important;
    color: white !important;
    border: none !important;
}

.btn-primary.whatsapp-btn:hover {
    background: linear-gradient(135deg, #128C7E 0%, #0F7A6B 100%) !important;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(37, 211, 102, 0.3);
}

.btn-secondary.whatsapp-btn {
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%) !important;
    color: white !important;
    border: none !important;
}

.btn-secondary.whatsapp-btn:hover {
    background: linear-gradient(135deg, #128C7E 0%, #0F7A6B 100%) !important;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(37, 211, 102, 0.3);
}

.offer-content h3 {
    font-size: 1.3rem;
    color: #2c2c2c;
    margin-bottom: 10px;
    font-weight: 400;
    letter-spacing: 0.5px;
}

.offer-content p {
    color: #666;
    margin-bottom: 20px;
    font-size: 0.9rem;
    font-weight: 300;
}

.offer-price {
    margin-bottom: 15px;
}

.old-price {
    text-decoration: line-through;
    color: #999;
    margin-right: 10px;
    font-size: 1rem;
}

.new-price {
    font-size: 1.5rem;
    font-weight: 300;
    color: #2c2c2c;
    letter-spacing: 1px;
}

.offer-discount {
    background: linear-gradient(135deg, #e74c3c 0%, #c0392b 100%);
    color: white;
    padding: 5px 15px;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 500;
    display: inline-block;
    margin-bottom: 20px;
}

.offer-btn {
    background: linear-gradient(135deg, #2c2c2c 0%, #1a1a1a 100%);
    color: white;
    padding: 12px 30px;
    border: none;
    border-radius: 30px;
    font-weight: 400;
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
    font-size: 0.9rem;
}

.offer-btn:hover {
    background: linear-gradient(135deg, #1a1a1a 0%, #0f0f0f 100%);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

/* Müşteri Yorumları */
.customer-reviews {
    padding: 100px 0;
    background: white;
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.review-card {
    background: #fafafa;
    padding: 30px;
    border-radius: 20px;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid rgba(0,0,0,0.05);
}

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

.review-stars {
    color: #ffd700;
    font-size: 1.2rem;
    margin-bottom: 20px;
}

.review-card p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 25px;
    font-style: italic;
    font-weight: 300;
}

.review-author {
    display: flex;
    align-items: center;
    justify-content: center;
}

.author-info h4 {
    color: #2c2c2c;
    font-weight: 400;
    margin-bottom: 5px;
    letter-spacing: 0.5px;
}

.author-info span {
    color: #999;
    font-size: 0.9rem;
    font-weight: 300;
}

/* Hızlı Sipariş */
.quick-order {
    padding: 100px 0;
    background: linear-gradient(135deg, #2c2c2c 0%, #1a1a1a 100%);
    color: white;
}

.quick-order-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.order-text h2 {
    font-size: 2.2rem;
    margin-bottom: 20px;
    font-weight: 300;
    letter-spacing: 1px;
}

.order-text p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    margin-bottom: 40px;
    font-weight: 300;
}

.order-steps {
    display: flex;
    gap: 30px;
}

.step {
    text-align: center;
    flex: 1;
}

.step .step-number {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    font-weight: 300;
    margin: 0 auto 10px;
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.step span {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
    font-weight: 300;
}

.order-form {
    background: rgba(255, 255, 255, 0.05);
    padding: 40px;
    border-radius: 20px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.order-form h3 {
    font-size: 1.5rem;
    margin-bottom: 25px;
    font-weight: 400;
    letter-spacing: 0.5px;
}

.order-form input,
.order-form select {
    width: 100%;
    padding: 15px;
    margin-bottom: 20px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.1);
    color: white;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.order-form input::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

.order-form input:focus,
.order-form select:focus {
    outline: none;
    border-color: rgba(255, 255, 255, 0.4);
    background: rgba(255, 255, 255, 0.15);
}

.order-form button {
    background: white;
    color: #2c2c2c;
    padding: 15px 30px;
    border: none;
    border-radius: 30px;
    font-weight: 400;
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
    font-size: 0.9rem;
}

.order-form button:hover {
    background: rgba(255, 255, 255, 0.9);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

/* Sayfa İçerik Stilleri */
.page-content {
    margin-top: 80px;
    padding: 60px 0;
}

.page-header {
    text-align: center;
    margin-bottom: 60px;
}

.page-header h1 {
    font-size: 2.5rem;
    color: #2c2c2c;
    margin-bottom: 15px;
    font-weight: 300;
    letter-spacing: 1px;
}

.page-header p {
    font-size: 1.1rem;
    color: #666;
    font-weight: 300;
}

/* Breadcrumb */
.breadcrumb {
    margin-bottom: 30px;
    font-size: 0.9rem;
}

.breadcrumb a {
    color: #666;
    text-decoration: none;
    transition: color 0.3s ease;
}

.breadcrumb a:hover {
    color: #2c2c2c;
}

.breadcrumb span {
    color: #999;
    margin: 0 10px;
}

/* Kategoriler Sayfası */
.categories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-bottom: 80px;
}

.category-card {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    height: 300px;
}

.category-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.12);
}

.category-image {
    position: relative;
    width: 100%;
    height: 100%;
}

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

.category-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0,0,0,0.8));
    color: white;
    padding: 30px 25px 25px;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.category-card:hover .category-overlay {
    transform: translateY(0);
}

.category-overlay h3 {
    font-size: 1.3rem;
    margin-bottom: 8px;
    font-weight: 400;
    letter-spacing: 0.5px;
}

.category-overlay p {
    font-size: 0.9rem;
    margin-bottom: 20px;
    opacity: 0.9;
    font-weight: 300;
}

.category-btn {
    background: white;
    color: #2c2c2c;
    padding: 10px 20px;
    border-radius: 25px;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 400;
    transition: all 0.3s ease;
    display: inline-block;
}

.category-btn:hover {
    background: #f8f9fa;
    transform: translateY(-2px);
}

/* Ürünler Sayfası */
.filters-section {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
    padding: 20px 0;
    border-bottom: 1px solid #e0e0e0;
}

.filter-tabs {
    display: flex;
    gap: 15px;
}

.filter-tab {
    background: none;
    border: 1px solid #e0e0e0;
    padding: 10px 20px;
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.9rem;
    color: #666;
}

.filter-tab.active,
.filter-tab:hover {
    background: #2c2c2c;
    color: white;
    border-color: #2c2c2c;
}

.sort-section select {
    padding: 10px 15px;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    background: white;
    font-size: 0.9rem;
    color: #666;
}

.products-grid-large {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.product-actions {
    position: absolute;
    top: 15px;
    right: 15px;
    display: flex;
    gap: 10px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

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

.action-btn {
    width: 35px;
    height: 35px;
    background: rgba(255, 255, 255, 0.9);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    color: #666;
}

.action-btn:hover {
    background: white;
    color: #2c2c2c;
    transform: scale(1.1);
}

/* Sayfalama */
.pagination {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 40px;
}

.page-btn {
    width: 40px;
    height: 40px;
    border: 1px solid #e0e0e0;
    background: white;
    border-radius: 8px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    color: #666;
}

.page-btn.active,
.page-btn:hover {
    background: #2c2c2c;
    color: white;
    border-color: #2c2c2c;
}

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

/* Ürün Detay Sayfası */
.product-detail {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    margin-bottom: 80px;
}

.product-gallery {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.main-image {
    width: 100%;
    height: 500px;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0,0,0,0.08);
}

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

.thumbnail-images {
    display: flex;
    gap: 15px;
}

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

.thumbnail.active,
.thumbnail:hover {
    border-color: #2c2c2c;
}

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

.product-rating {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
}

.stars {
    color: #ffd700;
    font-size: 1.1rem;
}

.rating-text {
    color: #666;
    font-size: 0.9rem;
}

.product-options {
    margin: 30px 0;
}

.option-group {
    margin-bottom: 25px;
}

.option-group label {
    display: block;
    margin-bottom: 10px;
    font-weight: 400;
    color: #2c2c2c;
}

.color-options {
    display: flex;
    gap: 10px;
}

.color-option {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 2px solid transparent;
    cursor: pointer;
    transition: all 0.3s ease;
}

.color-option.active,
.color-option:hover {
    border-color: #2c2c2c;
    transform: scale(1.1);
}

.fabric-select {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    background: white;
    font-size: 0.9rem;
    color: #666;
}

.product-features {
    margin: 30px 0;
}

.product-features h3 {
    font-size: 1.2rem;
    margin-bottom: 15px;
    color: #2c2c2c;
    font-weight: 400;
}

.product-features ul {
    list-style: none;
    padding: 0;
}

.product-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
    color: #666;
}

.product-features i {
    color: #2c2c2c;
    font-size: 0.8rem;
}

.product-actions {
    display: flex;
    gap: 15px;
    margin: 30px 0;
}

.btn-primary,
.btn-secondary {
    padding: 15px 30px;
    border-radius: 30px;
    font-weight: 400;
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.9rem;
    border: none;
    text-decoration: none;
    display: inline-block;
    text-align: center;
}

.btn-primary {
    background: linear-gradient(135deg, #2c2c2c 0%, #1a1a1a 100%);
    color: white;
    flex: 1;
}

.btn-primary:hover {
    background: linear-gradient(135deg, #1a1a1a 0%, #0f0f0f 100%);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.btn-secondary {
    background: white;
    color: #2c2c2c;
    border: 1px solid #e0e0e0;
    flex: 1;
}

.btn-secondary:hover {
    background: #f8f9fa;
    border-color: #2c2c2c;
}

.btn-favorite {
    width: 50px;
    height: 50px;
    border: 1px solid #e0e0e0;
    background: white;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    color: #666;
}

.btn-favorite:hover {
    background: #ff6b6b;
    color: white;
    border-color: #ff6b6b;
}

.product-shipping {
    margin-top: 30px;
}

.shipping-info {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
    color: #666;
    font-size: 0.9rem;
}

.shipping-info i {
    color: #2c2c2c;
    width: 20px;
}

/* Ürün Sekmeleri */
.product-tabs {
    margin-bottom: 80px;
}

.tab-nav {
    display: flex;
    border-bottom: 1px solid #e0e0e0;
    margin-bottom: 30px;
}

.tab-btn {
    background: none;
    border: none;
    padding: 15px 25px;
    cursor: pointer;
    font-size: 0.9rem;
    color: #666;
    border-bottom: 2px solid transparent;
    transition: all 0.3s ease;
}

.tab-btn.active,
.tab-btn:hover {
    color: #2c2c2c;
    border-bottom-color: #2c2c2c;
}

.tab-panel {
    display: none;
}

.tab-panel.active {
    display: block;
}

.tab-panel h3 {
    font-size: 1.3rem;
    margin-bottom: 20px;
    color: #2c2c2c;
    font-weight: 400;
}

.tab-panel p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 15px;
}

.specs-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 20px;
}

.specs-table td {
    padding: 12px 0;
    border-bottom: 1px solid #e0e0e0;
}

.specs-table td:first-child {
    font-weight: 400;
    color: #2c2c2c;
    width: 30%;
}

.specs-table td:last-child {
    color: #666;
}

.reviews-summary {
    margin-bottom: 30px;
}

.rating-overview {
    text-align: center;
    padding: 20px;
    background: #f8f9fa;
    border-radius: 15px;
}

.rating-number {
    font-size: 2.5rem;
    font-weight: 300;
    color: #2c2c2c;
    margin-bottom: 5px;
}

.rating-stars {
    color: #ffd700;
    font-size: 1.2rem;
    margin-bottom: 5px;
}

.rating-count {
    color: #666;
    font-size: 0.9rem;
}

.reviews-list {
    margin-top: 30px;
}

.review-item {
    padding: 20px 0;
    border-bottom: 1px solid #e0e0e0;
}

.review-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
}

.reviewer-info h4 {
    font-size: 1rem;
    color: #2c2c2c;
    margin-bottom: 5px;
    font-weight: 400;
}

.review-rating {
    color: #ffd700;
    font-size: 0.9rem;
}

.review-date {
    color: #999;
    font-size: 0.8rem;
}

.review-item p {
    color: #666;
    line-height: 1.5;
    font-style: italic;
}

/* Hakkımızda Sayfası */
.story-section {
    margin-bottom: 80px;
}

.story-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.story-text h2 {
    font-size: 2.2rem;
    color: #2c2c2c;
    margin-bottom: 25px;
    font-weight: 300;
    letter-spacing: 1px;
}

.story-text p {
    color: #666;
    line-height: 1.8;
    margin-bottom: 20px;
    font-size: 1rem;
    font-weight: 300;
}

.story-image img {
    width: 100%;
    border-radius: 15px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
}

.values-section {
    margin-bottom: 80px;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.value-card {
    text-align: center;
    padding: 40px 20px;
    background: white;
    border-radius: 20px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    border: 1px solid rgba(0,0,0,0.05);
}

.value-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.12);
}

.value-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #f8f8f8 0%, #e8e8e8 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    color: #2c2c2c;
    font-size: 1.8rem;
}

.value-card h3 {
    font-size: 1.3rem;
    color: #2c2c2c;
    margin-bottom: 15px;
    font-weight: 400;
    letter-spacing: 0.5px;
}

.value-card p {
    color: #666;
    line-height: 1.6;
    font-size: 0.9rem;
    font-weight: 300;
}

.stats-section {
    margin-bottom: 80px;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
}

.stat-card {
    text-align: center;
    padding: 40px 20px;
    background: linear-gradient(135deg, #fafafa 0%, #f5f5f5 100%);
    border-radius: 20px;
    transition: all 0.3s ease;
}

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

.stat-number {
    font-size: 3rem;
    color: #2c2c2c;
    font-weight: 300;
    margin-bottom: 10px;
    letter-spacing: 1px;
}

.stat-label {
    color: #666;
    font-size: 1rem;
    font-weight: 400;
}

.team-section {
    margin-bottom: 80px;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.team-member {
    text-align: center;
    background: white;
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    border: 1px solid rgba(0,0,0,0.05);
}

.team-member:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.12);
}

.member-photo {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    overflow: hidden;
    margin: 0 auto 25px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}

.member-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.member-info h3 {
    font-size: 1.3rem;
    color: #2c2c2c;
    margin-bottom: 8px;
    font-weight: 400;
    letter-spacing: 0.5px;
}

.member-position {
    color: #666;
    font-size: 0.9rem;
    margin-bottom: 15px;
    font-weight: 400;
}

.member-description {
    color: #666;
    line-height: 1.6;
    font-size: 0.9rem;
    font-weight: 300;
}

.certificates-section {
    margin-bottom: 80px;
}

.certificates-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
}

.certificate-item {
    text-align: center;
    padding: 30px 20px;
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    border: 1px solid rgba(0,0,0,0.05);
}

.certificate-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.12);
}

.certificate-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #2c2c2c 0%, #1a1a1a 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: white;
    font-size: 1.5rem;
}

.certificate-item h3 {
    font-size: 1.1rem;
    color: #2c2c2c;
    margin-bottom: 8px;
    font-weight: 400;
}

.certificate-item p {
    color: #666;
    font-size: 0.8rem;
    font-weight: 300;
}

.mission-vision {
    margin-bottom: 80px;
}

.mission-vision-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.mission,
.vision {
    background: white;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.08);
    border: 1px solid rgba(0,0,0,0.05);
}

.mission h2,
.vision h2 {
    font-size: 1.8rem;
    color: #2c2c2c;
    margin-bottom: 20px;
    font-weight: 300;
    letter-spacing: 1px;
}

.mission p,
.vision p {
    color: #666;
    line-height: 1.8;
    font-size: 1rem;
    font-weight: 300;
}

/* İletişim Sayfası */
.contact-info-section {
    margin-bottom: 80px;
}

.contact-info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.contact-info-card {
    text-align: center;
    padding: 40px 20px;
    background: white;
    border-radius: 20px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    border: 1px solid rgba(0,0,0,0.05);
}

.contact-info-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.12);
}

.contact-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #2c2c2c 0%, #1a1a1a 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    color: white;
    font-size: 1.8rem;
}

.contact-info-card h3 {
    font-size: 1.3rem;
    color: #2c2c2c;
    margin-bottom: 15px;
    font-weight: 400;
    letter-spacing: 0.5px;
}

.contact-info-card p {
    color: #666;
    line-height: 1.6;
    font-size: 0.9rem;
    font-weight: 300;
}

.contact-form-section {
    margin-bottom: 80px;
}

.contact-form-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.contact-form {
    background: white;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.08);
    border: 1px solid rgba(0,0,0,0.05);
}

.contact-form h2 {
    font-size: 1.8rem;
    color: #2c2c2c;
    margin-bottom: 15px;
    font-weight: 300;
    letter-spacing: 1px;
}

.contact-form p {
    color: #666;
    margin-bottom: 30px;
    font-weight: 300;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 15px;
    border: 1px solid #e0e0e0;
    border-radius: 10px;
    font-size: 0.9rem;
    color: #666;
    transition: all 0.3s ease;
    font-family: 'Poppins', sans-serif;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #2c2c2c;
    box-shadow: 0 0 0 3px rgba(44, 44, 44, 0.1);
}

.submit-btn {
    background: linear-gradient(135deg, #2c2c2c 0%, #1a1a1a 100%);
    color: white;
    padding: 15px 30px;
    border: none;
    border-radius: 30px;
    font-weight: 400;
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
    font-size: 0.9rem;
}

.submit-btn:hover {
    background: linear-gradient(135deg, #1a1a1a 0%, #0f0f0f 100%);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.contact-map {
    background: white;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.08);
    border: 1px solid rgba(0,0,0,0.05);
}

.contact-map h2 {
    font-size: 1.8rem;
    color: #2c2c2c;
    margin-bottom: 25px;
    font-weight: 300;
    letter-spacing: 1px;
}

.map-container {
    border-radius: 15px;
    overflow: hidden;
    margin-bottom: 20px;
}

.map-info {
    margin-top: 20px;
}

.map-info p {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
    color: #666;
    font-size: 0.9rem;
}

.map-info i {
    color: #2c2c2c;
    width: 20px;
}

.faq-section {
    margin-bottom: 80px;
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: white;
    border-radius: 15px;
    margin-bottom: 20px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    border: 1px solid rgba(0,0,0,0.05);
    overflow: hidden;
}

.faq-question {
    padding: 25px 30px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
}

.faq-question:hover {
    background: #f8f9fa;
}

.faq-question h3 {
    font-size: 1.1rem;
    color: #2c2c2c;
    font-weight: 400;
    margin: 0;
}

.faq-question i {
    color: #666;
    transition: transform 0.3s ease;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    padding: 0 30px 25px;
    color: #666;
    line-height: 1.6;
    font-weight: 300;
    display: none;
}

.faq-item.active .faq-answer {
    display: block;
}

.social-section {
    margin-bottom: 80px;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 30px;
}

.social-link-large {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    padding: 30px;
    background: white;
    border-radius: 20px;
    text-decoration: none;
    color: #666;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    border: 1px solid rgba(0,0,0,0.05);
    min-width: 120px;
}

.social-link-large:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.12);
    color: #2c2c2c;
}

.social-link-large i {
    font-size: 2rem;
}

.social-link-large span {
    font-size: 0.9rem;
    font-weight: 400;
}

/* Politika Sayfaları */
.policy-content {
    max-width: 800px;
    margin: 0 auto;
    background: white;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.08);
    border: 1px solid rgba(0,0,0,0.05);
}

.policy-section {
    margin-bottom: 40px;
}

.policy-section h2 {
    font-size: 1.5rem;
    color: #2c2c2c;
    margin-bottom: 20px;
    font-weight: 400;
    letter-spacing: 0.5px;
}

.policy-section h3 {
    font-size: 1.2rem;
    color: #2c2c2c;
    margin-bottom: 15px;
    font-weight: 400;
    letter-spacing: 0.3px;
}

.policy-section p {
    color: #666;
    line-height: 1.8;
    margin-bottom: 15px;
    font-weight: 300;
}

.policy-section ul {
    margin: 15px 0;
    padding-left: 20px;
}

.policy-section li {
    color: #666;
    line-height: 1.6;
    margin-bottom: 8px;
    font-weight: 300;
}

.contact-info {
    background: #f8f9fa;
    padding: 20px;
    border-radius: 10px;
    margin-top: 20px;
}

.contact-info p {
    margin-bottom: 10px;
    color: #666;
}

.contact-info strong {
    color: #2c2c2c;
}

.policy-footer {
    border-top: 1px solid #e0e0e0;
    padding-top: 20px;
    margin-top: 40px;
    text-align: center;
}

.policy-footer p {
    color: #999;
    font-size: 0.9rem;
    margin-bottom: 5px;
}

/* Footer */
.footer {
    background: #000000;
    color: white;
    padding: 60px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 2fr;
    gap: 30px;
    margin-bottom: 30px;
}

.footer-section h4 {
    color: white;
    margin-bottom: 15px;
    font-size: 1rem;
    font-weight: 500;
}

.footer-section p {
    color: #bdc3c7;
    line-height: 1.5;
    margin-bottom: 15px;
    font-size: 0.9rem;
}

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

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

.footer-section ul li a {
    color: #bdc3c7;
    text-decoration: none;
    transition: color 0.3s ease;
    font-size: 0.85rem;
}

.footer-section ul li a:hover {
    color: white;
}

.footer-logo {
    height: 40px;
    margin-bottom: 15px;
    filter: brightness(0) invert(1);
}

.footer-bottom {
    border-top: 1px solid #333;
    padding-top: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-bottom p {
    color: #bdc3c7;
    margin: 0;
    font-size: 0.85rem;
}

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

.footer-social a {
    width: 30px;
    height: 30px;
    background: #333;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

.footer-social a:hover {
    background: #555;
    transform: translateY(-2px);
}

/* Alert Styles */
.alert {
    padding: 15px;
    margin-bottom: 20px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.alert-success {
    background-color: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.alert-error {
    background-color: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

.alert ul {
    margin: 0;
    padding-left: 20px;
}

.alert li {
    margin-bottom: 5px;
}

.alert li:last-child {
    margin-bottom: 0;
}

/* No Products/Results Styles */
.no-products, .no-results, .search-prompt {
    text-align: center;
    padding: 60px 20px;
    color: #666;
}

.no-products i, .no-results i, .search-prompt i {
    font-size: 48px;
    color: #ddd;
    margin-bottom: 20px;
}

.no-products h3, .no-results h3, .search-prompt h3 {
    margin-bottom: 10px;
    color: #333;
}

/* Responsive Tasarım */
@media (max-width: 768px) {
    .section-header h2 {
        font-size: 2rem;
    }
    
    .process-timeline {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
    
    .process-timeline::before {
        display: none;
    }
    
    .step-content p {
        max-width: 250px;
    }
    
    
    .content-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .text-side h2 {
        font-size: 2rem;
    }
    
    .products-grid {
        grid-template-columns: 1fr;
    }
    
    .about-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .stats {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .gallery-container {
        grid-template-columns: repeat(2, 1fr);
        height: 200px;
        gap: 15px;
    }
    
    .offers-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .reviews-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .quick-order-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .order-steps {
        gap: 20px;
    }
    
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
}
