/* Genel Stiller */
:root {
    --primary-color: #2c3e50;
    --secondary-color: #d3bca9;
    --text-color: #333;
    --light-gray: #f8f9fa;
}

body {
    font-family: 'Segoe UI', Arial, sans-serif;
    color: var(--text-color);
    line-height: 1.6;
}

/* Header Stiller */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: #000000;
}

.navbar {
    padding: 15px 0;
    background-color: #000000 !important;
    backdrop-filter: none;
}

.navbar-brand img.logo {
    max-height: 50px;
}

.nav-link {
    color: #fff !important;
    font-weight: 500;
    padding: 8px 15px !important;
    transition: color 0.3s;
}

.nav-link:hover {
    color: var(--secondary-color) !important;
}

.navbar-toggler {
    border-color: rgba(255,255,255,0.5);
}

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 0.8%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/* Footer Stiller */
.footer {
    background: linear-gradient(135deg, #000000, #1a1a1a);
    color: rgba(255,255,255,0.9);
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(to right, transparent, rgba(255,255,255,0.1), transparent);
}

.footer-top {
    padding: 80px 0 60px;
    position: relative;
}

.footer-logo {
    max-height: 60px;
    margin-bottom: 25px;
    filter: brightness(1.2);
    transition: all 0.3s ease;
}

.footer-logo:hover {
    transform: translateY(-3px);
    filter: brightness(1.4);
}

.footer h4 {
    color: #fff;
    margin-bottom: 30px;
    font-size: 22px;
    font-weight: 600;
    position: relative;
    padding-bottom: 15px;
}

.footer h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background: var(--secondary-color);
    transition: width 0.3s ease;
}

.footer h4:hover::after {
    width: 60px;
}

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

.footer-links li {
    margin-bottom: 12px;
    transition: all 0.3s ease;
}

.footer-links li:hover {
    transform: translateX(5px);
}

.footer-links a {
    color: rgba(255,255,255,0.8);
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
    position: relative;
}

.footer-links a::before {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--secondary-color);
    transition: width 0.3s ease;
}

.footer-links a:hover {
    color: var(--secondary-color);
}

.footer-links a:hover::before {
    width: 100%;
}

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

.footer-contact li {
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    transition: all 0.3s ease;
}

.footer-contact li:hover {
    transform: translateX(5px);
}

.footer-contact li i {
    margin-right: 15px;
    color: var(--secondary-color);
    font-size: 18px;
    width: 20px;
    text-align: center;
}

.social-links {
    margin-top: 30px;
}

.social-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255,255,255,0.05);
    color: #fff;
    border-radius: 50%;
    margin-right: 12px;
    transition: all 0.3s ease;
    border: 1px solid rgba(255,255,255,0.1);
}

.social-links a:hover {
    background: var(--secondary-color);
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(211, 188, 169, 0.3);
}

.footer-bottom {
    background: rgba(0,0,0,0.3);
    padding: 25px 0;
    position: relative;
}

.footer-bottom::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(to right, transparent, rgba(255,255,255,0.1), transparent);
}

@media (max-width: 768px) {
    .footer-top {
        padding: 60px 0 40px;
    }
    
    .footer h4 {
        margin-top: 30px;
    }
}

/* Slider Stiller */
.slider-section {
    position: relative;
    margin-top: 0;
    padding-top: 0;
    height: 100vh;
    overflow: hidden;
}

.slider-item {
    position: relative;
    height: 100vh;
    margin-top: -76px;
}

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

.slider-content {
    position: absolute;
    top: 55%;
    background: linear-gradient(to right, rgba(0,0,0,0.8), transparent);
    padding: 40px;
    border-radius: 10px;
    max-width: 700px;
    text-align: left;
    left: 10%;
    transform: translateY(-50%);
    z-index: 2;
    margin-top: 30px;
}

.slider-content h2 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
    color: #fff;
}

.slider-content p {
    font-size: 1.2rem;
    margin-bottom: 25px;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.3);
    color: #fff;
}

/* Responsive Stiller */
@media (max-width: 1200px) {
    .slider-content h2 {
        font-size: 3.5rem;
    }
    .slider-content p {
        font-size: 1.3rem;
    }
}

@media (max-width: 992px) {
    .slider-content {
        max-width: 600px;
        padding: 40px;
    }
    .slider-content h2 {
        font-size: 3rem;
    }
    .slider-content p {
        font-size: 1.2rem;
    }
}

@media (max-width: 768px) {
    .slider-section,
    .slider-item,
    .slider-item img {
        height: 100vh;
    }
    .slider-content {
        left: 50%;
        transform: translate(-50%, -50%);
        text-align: center;
        background: linear-gradient(to bottom, rgba(0,0,0,0.8), rgba(0,0,0,0.6));
        padding: 25px;
        width: 90%;
        margin-top: 40px;
    }
    .slider-content h2 {
        font-size: 2rem;
        margin-bottom: 15px;
    }
    .slider-content p {
        font-size: 1rem;
        margin-bottom: 20px;
    }
    .slider-content .btn-primary {
        padding: 12px 30px;
        font-size: 1rem;
        margin-top: 15px;
    }
}

@media (max-width: 576px) {
    .slider-content {
        padding: 20px;
    }
    .slider-content h2 {
        font-size: 2rem;
    }
    .slider-content p {
        font-size: 1rem;
    }
}

/* Slider Navigasyon */
.owl-nav button {
    width: 50px !important;
    height: 50px !important;
    background: rgba(0,0,0,0.5) !important;
    border-radius: 50% !important;
    transition: all 0.3s ease;
}

.owl-nav button:hover {
    background: var(--secondary-color) !important;
}

.owl-nav button i {
    color: #fff;
    font-size: 24px;
}

.owl-dots {
    position: absolute;
    bottom: 30px;
    width: 100%;
    text-align: center;
}

.owl-dots .owl-dot span {
    width: 12px;
    height: 12px;
    margin: 5px;
    background: rgba(255,255,255,0.5);
    border-radius: 50%;
    transition: all 0.3s ease;
}

.owl-dots .owl-dot.active span {
    background: var(--secondary-color);
    transform: scale(1.2);
}

/* Kategori Kartları */
.category-section {
    padding: 80px 0;
    background: var(--light-gray);
}

.category-section h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 50px;
}

.category-card {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    margin-bottom: 30px;
    height: 300px;
}

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

.category-content {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 30px;
    background: linear-gradient(
        180deg,
        rgba(0, 0, 0, 0.1) 0%,
        rgba(0, 0, 0, 0.2) 40%,
        rgba(0, 0, 0, 0.5) 100%
    );
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: #fff;
}

.category-content h3 {
    font-size: 2rem;
    margin-bottom: 15px;
    font-weight: 600;
    color: #fff;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.category-content p {
    font-size: 1.1rem;
    margin-bottom: 20px;
    color: rgba(255,255,255,0.9);
    text-shadow: 1px 1px 2px rgba(0,0,0,0.2);
}

.category-content .btn {
    background: rgba(255,255,255,0.85);
    color: var(--primary-color);
    font-weight: 500;
    padding: 10px 25px;
    border-radius: 25px;
    transition: all 0.3s ease;
    backdrop-filter: blur(5px);
}

.category-content .btn:hover {
    background: rgba(255,255,255,0.95);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

/* Ürün Kartları */
.product-section {
    padding: 80px 0;
}

.product-card {
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    margin-bottom: 30px;
    transition: transform 0.3s;
}

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

.product-image {
    position: relative;
    overflow: hidden;
    border-radius: 10px 10px 0 0;
}

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

.product-content {
    padding: 20px;
}

.product-title {
    font-size: 1.2rem;
    margin-bottom: 10px;
    color: var(--primary-color);
}

.product-description {
    color: #666;
    margin-bottom: 15px;
}

.product-price {
    display: none !important;
}

/* Back to Top */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 40px;
    height: 40px;
    background: var(--secondary-color);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    transform: translateY(20px);
}

.back-to-top.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top:hover {
    background: var(--primary-color);
    color: #fff;
    transform: translateY(-5px);
}

/* Ürün Kartları Hover Efektleri */
.product-image {
    position: relative;
    overflow: hidden;
}

.product-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transform: translateY(100%);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.product-overlay .btn {
    transform: translateY(20px);
    opacity: 0;
    transition: all 0.3s ease 0.2s;
}

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

.product-title {
    position: relative;
    padding-bottom: 10px;
    margin-bottom: 10px;
}

.product-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 2px;
    background: var(--secondary-color);
    transition: all 0.3s ease;
}

.product-card:hover .product-title::after {
    width: 100%;
}

.product-price {
    display: inline-block;
    padding: 5px 15px;
    background: var(--secondary-color);
    color: #fff;
    border-radius: 20px;
    font-weight: 600;
    transform: translateY(0);
    transition: all 0.3s ease;
}

.product-card:hover .product-price {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(211, 188, 169, 0.3);
}

/* Slider İyileştirmeleri */
.slider-content {
    background: linear-gradient(to right, rgba(0,0,0,0.8), transparent);
    padding: 40px;
    border-radius: 10px;
    max-width: 600px;
    text-align: left;
    left: 10%;
    transform: translateY(-50%);
}

.slider-content h2 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.slider-content p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.3);
}

/* Kategori Kartları İyileştirmeleri */
.category-content {
    padding: 30px;
    background: linear-gradient(to bottom,
        rgba(0, 0, 0, 0.1),
        rgba(0, 0, 0, 0.2) 50%,
        rgba(0, 0, 0, 0.5)
    );
    transform: translateY(0) !important;
    opacity: 1 !important;
}

.category-content h3 {
    font-size: 1.8rem;
    margin-bottom: 10px;
    font-weight: 600;
    transform: translateY(0);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.category-content p {
    margin-bottom: 15px;
    transform: translateY(0);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.category-content .btn {
    background: linear-gradient(45deg, #d3bca9, #d3bca9);
    color: #fff;
    font-weight: 500;
    padding: 10px 25px;
    border-radius: 25px;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    border: none;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.category-content .btn:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, #d3bca9, #d3bca9);
    transition: 0.5s;
    z-index: -1;
    transform: scaleX(0);
    transform-origin: right;
}

.category-card:hover .category-content h3 {
    transform: translateY(-15px) scale(1.1);
    text-shadow: 2px 2px 15px rgba(0,0,0,0.3);
}

.category-card:hover .category-content p {
    transform: translateY(-10px);
}

.category-card:hover .category-content .btn {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(211, 188, 169, 0.4);
}

.category-card:hover .category-content .btn:before {
    transform: scaleX(1);
    transform-origin: left;
}

.category-content .btn:hover {
    letter-spacing: 2px;
}

.category-card:hover {
    transform: none;
}

.category-card:hover img {
    transform: none;
}

.category-card:hover .category-content {
    transform: none;
}

.category-card:hover .category-content p {
    transform: none;
}

.category-card:hover .category-content .btn {
    transform: translateY(-2px);
}

/* Hakkımızda Section */
.about-section {
    padding: 100px 0;
    background: #fff;
    overflow: hidden;
}

.about-image {
    position: relative;
    margin-bottom: 30px;
}

.about-image img {
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.about-image:hover img {
    transform: translateY(-10px);
    box-shadow: 0 30px 50px rgba(211, 188, 169, 0.2);
}

.experience-badge {
    position: absolute;
    bottom: -20px;
    right: 30px;
    background: linear-gradient(45deg, #000000, #1a1a1a);
    color: #fff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    text-align: center;
    animation: float 3s ease-in-out infinite;
}

.experience-badge .number {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1;
}

.experience-badge .text {
    font-size: 0.9rem;
    opacity: 0.9;
}

.about-content h6 {
    font-size: 1rem;
    letter-spacing: 2px;
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
}

.about-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: #000000;
}

.about-feature {
    display: flex;
    align-items: center;
    padding: 25px;
    border-radius: 24px;
    background: #ffffff;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(0, 0, 0, 0.1);
}

.about-feature:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    border-color: rgba(0, 0, 0, 0.2);
}

.feature-icon-wrap {
    width: 64px;
    height: 64px;
    margin-right: 20px;
    position: relative;
}

.feature-icon {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #000000, #1a1a1a);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.feature-icon::before {
    content: '';
    position: absolute;
    inset: 1px;
    background: linear-gradient(135deg, rgba(255,255,255,0.1), rgba(255,255,255,0.05));
    border-radius: 19px;
    z-index: 1;
}

.feature-icon::after {
    content: '';
    position: absolute;
    width: 150%;
    height: 150%;
    background: linear-gradient(
        45deg,
        transparent,
        rgba(255, 255, 255, 0.2),
        transparent
    );
    top: -25%;
    left: -125%;
    transform: rotate(25deg);
    transition: 0.5s;
}

.about-feature:hover .feature-icon {
    transform: scale(1.05) rotate(3deg);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
    background: linear-gradient(135deg, #1a1a1a, #333333);
}

.about-feature:hover .feature-icon::after {
    left: 100%;
}

.feature-icon svg {
    width: 32px;
    height: 32px;
    fill: #fff;
    position: relative;
    z-index: 2;
    transition: all 0.5s ease;
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.1));
}

.about-feature:hover .feature-icon svg {
    transform: scale(1.1);
    filter: drop-shadow(0 4px 6px rgba(0,0,0,0.2));
}

.feature-text {
    flex: 1;
}

.feature-text h5 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 5px;
    transition: all 0.3s ease;
}

.feature-text p {
    font-size: 0.9rem;
    color: #6b7280;
    margin: 0;
    transition: all 0.3s ease;
}

.about-feature:hover .feature-text h5 {
    color: #000000;
    transform: translateX(5px);
}

.about-feature:hover .feature-text p {
    transform: translateX(5px);
}

@media (max-width: 768px) {
    .feature-icon-wrap {
        width: 56px;
        height: 56px;
    }
    
    .feature-icon svg {
        width: 28px;
        height: 28px;
    }
    
    .about-feature {
        padding: 20px;
    }
}

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

/* Responsive Ayarlar */
@media (max-width: 991px) {
    .about-section {
        padding: 60px 0;
    }
    .about-content h2 {
        font-size: 2rem;
    }
    .experience-badge {
        bottom: -10px;
        right: 20px;
        padding: 15px;
    }
    .experience-badge .number {
        font-size: 2rem;
    }
}

@media (max-width: 767px) {
    .about-feature {
        margin-bottom: 20px;
    }
} 

/* Üretim Hattı Section */
.production-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #fff 0%, #f5f5f5 100%);
    overflow: hidden;
}

.production-content h6 {
    font-size: 1rem;
    letter-spacing: 2px;
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
}

.production-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #000000;
    margin-bottom: 20px;
}

.production-features {
    margin-top: 40px;
}

.feature-item {
    display: flex;
    align-items: center;
    margin-bottom: 30px;
    padding: 20px;
    border-radius: 10px;
    background: #fff;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(0, 0, 0, 0.1);
}

.feature-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    border-color: rgba(0, 0, 0, 0.2);
}

.feature-item .feature-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #000000, #1a1a1a);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 20px;
    position: relative;
    overflow: hidden;
}

.feature-item:hover .feature-icon {
    background: linear-gradient(135deg, #1a1a1a, #333333);
}

.feature-item .feature-text h5 {
    color: #000000;
    transition: all 0.3s ease;
}

.feature-item:hover .feature-text h5 {
    transform: translateX(5px);
}

.production-slider {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
    height: 100%;
}

.production-slide {
    height: 100%;
}

.production-slide img {
    width: 100%;
    height: 600px;
    object-fit: cover;
    transition: all 0.5s ease;
}

.production-slider .owl-nav button {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 40px !important;
    height: 40px !important;
    border-radius: 50% !important;
    background: rgba(0, 0, 0, 0.8) !important;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.production-slider .owl-nav button.owl-prev {
    left: 20px;
}

.production-slider .owl-nav button.owl-next {
    right: 20px;
}

.production-slider .owl-nav button i {
    color: #fff;
    font-size: 1.2rem;
}

.production-slider .owl-nav button:hover {
    background: #1a1a1a !important;
}

.production-slider .owl-nav button:hover i {
    color: #fff;
}

@media (max-width: 991px) {
    .production-section {
        padding: 60px 0;
    }
    .production-content h2 {
        font-size: 2rem;
    }
    .production-slide img {
        height: 400px;
    }
}

@media (max-width: 767px) {
    .feature-item {
        margin-bottom: 20px;
    }
    .production-slide img {
        height: 350px;
    }
    .production-slider {
        margin-top: 40px;
    }
} 

.btn-primary {
    background: linear-gradient(135deg, #000000, #1a1a1a);
    border: none;
    color: #fff;
    padding: 12px 30px;
    border-radius: 25px;
    font-weight: 500;
    transition: all 0.3s ease;
}

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

.btn-primary:active,
.btn-primary:focus {
    background: linear-gradient(135deg, #000000, #1a1a1a) !important;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3) !important;
} 

.slider-content .btn-primary {
    margin-top: 30px;
    padding: 15px 40px;
    font-size: 1.1rem;
    letter-spacing: 1px;
    background: linear-gradient(135deg, #000000, #1a1a1a);
    border: 2px solid rgba(255,255,255,0.1);
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.slider-content .btn-primary:hover {
    background: linear-gradient(135deg, #1a1a1a, #333333);
    border-color: rgba(255,255,255,0.2);
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.3);
}

@media (max-width: 768px) {
    .slider-content .btn-primary {
        padding: 12px 30px;
        font-size: 1rem;
    }
} 

/* Yeni Koleksiyon Section */
.new-collection {
    padding: 60px 0;
    background: #fff;
    overflow: hidden;
}

.collection-content {
    padding-right: 50px;
}

.collection-content .subtitle {
    display: inline-block;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--secondary-color);
    margin-bottom: 20px;
    position: relative;
    padding-left: 45px;
}

.collection-content .subtitle::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    width: 35px;
    height: 1px;
    background: var(--secondary-color);
}

.collection-content h2 {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 25px;
    color: #000;
}

.collection-content p {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 30px;
    line-height: 1.8;
}

.collection-features {
    margin-bottom: 40px;
}

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

.collection-features .feature i {
    width: 24px;
    height: 24px;
    background: var(--secondary-color);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    font-size: 0.8rem;
}

.collection-features .feature span {
    font-size: 1.1rem;
    color: #333;
    font-weight: 500;
}

.collection-image {
    position: relative;
    padding: 20px;
}

.collection-image img {
    width: 100%;
    height: 600px;
    object-fit: cover;
    border-radius: 30px;
    box-shadow: 0 30px 60px rgba(0,0,0,0.1);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.collection-badge {
    position: absolute;
    top: 40px;
    right: 0;
    background: linear-gradient(135deg, #000000, #1a1a1a);
    color: #fff;
    padding: 20px 30px;
    border-radius: 20px 0 0 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    display: flex;
    flex-direction: column;
    align-items: center;
    animation: slideIn 1s ease-out forwards;
}

.collection-badge .badge-text {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 5px;
}

.collection-badge .badge-year {
    font-size: 1.5rem;
    font-weight: 700;
}

@keyframes slideIn {
    from {
        transform: translateX(100%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

@media (max-width: 991px) {
    .new-collection {
        padding: 60px 0;
    }
    
    .collection-content {
        padding-right: 0;
        margin-bottom: 40px;
        text-align: center;
    }
    
    .collection-content h2 {
        font-size: 2.5rem;
    }
    
    .collection-features .feature {
        justify-content: center;
    }
    
    .collection-content .subtitle {
        padding-left: 0;
    }
    
    .collection-content .subtitle::before {
        display: none;
    }
    
    .collection-image img {
        height: 400px;
    }
} 

.collection-slider {
    position: relative;
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(0,0,0,0.1);
}

.collection-slider .slider-item img {
    width: 100%;
    height: 600px;
    object-fit: cover;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.collection-slider .owl-dots {
    position: absolute;
    bottom: 20px;
    left: 0;
    width: 100%;
    display: flex;
    justify-content: center;
    gap: 8px;
    z-index: 2;
}

.collection-slider .owl-dot {
    width: 10px;
    height: 10px;
    background: rgba(255, 255, 255, 0.5) !important;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.collection-slider .owl-dot.active {
    background: #fff !important;
    transform: scale(1.2);
}

@media (max-width: 991px) {
    .collection-slider .slider-item img {
        height: 400px;
    }
}

/* Fade animasyonu */
.collection-slider .owl-item {
    opacity: 0;
    transition: opacity 0.5s ease;
}

.collection-slider .owl-item.active {
    opacity: 1;
} 

.home-slider .owl-nav {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    display: flex;
    gap: 20px;
}

.home-slider .owl-nav button {
    width: 45px;
    height: 45px;
    border-radius: 50% !important;
    background: rgba(0, 0, 0, 0.5) !important;
    color: #fff !important;
    font-size: 20px !important;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.home-slider .owl-nav button:hover {
    background: rgba(0, 0, 0, 0.8) !important;
    transform: scale(1.1);
}

.home-slider .owl-nav button i {
    color: #fff;
} 

/* Ürün Detay Sayfası */
.product-details .price {
    display: none !important;
}

.product-details .product-actions {
    margin-top: 2rem;
}

.product-details .btn-primary {
    padding: 1rem 2rem;
    font-size: 1.1rem;
} 