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

/* Global Styles */
:root {
    --primary-color: #8B4513;
    --secondary-color: #D2691E;
    --dark-color: #2c3e50;
    --light-color: #f8f9fa;
    --leather-color: #8B4513;
    --leather-light: #D2691E;
    --leather-dark: #654321;
    --text-color: #333;
    --bg-color: #fff;
    --section-padding: 100px 0;
}

html, body {
    overflow-x: hidden;
    width: 100%;
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    position: relative;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
}

.section-subtitle {
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--leather-light);
    margin-bottom: 15px;
    display: block;
}

/* Navbar */
.navbar {
    background: transparent;
    transition: all 0.3s ease;
    padding: 25px 0;
}

.navbar.scrolled {
    padding: 15px 0;
    background: rgba(0, 0, 0, 0.65);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.navbar-brand img.logo {
    height: 60px;
    transition: all 0.3s ease;
    filter: brightness(0) invert(1);
}



.footer-logo {
    height: 50px;
    transition: all 0.3s ease;
    filter: brightness(0) invert(1);
}

.navbar .nav-link {
    color: white !important;
    font-weight: 500;
    padding: 8px 15px !important;
    transition: all 0.3s ease;
    text-transform: uppercase;
    font-size: 14px;
    letter-spacing: 1px;
}

.navbar .nav-link:hover {
    color: var(--leather-light) !important;
}

.navbar-toggler {
    border: none;
    color: white;
    padding: 0;
}

/* Hero Section */
.hero-section {
    background: none;
    color: white;
    padding: 200px 0 100px;
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    margin-top: -100px;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -2;
    animation: zoomEffect 20s infinite alternate;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4));
    z-index: -1;
}

.hero-section h1 {
    font-size: 4.5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    line-height: 1.1;
}

.hero-section .lead {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    max-width: 600px;
    opacity: 0.9;
}

.hero-buttons {
    display: flex;
    gap: 20px;

}

.hero-scroll {
    position: absolute;
    bottom: 50px;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
}

.hero-scroll a {
    color: white;
    text-decoration: none;
    display: flex;
    flex-direction: column;
    align-items: center;
    font-size: 12px;
    letter-spacing: 2px;
    opacity: 0.8;
    transition: all 0.3s ease;
}

.hero-scroll a:hover {
    opacity: 1;
}

.hero-scroll i {
    font-size: 20px;
    margin-top: 10px;
    animation: bounce 2s infinite;
}

/* Story Section */
.story {
    padding: var(--section-padding);
    background: var(--bg-color);
}

.story-content h2 {
    font-size: 3rem;
    margin-bottom: 30px;
    line-height: 1.2;
}

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

.story-feature {
    display: flex;
    align-items: flex-start;
    margin-bottom: 30px;
}

.feature-icon {
    width: 50px;
    height: 50px;
    background: var(--leather-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 20px;
    color: white;
}

.feature-text h4 {
    margin-bottom: 10px;
    color: var(--leather-dark);
}

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

.story-image::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(45deg, var(--leather-dark), transparent);
    border-radius: 0 50px 0 50px;
    opacity: 0.5;
}

.story-image img {
    border-radius: 0 40px 0 40px;
    transform: scale(1.02);
}

/* Workshop Section */
.workshop {
    padding: var(--section-padding);
    background: var(--light-color);
}

.workshop-step {
    position: relative;
    margin-bottom: 30px;
    text-align: center;
    padding: 20px;
    background: white;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.workshop-step:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.step-number {
    position: absolute;
    top: -20px;
    left: 20px;
    width: 40px;
    height: 40px;
    background: var(--leather-dark);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    font-weight: 700;
    z-index: 1;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.step-image {
    position: relative;
    overflow: hidden;
    border-radius: 30px;
    margin: 20px;
}

.step-image::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, var(--leather-light), var(--leather-dark));
    z-index: -1;
    border-radius: 32px;
    opacity: 0.7;
}

.step-image::after {
    content: '';
    position: absolute;
    inset: -1px;
    border: 2px dashed var(--leather-light);
    border-radius: 31px;
    opacity: 0;
    transition: all 0.3s ease;
}

.step-image img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 30px;
    transition: all 0.5s ease;
    transform: scale(1.02);
}

.workshop-step:hover .step-image::after {
    opacity: 1;
    animation: rotate 20s linear infinite;
}

.workshop-step:hover .step-image img {
    transform: scale(1.1);
}

.step-icon {
    width: 60px;
    height: 60px;
    background: var(--leather-light);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: -30px auto 15px;
    font-size: 24px;
    position: relative;
    z-index: 1;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.workshop-step:hover .step-icon {
    background: var(--leather-dark);
    transform: rotate(360deg);
}

.workshop-step h4 {
    margin: 15px 0;
    color: var(--leather-dark);
    font-size: 1.2rem;
}

.workshop-step p {
    color: var(--text-color);
    opacity: 0.8;
    margin-bottom: 0;
    font-size: 0.9rem;
}

@media (max-width: 768px) {
    .workshop-step {
        margin-bottom: 50px;
    }
    
    .step-image img {
        height: 200px;
    }
}

/* Collection Section */
.collection {
    padding: var(--section-padding);
    background: var(--bg-color);
}

.collection-slider {
    padding: 30px 0;
    position: relative;
}

/* Koleksiyon: swiper-button-* kullanılmıyor — Swiper CSS ::after ile yanlışlıkla > basıyordu */
.collection-slider .collection-nav-next,
.collection-slider .collection-nav-prev {
    position: absolute;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    width: auto;
    min-width: 52px;
    height: 44px;
    margin-top: 0;
    top: 50%;
    transform: translateY(-50%);
    padding: 0 18px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.96);
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    box-shadow: 0 4px 16px rgba(101, 67, 33, 0.12);
    cursor: pointer;
    transition: background 0.25s ease, color 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.collection-slider .collection-nav-next i,
.collection-slider .collection-nav-prev i {
    font-size: 1.05rem;
    line-height: 1;
}

.collection-slider .collection-nav-next:hover,
.collection-slider .collection-nav-prev:hover {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-purple, var(--primary-color)));
    color: #fff;
    border-color: var(--primary-purple, var(--primary-color));
    box-shadow: 0 6px 22px rgba(101, 67, 33, 0.2);
}

.collection-slider .collection-nav-prev {
    left: 4px;
}

.collection-slider .collection-nav-next {
    right: 4px;
}

.collection-slider .collection-nav-next.swiper-button-disabled,
.collection-slider .collection-nav-prev.swiper-button-disabled {
    opacity: 0.35;
    pointer-events: none;
    cursor: default;
}

.collection-slider .swiper-pagination-bullet {
    width: 9px;
    height: 9px;
    background: var(--primary-color);
    opacity: 0.35;
}

.collection-slider .swiper-pagination-bullet-active {
    opacity: 1;
    background: var(--primary-color);
    box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.9), 0 0 0 4px var(--primary-color);
}

@media (max-width: 576px) {
    .collection-slider .collection-nav-next,
    .collection-slider .collection-nav-prev {
        min-width: 44px;
        height: 40px;
        padding: 0 14px;
    }

    .collection-slider .collection-nav-prev {
        left: 0;
    }

    .collection-slider .collection-nav-next {
        right: 0;
    }
}

.collection-item {
    position: relative;
    overflow: hidden;
    border-radius: 40px 0 40px 0;
    margin: 15px;
}

.collection-item::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(135deg, var(--leather-light), var(--leather-dark));
    z-index: -1;
    border-radius: 42px 0 42px 0;
}

.collection-item img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    transition: all 0.5s ease;
    border-radius: 40px 0 40px 0;
    transform: scale(1.02);
}

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

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

.collection-item:hover img {
    transform: scale(1.1);
}

/* Craftsmen Section */
.craftsmen {
    padding: var(--section-padding);
}

.craftsman-card {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    margin-bottom: 30px;
}

.craftsman-card img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    transition: all 0.3s ease;
}

.craftsman-info {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.9));
    color: white;
    padding: 30px;
}

.craftsman-info h4 {
    margin-bottom: 5px;
}

.craftsman-info p {
    opacity: 0.8;
    margin: 0;
}

/* Contact Section */
.contact {
    padding: var(--section-padding);
    background: var(--light-color);
}

.contact-content h2 {
    font-size: 3rem;
    margin-bottom: 30px;
    line-height: 1.2;
}

.contact-info {
    margin: 40px 0;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 30px;
}

.contact-item i {
    width: 50px;
    height: 50px;
    background: var(--leather-light);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 20px;
}

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

.contact-image::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(-45deg, var(--leather-dark), transparent);
    border-radius: 60px 0;
    opacity: 0.5;
}

.contact-image img {
    border-radius: 50px 0;
    transform: scale(1.02);
}

/* Footer */
.footer {
    background: var(--leather-dark);
    background-image: 
        linear-gradient(rgba(101, 67, 33, 0.9), rgba(101, 67, 33, 0.95)),
        url('https://images.unsplash.com/photo-1606822350112-b9e3caea2461');
    background-size: cover;
    background-position: center;
    color: white;
    padding: 80px 0 0;
    position: relative;
    box-shadow: inset 0 15px 15px -15px rgba(0, 0, 0, 0.5);
}

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

.footer-brand {
    margin-bottom: 30px;
    position: relative;
}

.footer h5 {
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 25px;
    font-size: 18px;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);
}

.footer ul li a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: all 0.3s ease;
    text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.1);
}

.footer ul li a:hover {
    color: white;
    padding-left: 5px;
}

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

.social-links a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    box-shadow: 0 3px 5px rgba(0, 0, 0, 0.2);
    text-decoration: none;
}

.social-links a:hover {
    background: var(--leather-light);
    transform: translateY(-3px);
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.3);
}

.newsletter .input-group {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 5px;
    overflow: hidden;
}

.newsletter input {
    background: transparent;
    border: none;
    padding: 15px;
    color: white;
}

.newsletter input::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.newsletter button {
    padding: 15px 30px;
    border: none;
    background: var(--leather-light);
    color: white;
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 1px;
}

.footer-bottom {
    margin-top: 50px;
    padding: 20px 0;
    position: relative;
}

.footer-bottom .container {
    background: rgba(0, 0, 0, 0.2);
    border-radius: 50px;
    padding: 15px 30px;
    backdrop-filter: blur(5px);
}

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

.footer-bottom a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    margin-left: 30px;
    transition: all 0.3s ease;
}

.footer-bottom a:hover {
    color: white;
}

/* Buttons */
.btn {
    padding: 15px 30px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    border-radius: 5px;
    font-size: 12px;
}

.btn-primary {
    background: var(--leather-color);
    border-color: var(--leather-color);
}

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

.btn-outline-light:hover {
    background: var(--leather-light);
    border-color: var(--leather-light);
    transform: translateY(-2px);
}

.btn-success {
    background: #25D366;
    border-color: #25D366;
}

.btn-success:hover {
    background: #128C7E;
    border-color: #128C7E;
    transform: translateY(-2px);
}

/* Animations */
@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-10px);
    }
    60% {
        transform: translateY(-5px);
    }
}

@keyframes rotate {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

@keyframes zoomEffect {
    0% {
        transform: scale(1);
    }
    100% {
        transform: scale(1.1);
    }
}

/* Responsive */
@media (max-width: 991px) {
    .navbar-collapse {
        background: rgba(0, 0, 0, 0.95);
        padding: 20px;
        margin-top: 15px;
    }
    
    .hero-section h1 {
        font-size: 3.5rem;
    }
    
    .story-content h2,
    .contact-content h2 {
        font-size: 2.5rem;
    }
    
    .image-overlay {
        position: relative;
        right: 0;
        bottom: 0;
        margin-top: 30px;
    }
}

@media (max-width: 768px) {
    :root {
        --section-padding: 60px 0;
    }
    
    .hero-section {
        text-align: center;
        padding: 150px 0 100px;
        margin-top: -80px;
    }
    
    .hero-section h1 {
        font-size: 2.5rem;
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    .story-content {
        text-align: center;
    }
    
    .story-content h2 {
        font-size: 2.2rem;
    }

    .story-content .lead {
        margin: 0 auto;
    }
    
    .story-feature {
        flex-direction: column;
        text-align: center;
        align-items: center;
    }
    
    .feature-icon {
        margin: 0 auto 20px;
    }
    
    .feature-text {
        text-align: center;
        width: 100%;
    }
    
    .step-image,
    .craftsman-card img {
        height: 200px;
    }
    
    .collection-item img {
        height: 300px;
    }
    
    .hero-bg {
        position: absolute;
        height: 100%;
    }
}

/* Scroll to Top Button */
.scroll-top-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 45px;
    height: 45px;
    background: var(--leather-dark);
    color: white;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: none;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    z-index: 999;
    transition: all 0.3s ease;
    opacity: 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.scroll-top-btn.show {
    display: flex;
    opacity: 1;
}

.scroll-top-btn:hover {
    background: var(--leather-light);
    transform: translateY(-3px);
}

@media (max-width: 768px) {
    .scroll-top-btn {
        bottom: 20px;
        right: 20px;
        width: 40px;
        height: 40px;
        font-size: 16px;
    }
}

/* Search Modal */
.search-toggle {
    font-size: 18px;
    padding: 8px !important;
    width: 40px;
    height: 40px;
    display: flex !important;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.search-toggle i {
    color: white;
    transition: color 0.3s ease;
}

.search-toggle:hover {
    background: var(--leather-light);
    transform: translateY(-2px);
}

.search-toggle:hover i {
    color: white !important;
}

.search-modal .modal-content {
    background: rgba(0, 0, 0, 0.95);
    border: none;
    border-radius: 15px;
    padding: 30px;
}

.search-modal .modal-body {
    padding: 0;
    position: relative;
}

.search-modal .btn-close {
    position: absolute;
    top: -20px;
    right: -20px;
    background: none;
    color: white;
    opacity: 1;
    font-size: 24px;
    filter: brightness(0) invert(1);
}

.search-form .form-control {
    background: transparent;
    border: none;
    border-bottom: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 0;
    padding: 15px 0;
    color: white;
    font-size: 18px;
}

.search-form .form-control::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

.search-form .form-control:focus {
    box-shadow: none;
    border-color: var(--leather-light);
}

.search-form .btn {
    background: transparent;
    border: none;
    color: white;
    padding: 15px;
    font-size: 18px;
}

.search-form .btn:hover {
    color: var(--leather-light);
}

/* Support Section */
.support {
    background: var(--bg-color);
    position: relative;
    overflow: hidden;
}

.support h2 {
    font-size: 3rem;
    margin-bottom: 30px;
    line-height: 1.2;
}

.stat-item {
    padding: 20px;
    transition: all 0.3s ease;
}

.stat-icon {
    width: 70px;
    height: 70px;
    background: var(--leather-light);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 24px;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--leather-dark);
    margin-bottom: 10px;
    line-height: 1;
}

.stat-text {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-color);
    opacity: 0.8;
    line-height: 1.4;
}

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

.stat-item:hover .stat-icon {
    background: var(--leather-dark);
    transform: rotate(360deg);
}

.support-image {
    position: relative;
    border-radius: 100px 0 100px 0;
    overflow: hidden;
    padding: 15px;
}

.support-image::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--leather-dark), transparent);
    border-radius: 100px 0 100px 0;
    opacity: 0.5;
}

.support-image img {
    border-radius: 85px 0 85px 0;
    transform: scale(1.02);
}

@media (max-width: 768px) {
    .support h2 {
        font-size: 2.5rem;
    }
    
    .stat-item {
        margin-bottom: 30px;
    }
}




/* Alt Sayfa Header */
.page-header {
    position: relative;
    height: 400px;
    padding-top: 150px;
    margin-top: 0;
    display: flex;
    align-items: center;
    color: white;
    overflow: hidden;
}

.page-header-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.header-bg {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.header-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: none;
    z-index: 1;
}

.header-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.8);
    position: relative;
    z-index: 2;
}

.page-header .breadcrumb {
    background: transparent;
    margin: 0;
    padding: 0;
    position: relative;
    z-index: 2;
}

.page-header .breadcrumb-item {
    font-size: 1rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
}

.page-header .breadcrumb-item a {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    transition: all 0.3s ease;
}

.page-header .breadcrumb-item a:hover {
    color: white;
}

.page-header .breadcrumb-item.active {
    color: var(--leather-light);
}

.page-header .breadcrumb-item + .breadcrumb-item::before {
    color: rgba(255, 255, 255, 0.6);
}

@media (max-width: 768px) {
    .page-header {
        height: 300px;
        padding-top: 120px;
    }

    .header-title {
        font-size: 2rem;
    }

    .page-header .breadcrumb-item {
        font-size: 0.9rem;
    }
}

.header-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 0;
}

.header-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: none;
    z-index: 1;
}



.product-features li,
.care-instructions li,
.shipping-info li,
.return-info li {
    padding: 10px 0;
    border-bottom: 1px dashed #eee;
    display: flex;
    align-items: center;
}

.product-features li:last-child,
.care-instructions li:last-child,
.shipping-info li:last-child,
.return-info li:last-child {
    border-bottom: none;
}

.product-features strong {
    color: var(--leather-dark);
    min-width: 120px;
    display: inline-block;
}

.care-instructions i,
.shipping-info i,
.return-info i {
    color: var(--leather-light);
    font-size: 18px;
}

@media (max-width: 768px) {
    .product-tabs .nav-link {
        padding: 10px 15px;
        font-size: 12px;
    }
    
    .product-features strong {
        min-width: 100px;
    }
}

.product-info .breadcrumb {
    background: transparent;
    margin: 0;
    padding: 0;
    margin-bottom: 20px;
}

.product-info .breadcrumb-item {
    font-size: 0.9rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.product-info .breadcrumb-item a {
    color: var(--leather-light);
    text-decoration: none;
    transition: all 0.3s ease;
}

.product-info .breadcrumb-item a:hover {
    color: var(--leather-dark);
}

.product-info .breadcrumb-item.active {
    color: var(--text-color);
}

.product-info .breadcrumb-item + .breadcrumb-item::before {
    color: var(--text-color);
    opacity: 0.5;
}