/* Mum Hediyiye - Ana CSS Dosyası */

/* CSS Değişkenleri */
:root {
    --primary: #f4d9d5;
    --text: #5f6781;
    --bg: #ffffff;
    --white: #ffffff;
    --accent: #25D366;
    --hover: #e6c1bd;
    --border: #E0E0E0;
    --font-primary: 'Inter', sans-serif;
    --font-heading: 'Montserrat', sans-serif;
}

/* Genel Stiller */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Güvenlik Önlemleri - CSS Koruma */
body {
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    -webkit-touch-callout: none;
    -webkit-tap-highlight-color: transparent;
}

img {
    pointer-events: none;
}

/* Ürün resimleri için özel stil */
.product-image img {
    pointer-events: auto;
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}



body {
    font-family: var(--font-primary);
    color: var(--text);
    line-height: 1.6;
    background-color: var(--bg);
}

/* Kayan Bant Stilleri */
.scrolling-banner {
    background: linear-gradient(135deg, #dc3545, #c82333);
    color: white;
    padding: 8px 0;
    overflow: hidden;
    position: sticky;
    top: 0;
    z-index: 1001;
}

.banner-content {
    display: flex;
    align-items: center;
    justify-content: center;
    white-space: nowrap;
    animation: scroll-banner 60s linear infinite;
}

.banner-content span {
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 0.5px;
    padding: 0 20px;
}

@keyframes scroll-banner {
    0% {
        transform: translateX(100%);
    }
    100% {
        transform: translateX(-100%);
    }
}

/* Header Stilleri */
.header {
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 41px; /* Kayan bant yüksekliği (8px padding * 2 + font-size) */
    z-index: 1000;
    background: var(--white);
}

.logo-img {
    height: 75px; /* 50px * 1.5 = 75px */
    width: 225px; /* 150px * 1.5 = 225px */
    object-fit: contain; /* Oranı koruyarak sığdır */
    transition: all 0.3s ease;
}

.logo-img:hover {
    transform: scale(1.05);
}

.navbar-nav .nav-link {
    font-weight: 500;
    color: #5f6781 !important; /* C:55 M:40 Y:20 K:15 */
    margin: 0 10px;
    transition: all 0.3s ease;
    position: relative;
    text-decoration: none;
}

.navbar-nav .nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    left: 50%;
    background-color: #5f6781;
    transition: all 0.3s ease;
    transform: translateX(-50%);
    opacity: 0;
}

.navbar-nav .nav-link:hover::after {
    width: 100%;
    opacity: 1;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
    color: var(--primary) !important;
}

/* Daha spesifik seçici */
.navbar .navbar-nav .nav-link {
    color: #5f6781 !important; /* C:55 M:40 Y:20 K:15 */
    position: relative;
    text-decoration: none;
}

.navbar .navbar-nav .nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    left: 50%;
    background-color: #5f6781;
    transition: all 0.3s ease;
    transform: translateX(-50%);
    opacity: 0;
}

.navbar .navbar-nav .nav-link:hover::after {
    width: 100%;
    opacity: 1;
}

.navbar .navbar-nav .nav-link:hover,
.navbar .navbar-nav .nav-link.active {
    color: var(--primary) !important;
}

/* Hero Slider Stilleri */
.hero-slider {
    position: relative;
    height: 600px;
    overflow: hidden;
}

.hero-slide {
    height: 600px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    display: flex;
    align-items: center;
}

.hero-slide::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.4);
}

.hero-content {
    position: relative;
    z-index: 2;
    color: var(--white);
}

.hero-text-box {
    background: rgba(255, 255, 255, 1); /* Beyaz %100 opak */
    color: #5f6781; /* C:55 M:40 Y:20 K:15 */
    padding: 40px;
    border-radius: 15px;
    max-width: 600px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.hero-text-box h2 {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: #5f6781; /* C:55 M:40 Y:20 K:15 */
}

.hero-subtitle {
    font-size: 1.2rem;
    font-weight: 500;
    margin-bottom: 10px;
    color: #5f6781; /* C:55 M:40 Y:20 K:15 */
}

.hero-description {
    font-size: 1rem;
    margin-bottom: 25px;
    color: #5f6781; /* C:55 M:40 Y:20 K:15 */
}

/* Buton Stilleri */
.add-project-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 24px;
    background: var(--primary);
    color: var(--text);
    border: 2px solid var(--primary);
    border-radius: 8px;
    font-weight: 500;
    font-size: 14px;
    letter-spacing: 0.3px;
    transition: all 0.3s ease;
    box-shadow: 0 2px 4px rgba(244, 217, 213, 0.2);
    text-decoration: none;
}

.add-project-btn:hover {
    background: var(--hover);
    border-color: var(--hover);
    transform: translateY(-1px);
    box-shadow: 0 4px 6px rgba(244, 217, 213, 0.3);
    color: var(--text);
    text-decoration: none;
}

.add-project-btn:active {
    transform: translateY(0);
    box-shadow: 0 1px 2px rgba(15, 118, 110, 0.1);
}

.btn-primary {
    background-color: var(--primary);
    border-color: var(--primary);
    color: var(--text);
    font-weight: 500;
    padding: 10px 20px;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background-color: var(--hover);
    border-color: var(--hover);
    transform: translateY(-1px);
}

.btn-success {
    background-color: var(--accent);
    border-color: var(--accent);
    color: var(--white);
    font-weight: 500;
    padding: 10px 20px;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.btn-success:hover {
    background-color: #1ea952;
    border-color: #1ea952;
    transform: translateY(-1px);
}

/* Sayfa Başlık Stilleri */
.page-title-wrapper {
    padding: 30px 0;
    margin-bottom: 40px;
    position: relative;
    text-align: center;
    background-color: white;
}

.page-title {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--text);
    text-align: center;
    margin: 0;
    padding: 0 60px;
    display: inline-flex;
    align-items: center;
    position: relative;
}

.page-title::before,
.page-title::after {
    content: '';
    height: 2px;
    width: 40px;
    background-color: var(--primary);
    margin: 0 15px;
}

.page-subtitle {
    font-size: 1.2rem;
    color: #666;
    text-align: center;
    margin-top: 20px;
    font-weight: 300;
}

/* Kategori Kartları */
.category-card {
    background: var(--white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    height: 100%;
}

.category-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.category-image {
    height: 200px;
    overflow: hidden;
    position: relative;
    display: block;
}

.category-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.category-card:hover .category-image img {
    transform: scale(1.05);
}

.category-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    color: var(--text);
    position: relative;
}

.category-content {
    padding: 25px;
    text-align: center;
}

.category-content h3 {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 10px;
    color: var(--text);
}

.category-content p {
    color: #666;
    margin-bottom: 20px;
    font-size: 0.9rem;
}

/* Kategori Overlay Stilleri */
.category-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9), rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.3));
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    color: white;
    z-index: 10;
    min-height: 80px;
}

.category-name h3 {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-weight: 700;
    margin: 0;
    color: white;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.8);
}

.category-button .add-project-btn {
    background: rgba(255, 255, 255, 0.95);
    color: var(--text);
    padding: 10px 20px;
    font-size: 0.9rem;
    font-weight: 600;
    border-radius: 25px;
    text-decoration: none;
    transition: all 0.3s ease;
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.category-button .add-project-btn:hover {
    background: white;
    color: var(--text);
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

/* Ürün Kartları */
.product-card {
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
    transition: all 0.4s ease;
    height: 100%;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.product-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
    border-color: rgba(244, 217, 213, 0.3);
}

.product-image {
    height: 250px;
    overflow: hidden;
    position: relative;
}

/* Popüler Etiketi */
.product-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    z-index: 10;
}

.badge-popular {
    background: linear-gradient(135deg, #ff6b35, #f7931e);
    color: white;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 12px rgba(255, 107, 53, 0.4);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
    display: block;
    border-radius: 20px 20px 0 0;
}

.product-card:hover .product-image img {
    transform: scale(1.05);
}

.product-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    color: var(--text);
    border-radius: 20px 20px 0 0;
    position: absolute;
    top: 0;
    left: 0;
}

.product-content {
    padding: 25px;
    background: linear-gradient(135deg, #ffffff 0%, #fafafa 100%);
}

.product-header {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 15px;
}

.product-title {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    font-weight: 700;
    margin: 0;
    color: var(--text);
    line-height: 1.3;
}

.product-category-badge {
    background: linear-gradient(135deg, var(--primary), var(--hover));
    color: var(--text);
    padding: 4px 12px;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    align-self: flex-start;
    box-shadow: 0 2px 8px rgba(244, 217, 213, 0.3);
}

.product-description {
    color: #666;
    margin-bottom: 20px;
    font-size: 0.9rem;
    line-height: 1.5;
}

.product-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.product-actions .btn {
    flex: 1;
    min-width: 120px;
    padding: 12px 20px;
    font-weight: 600;
    border-radius: 12px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-size: 0.85rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.product-actions .btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.15);
}

/* İletişim Bölümü */
.contact-item {
    text-align: center;
    padding: 25px 20px;
    background: var(--white);
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.contact-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.contact-icon {
    width: 70px;
    height: 70px;
    background: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
    font-size: 1.8rem;
    color: var(--text);
    transition: all 0.3s ease;
}

.contact-item:hover .contact-icon {
    background: var(--hover);
    transform: scale(1.1);
}

.contact-item h4 {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 10px;
    color: var(--text);
}

.contact-item p {
    color: #666;
    margin: 0;
}

.instagram-link {
    color: #666;
    text-decoration: none;
    transition: all 0.3s ease;
}

.instagram-link:hover {
    color: var(--primary);
    text-decoration: none;
}

/* Footer Stilleri */
.footer {
    background: linear-gradient(to right, #2c3e50, #34495e) !important;
}

.footer h5 {
    font-family: var(--font-heading);
    font-weight: 600;
    margin-bottom: 15px;
}

.footer .contact-info a {
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer .contact-info a:hover {
    color: #25D366;
}

.footer .social-links {
    display: flex;
    gap: 15px;
    align-items: center;
}

.footer .social-links .social-link {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer .social-links .social-link:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
    color: #25D366;
}

/* Carousel Kontrolleri */
.carousel-control-prev,
.carousel-control-next {
    width: 50px;
    height: 50px;
    background: rgba(0, 0, 0, 0.6);
    border-radius: 50%;
    top: 50%;
    transform: translateY(-50%);
    margin: 0 20px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    transition: all 0.3s ease;
    opacity: 0.8;
}

.carousel-control-prev:hover,
.carousel-control-next:hover {
    background: rgba(0, 0, 0, 0.8);
    border-color: rgba(255, 255, 255, 0.6);
    opacity: 1;
    transform: translateY(-50%) scale(1.1);
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    width: 20px;
    height: 20px;
    filter: brightness(0) invert(1);
}

.carousel-indicators {
    bottom: 30px;
}

.carousel-indicators button {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    border: none;
    margin: 0 5px;
}

.carousel-indicators button.active {
    background: var(--white);
}

/* Breadcrumb Stili */
.breadcrumb-nav {
    background-color: #f8f9fa;
    border-bottom: 1px solid #e9ecef;
    padding: 10px 0;
}

.breadcrumb {
    display: flex;
    padding: 0;
    margin: 0;
    background-color: transparent;
    border-radius: 0;
    font-size: 0.9rem;
    position: relative;
    font-weight: 500;
}

.breadcrumb-item {
    position: relative;
    display: flex;
    align-items: center;
}

.breadcrumb-item a {
    color: #666;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
}

.breadcrumb-item a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 1px;
    bottom: -2px;
    left: 0;
    background-color: #dc3545;
    transition: all 0.3s ease;
}

.breadcrumb-item a:hover {
    color: #dc3545;
}

.breadcrumb-item a:hover::after {
    width: 100%;
}

.breadcrumb-item + .breadcrumb-item::before {
    content: '\f105';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    padding: 0 10px;
    color: #999;
    font-size: 0.85rem;
}

.breadcrumb-item.active {
    color: #333;
    font-weight: 600;
}

/* Hakkımızda Sayfası Stilleri */
.about-text h2 {
    color: var(--text);
    font-family: var(--font-heading);
    font-weight: 700;
    margin-bottom: 20px;
}

.about-text h3 {
    color: var(--text);
    font-family: var(--font-heading);
    font-weight: 600;
    margin-top: 30px;
}

.about-text .lead {
    font-size: 1.2rem;
    color: var(--text);
    font-weight: 500;
}

.stat-item {
    padding: 20px;
    background: var(--white);
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.stat-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary);
    font-family: var(--font-heading);
    margin-bottom: 10px;
}

.stat-label {
    font-size: 1rem;
    color: var(--text);
    font-weight: 500;
}

.contact-cta {
    background: linear-gradient(135deg, var(--primary) 0%, var(--hover) 100%) !important;
}

.contact-cta h2 {
    font-family: var(--font-heading);
    font-weight: 700;
}

.contact-cta .btn-light {
    background: var(--white);
    color: var(--text);
    border: none;
    font-weight: 600;
    padding: 12px 30px;
    transition: all 0.3s ease;
}

.contact-cta .btn-light:hover {
    background: #f8f9fa;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

/* İletişim Sayfası Stilleri */
.contact-details h4 {
    font-family: var(--font-heading);
    font-weight: 600;
    color: var(--text);
    margin-bottom: 5px;
}

.contact-details p {
    margin: 0;
    color: var(--text);
}

.contact-details a {
    color: var(--text);
    transition: all 0.3s ease;
}

.contact-details a:hover {
    color: var(--primary);
}

.working-hours {
    background: var(--white);
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.working-hours h4 {
    font-family: var(--font-heading);
    font-weight: 600;
    color: var(--text);
    margin-bottom: 15px;
}

.contact-form .form-control {
    border: 2px solid var(--border);
    border-radius: 10px;
    padding: 12px 15px;
    transition: all 0.3s ease;
    font-size: 14px;
}

.contact-form .form-control:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 0.2rem rgba(244, 217, 213, 0.25);
    outline: none;
}

.contact-form .btn-primary {
    background: linear-gradient(135deg, var(--primary) 0%, var(--hover) 100%);
    border: none;
    padding: 15px 30px;
    font-weight: 600;
    transition: all 0.3s ease;
    font-size: 16px;
    border-radius: 10px;
}

.contact-form .btn-primary:hover {
    background: linear-gradient(135deg, var(--hover) 0%, var(--primary) 100%);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(244, 217, 213, 0.4);
}

.whatsapp-cta {
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%) !important;
}

.whatsapp-cta h2 {
    font-family: var(--font-heading);
    font-weight: 700;
}

.whatsapp-cta .btn-light {
    background: var(--white);
    color: #25D366;
    border: none;
    font-weight: 600;
    padding: 12px 30px;
    transition: all 0.3s ease;
}

.whatsapp-cta .btn-light:hover {
    background: #f8f9fa;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

/* WhatsApp Link Stili - Güçlü Kurallar */
.contact-item .whatsapp-link,
.contact-item p .whatsapp-link,
.whatsapp-link {
    color: #3E3E3E !important;
    text-decoration: none !important;
    font-weight: 500 !important;
    transition: all 0.3s ease !important;
    border-bottom: 2px solid #25D366 !important;
    padding-bottom: 2px !important;
    display: inline-block !important;
}

.contact-item .whatsapp-link:hover,
.contact-item p .whatsapp-link:hover,
.whatsapp-link:hover {
    color: #25D366 !important;
    text-decoration: none !important;
    border-bottom-color: #128C7E !important;
    transform: scale(1.02) !important;
}

/* Tüm link stillerini sıfırla */
.contact-item a,
.contact-item p a {
    color: inherit !important;
    text-decoration: none !important;
}

.contact-item a:hover,
.contact-item p a:hover {
    text-decoration: none !important;
}

.map-placeholder {
    border: 2px dashed var(--border);
    min-height: 300px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.map-placeholder h4 {
    font-family: var(--font-heading);
    font-weight: 600;
    color: var(--text);
    margin-bottom: 10px;
}

/* Sayfalama Stilleri */
.pagination .page-link {
    color: var(--text);
    border: 1px solid var(--border);
    padding: 10px 15px;
    transition: all 0.3s ease;
}

.pagination .page-link:hover {
    background-color: var(--primary);
    border-color: var(--primary);
    color: var(--white);
}

.pagination .page-item.active .page-link {
    background-color: var(--primary);
    border-color: var(--primary);
    color: var(--white);
}

/* Filtreler Stilleri */
.filters-section {
    border-bottom: 1px solid var(--border);
}

.filters-section .form-control {
    border: 1px solid var(--border);
    border-radius: 8px;
    padding: 10px 15px;
    transition: all 0.3s ease;
}

.filters-section .form-control:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 0.2rem rgba(244, 217, 213, 0.25);
}

.filters-section .btn-primary {
    background: linear-gradient(135deg, var(--primary) 0%, var(--hover) 100%);
    border: none;
    padding: 10px 20px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.filters-section .btn-primary:hover {
    transform: translateY(-1px);
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.15);
}

/* Kategori Filtreleri */
.category-filters {
    margin-bottom: 2rem;
    background: linear-gradient(135deg, #ffffff 0%, #fafafa 100%);
    padding: 25px;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(244, 217, 213, 0.2);
}

.category-filters h5 {
    color: var(--text);
    font-weight: 700;
    margin-bottom: 1.5rem;
    font-family: var(--font-heading);
    font-size: 1.3rem;
    text-align: center;
    position: relative;
}

.category-filters h5::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 2px;
    background: linear-gradient(135deg, var(--primary), var(--hover));
    border-radius: 1px;
}

.category-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    justify-content: center;
}

.category-buttons .btn {
    border-radius: 30px;
    padding: 12px 24px;
    font-size: 0.95rem;
    font-weight: 600;
    transition: all 0.4s ease;
    border: 2px solid;
    font-family: var(--font-heading);
    letter-spacing: 0.3px;
    text-transform: uppercase;
    position: relative;
    overflow: hidden;
    min-width: 140px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
}

.category-buttons .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: left 0.5s ease;
}

.category-buttons .btn:hover::before {
    left: 100%;
}

.category-buttons .btn-outline-primary {
    color: var(--text);
    border-color: #f4d9d5;
    background: linear-gradient(135deg, rgba(244, 217, 213, 0.1) 0%, rgba(230, 193, 189, 0.1) 100%);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
}

.category-buttons .btn-outline-primary:hover {
    color: var(--text);
    background: linear-gradient(135deg, #f4d9d5 0%, #e6c1bd 100%);
    border-color: #f4d9d5;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(244, 217, 213, 0.4);
}

.category-buttons .btn-primary {
    color: white;
    background: linear-gradient(135deg, #dc3545 0%, #c82333 100%);
    border-color: #dc3545;
    box-shadow: 0 4px 15px rgba(220, 53, 69, 0.3);
}

.category-buttons .btn-primary:hover {
    background: linear-gradient(135deg, #c82333 0%, #dc3545 100%);
    border-color: #c82333;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(220, 53, 69, 0.5);
}

.category-buttons .btn:active {
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(244, 217, 213, 0.3);
}

/* Responsive Tasarım */
@media (max-width: 768px) {
    .scrolling-banner {
        padding: 6px 0;
    }
    
    .banner-content span {
        font-size: 0.8rem;
        padding: 0 15px;
    }
    
    .banner-content {
        animation: scroll-banner 60s linear infinite;
    }
    
    @keyframes scroll-banner {
        0% {
            transform: translateX(100%);
        }
        100% {
            transform: translateX(-100%);
        }
    }
    
    /* Mobil için header sticky pozisyonu */
    .header {
        top: 37px; /* Mobil kayan bant yüksekliği (6px padding * 2 + font-size) */
    }
    .logo-img {
        height: 60px; /* 40px * 1.5 = 60px */
        width: 180px; /* 120px * 1.5 = 180px */
        object-fit: contain;
    }
    
    .hero-slider {
        height: 500px;
    }
    
    .hero-slide {
        height: 500px;
    }
    
    .hero-text-box {
        padding: 20px;
        margin: 0 15px;
        max-width: 90%;
        transform: translateY(-20px);
    }
    
    .hero-text-box h2 {
        font-size: 1.6rem;
        margin-bottom: 10px;
    }
    
    .page-title {
        font-size: 1.8rem;
        letter-spacing: 1px;
        padding: 0 30px;
    }
    
    .page-title::before,
    .page-title::after {
        width: 25px;
        margin: 0 10px;
    }
    
    .page-subtitle {
        font-size: 1rem;
        margin-top: 15px;
    }
    
    .product-actions {
        flex-direction: column;
    }
    
    .product-actions .btn {
        min-width: auto;
        padding: 10px 16px;
        font-size: 0.8rem;
    }
    
    .badge-popular {
        font-size: 0.7rem;
        padding: 4px 8px;
    }
    
    .product-title {
        font-size: 1.1rem;
    }
    
    .product-category-badge {
        font-size: 0.7rem;
        padding: 3px 10px;
    }
    
    .social-links {
        justify-content: center;
        margin-bottom: 20px;
    }
    
    .footer .text-md-end {
        text-align: center !important;
    }
    
    /* İletişim sayfası mobil düzenlemeleri */
    .contact-item {
        margin-bottom: 20px;
    }
    
    .contact-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
    
    .contact-form .btn-primary {
        padding: 12px 20px;
        font-size: 14px;
    }
}

@media (max-width: 576px) {
    .hero-slider {
        height: 450px;
    }
    
    .hero-slide {
        height: 450px;
    }
    
    .hero-text-box {
        padding: 15px;
        margin: 0 10px;
        max-width: 95%;
        transform: translateY(-30px);
    }
    
    .hero-text-box h2 {
        font-size: 1.3rem;
        margin-bottom: 8px;
    }
    
    .hero-subtitle {
        font-size: 0.9rem;
        margin-bottom: 8px;
    }
    
    .hero-description {
        font-size: 0.85rem;
        margin-bottom: 15px;
    }
    
    .page-title {
        font-size: 1.5rem;
        padding: 0 20px;
    }
    
    .category-overlay {
        padding: 15px;
    }
    
    .category-name h3 {
        font-size: 1rem;
    }
    
    .category-button .add-project-btn {
        padding: 6px 12px;
        font-size: 0.8rem;
    }
    
    .category-content,
    .product-content {
        padding: 25px;
        background: linear-gradient(135deg, #ffffff 0%, #fafafa 100%);
    }
}

/* Çok küçük ekranlar için ek düzenlemeler */
@media (max-width: 480px) {
    .hero-slider {
        height: 400px;
    }
    
    .hero-slide {
        height: 400px;
    }
    
    .hero-text-box {
        padding: 12px;
        margin: 0 8px;
        max-width: 98%;
        transform: translateY(-40px);
    }
    
    .hero-text-box h2 {
        font-size: 1.1rem;
        margin-bottom: 6px;
    }
    
    .hero-subtitle {
        font-size: 0.8rem;
        margin-bottom: 6px;
    }
    
    .hero-description {
        font-size: 0.75rem;
        margin-bottom: 12px;
    }
    
    .add-project-btn {
        padding: 8px 16px;
        font-size: 0.75rem;
    }
} 