:root {
    --deep-navy: #000022;
    --dark-black: #0a0a0f;
    --accent-blue: #1a75ff;
    --light-blue: #4d94ff;
    --text-light: #f0f0f0;
    --text-gray: #a0a0b0;
}

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

body {
    font-family: 'Montserrat', sans-serif;
    background: linear-gradient(135deg, var(--dark-black) 0%, var(--deep-navy) 100%);
    color: var(--text-light);
    line-height: 1.6;
    overflow-x: hidden;
}

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

/* Header Styles */
header {
    padding: 20px 0;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(10, 10, 15, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    border-bottom: 1px solid rgba(26, 117, 255, 0.2);
    transition: all 0.4s ease;
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
}

.mobile-menu-btn {
    display: none;
    color: var(--text-light);
    font-size: 1.8rem;
    cursor: pointer;
    z-index: 1001;
}

.logo {
    font-family: 'Playfair Display', serif;
    font-size: 28px;
    font-weight: 700;
    background: linear-gradient(to right, var(--text-light), var(--light-blue));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    letter-spacing: 1px;
}

.nav-menu ul {
    display: flex;
    list-style: none;
}

.nav-menu ul li {
    margin-left: 30px;
}

.nav-menu ul li a {
    color: var(--text-light);
    text-decoration: none;
    font-weight: 500;
    font-size: 16px;
    transition: color 0.3s;
    position: relative;
}

.nav-menu ul li a:after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent-blue);
    transition: width 0.3s;
}

.nav-menu ul li a:hover {
    color: var(--light-blue);
}

.nav-menu ul li a:hover:after {
    width: 100%;
}

/* Hero Section */
.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding-top: 80px;
}

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

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    /* Daha okunabilir metin için karartma */
    z-index: -1;
}

/* Remove old pseudo-element if present or keep if needed for other effects, 
   but video usually replaces the gradient background */
.hero:before {
    display: none;
}

.hero-content {
    max-width: 700px;
    z-index: 1;
    position: relative;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.hero h1 {
    font-family: 'Playfair Display', serif;
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
    animation: fadeInUp 1s ease-out;
}

.hero h1 span {
    color: var(--light-blue);
}

.hero p {
    font-size: 1.2rem;
    color: var(--text-gray);
    margin-bottom: 30px;
    max-width: 90%;
    animation: fadeInUp 1s ease-out 0.2s forwards;
    opacity: 0;
}

.cta-button {
    display: inline-block;
    padding: 15px 40px;
    background: transparent;
    color: var(--light-blue);
    border: 2px solid var(--accent-blue);
    border-radius: 0;
    font-weight: 600;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
    animation: fadeInUp 1s ease-out 0.4s forwards;
    opacity: 0;
}

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

.cta-button:hover:before {
    left: 100%;
}

.cta-button:hover {
    background: rgba(26, 117, 255, 0.1);
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(26, 117, 255, 0.2);
}

/* Fabrics Section */
.fabrics {
    padding: 100px 0;
}

.section-title {
    text-align: center;
    margin-bottom: 60px;
    position: relative;
}

.section-title h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    font-weight: 600;
    display: inline-block;
}

.section-title h2:after {
    content: '';
    display: block;
    width: 80px;
    height: 3px;
    background: var(--accent-blue);
    margin: 15px auto;
}

.fabric-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    /* 3 columns default */
    gap: 25px;
}

/* Search and Filter Section */
.filter-section {
    padding: 0 0 50px 0;
    text-align: center;
}

.search-container {
    margin-bottom: 30px;
    position: relative;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.search-input {
    width: 100%;
    padding: 15px 25px;
    padding-right: 50px;
    border-radius: 30px;
    border: 1px solid rgba(26, 117, 255, 0.3);
    background: rgba(20, 20, 30, 0.8);
    color: var(--text-light);
    font-family: 'Montserrat', sans-serif;
    font-size: 1rem;
    transition: all 0.3s ease;
    backdrop-filter: blur(5px);
}

.search-input:focus {
    outline: none;
    border-color: var(--accent-blue);
    box-shadow: 0 0 20px rgba(26, 117, 255, 0.2);
    background: rgba(30, 30, 45, 0.9);
}

.search-icon {
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--accent-blue);
    font-size: 1.2rem;
}

.filter-buttons {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
    margin-bottom: 30px;
}

.filter-btn {
    padding: 10px 25px;
    border-radius: 25px;
    border: 1px solid rgba(26, 117, 255, 0.3);
    background: rgba(26, 117, 255, 0.05);
    color: var(--text-gray);
    font-family: 'Montserrat', sans-serif;
    font-size: 0.95rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.filter-btn:hover,
.filter-btn.active {
    background: var(--accent-blue);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(26, 117, 255, 0.3);
    border-color: var(--accent-blue);
}

.fabric-card {
    background: rgba(20, 20, 30, 0.7);
    border-radius: 5px;
    overflow: hidden;
    transition: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    border: 1px solid rgba(80, 80, 120, 0.2);
    position: relative;
    display: flex;
    flex-direction: column;
    height: 100%;
    transform-style: preserve-3d;
    opacity: 0;
    transform: translateY(50px) rotateX(15deg);
    animation: fabricUnfold 0.8s ease-out forwards;
}

.fabric-card:nth-child(odd) {
    animation-delay: calc(0.1s * var(--index));
}

.fabric-card:nth-child(even) {
    animation-delay: calc(0.1s * var(--index));
}

@keyframes fabricUnfold {
    0% {
        opacity: 0;
        transform: translateY(50px) rotateX(15deg) scale(0.8);
    }

    50% {
        opacity: 0.7;
        transform: translateY(10px) rotateX(5deg) scale(0.95);
    }

    100% {
        opacity: 1;
        transform: translateY(0) rotateX(0deg) scale(1);
    }
}

.fabric-card:hover {
    transform: translateY(-15px) rotateX(5deg) rotateY(5deg) scale(1.02);
    box-shadow: 0 25px 40px rgba(0, 0, 0, 0.5), 0 0 30px rgba(26, 117, 255, 0.3);
    border-color: rgba(26, 117, 255, 0.6);
}

.fabric-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg,
            rgba(26, 117, 255, 0.1) 0%,
            transparent 25%,
            transparent 75%,
            rgba(26, 117, 255, 0.1) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
    z-index: 1;
}

.fabric-card:hover::before {
    opacity: 1;
}

.fabric-image {
    height: 250px;
    overflow: hidden;
    position: relative;
    background: linear-gradient(135deg,
            rgba(26, 117, 255, 0.1) 0%,
            rgba(77, 148, 255, 0.05) 50%,
            rgba(26, 117, 255, 0.1) 100%);
}

.fabric-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(circle at 20% 20%, rgba(26, 117, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(77, 148, 255, 0.1) 0%, transparent 50%);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 2;
}

.fabric-card:hover .fabric-image::before {
    opacity: 1;
}

.fabric-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    filter: brightness(0.9) contrast(1.1);
}

.fabric-card:hover .fabric-image img {
    transform: scale(1.08) rotate(1deg);
    filter: brightness(1.1) contrast(1.2) saturate(1.1);
}

.fabric-info {
    padding: 20px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.fabric-info h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    font-weight: 600;
    display: flex;
    align-items: center;
}

.fabric-info h3 .season-tag {
    font-size: 0.8rem;
    background: rgba(26, 117, 255, 0.2);
    color: var(--light-blue);
    padding: 3px 8px;
    border-radius: 12px;
    margin-left: 10px;
}

.fabric-description {
    color: var(--text-gray);
    margin-bottom: 15px;
    font-size: 0.95rem;
    flex: 1;
}

.color-list {
    padding: 10px;
    display: none;
    /* Varsayılan olarak gizli */
}

/* Detay butonu */
.view-details-btn {
    display: block;
    width: 100%;
    padding: 12px;
    margin-top: 15px;
    background: transparent;
    border: 1px solid var(--accent-blue);
    color: var(--light-blue);
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
    border-radius: 4px;
}

.view-details-btn:hover {
    background: var(--accent-blue);
    color: white;
}

.color-list ul {
    padding-left: 20px;
    margin: 0;
    columns: 2;
    column-gap: 20px;
}

.color-list li {
    margin-bottom: 5px;
    font-size: 0.9rem;
    color: var(--text-gray);
    break-inside: avoid;
    list-style-type: none;
    position: relative;
    padding-left: 15px;
}

.color-list li:before {
    content: "•";
    color: var(--light-blue);
    position: absolute;
    left: 0;
    top: 0;
}

.fabric-price {
    color: var(--light-blue);
    font-weight: 600;
    font-size: 1.2rem;
    margin: 10px 0;
    display: block;
    position: relative;
    transition: all 0.3s ease;
}

.fabric-price a {
    position: relative;
    display: inline-block;
    transition: all 0.3s ease;
}

.fabric-price a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--accent-blue), var(--light-blue));
    transition: width 0.3s ease;
}

.fabric-price a:hover::after {
    width: 100%;
}

.fabric-price a:hover {
    transform: translateY(-2px);
    text-shadow: 0 2px 4px rgba(26, 117, 255, 0.3);
}

.fabric-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 15px;
}

.fabric-tag {
    background: rgba(26, 117, 255, 0.1);
    color: var(--light-blue);
    font-size: 0.8rem;
    padding: 4px 10px;
    border-radius: 20px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.fabric-tag::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(26, 117, 255, 0.3), transparent);
    transition: left 0.5s ease;
}

.fabric-tag:hover {
    background: rgba(26, 117, 255, 0.2);
    transform: translateY(-2px) scale(1.05);
    box-shadow: 0 4px 8px rgba(26, 117, 255, 0.3);
}

.fabric-tag:hover::before {
    left: 100%;
}

/* About Section */
.about {
    padding: 100px 0;
    background: rgba(5, 5, 15, 0.5);
    position: relative;
}

.about-content {
    display: flex;
    align-items: center;
    gap: 50px;
}

.about-text {
    flex: 1;
}

.about-text h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    margin-bottom: 25px;
}

.about-text p {
    margin-bottom: 20px;
    color: var(--text-gray);
    line-height: 1.8;
}

.about-features {
    margin-top: 30px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.feature {
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.feature i {
    color: var(--accent-blue);
    font-size: 1.5rem;
    margin-top: 5px;
}

.feature-text h4 {
    margin-bottom: 5px;
}

.feature-text p {
    color: var(--text-gray);
    font-size: 0.95rem;
}

.about-image {
    flex: 1;
    border-radius: 5px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.about-image img {
    width: 100%;
    height: auto;
    display: block;
}

/* Contact Section */
.contact {
    padding: 100px 0;
}

.contact-container {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

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

.map-section {
    width: 100%;
}

.contact-item {
    display: flex;
    gap: 20px;
}

.contact-item i {
    color: var(--accent-blue);
    font-size: 1.5rem;
}

.contact-text h4 {
    margin-bottom: 5px;
    font-size: 1.2rem;
}

.contact-text p,
.contact-text a {
    color: var(--text-gray);
    text-decoration: none;
    transition: color 0.3s;
}

.contact-text a:hover {
    color: var(--light-blue);
}

.map-container {
    width: 100%;
    background: rgba(20, 20, 30, 0.7);
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.map-container iframe {
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

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

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    background: rgba(30, 30, 45, 0.5);
    border: 1px solid rgba(80, 80, 120, 0.3);
    border-radius: 3px;
    color: var(--text-light);
    font-family: 'Montserrat', sans-serif;
    font-size: 1rem;
    transition: border-color 0.3s;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent-blue);
}

.form-group textarea {
    min-height: 150px;
    resize: vertical;
}

.submit-btn {
    background: var(--accent-blue);
    color: white;
    border: none;
    padding: 15px 40px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    cursor: pointer;
    transition: background 0.3s;
    width: 100%;
}

.submit-btn:hover {
    background: var(--light-blue);
}

/* Footer */
footer {
    background: rgba(5, 5, 10, 0.9);
    padding: 40px 0 20px;
    text-align: center;
    border-top: 1px solid rgba(26, 117, 255, 0.2);
}

.footer-logo {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    font-weight: 700;
    background: linear-gradient(to right, var(--text-light), var(--light-blue));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    margin-bottom: 20px;
    display: inline-block;
}

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

.social-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    background: rgba(26, 117, 255, 0.1);
    color: var(--light-blue);
    border-radius: 50%;
    font-size: 1.2rem;
    transition: all 0.3s;
}

.social-links a:hover {
    background: var(--accent-blue);
    color: white;
    transform: translateY(-5px);
}

.copyright {
    color: var(--text-gray);
    font-size: 0.9rem;
    padding-top: 20px;
    border-top: 1px solid rgba(80, 80, 120, 0.2);
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Design */
@media (max-width: 1200px) {
    .fabric-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 992px) {
    .fabric-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .hero h1 {
        font-size: 2.8rem;
    }

    .about-content {
        flex-direction: column;
    }

    .color-list ul {
        columns: 1;
    }
}

@media (max-width: 768px) {
    .hero {
        text-align: center;
    }

    .hero p {
        margin: 0 auto 30px;
    }

    .mobile-menu-btn {
        display: block;
    }

    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        height: 100vh;
        background: rgba(10, 10, 20, 0.98);
        backdrop-filter: blur(15px);
        display: flex;
        align-items: center;
        justify-content: center;
        transition: 0.4s ease;
        box-shadow: -5px 0 15px rgba(0, 0, 0, 0.5);
    }

    .nav-menu.active {
        right: 0;
    }

    .nav-menu ul {
        flex-direction: column;
        text-align: center;
    }

    .nav-menu ul li {
        margin: 20px 0;
    }

    .nav-menu ul li a {
        font-size: 1.5rem;
    }

    .fabric-grid {
        grid-template-columns: 1fr;
    }

    .fabric-image {
        height: 250px;
    }

    .filter-section {
        overflow-x: hidden;
        /* Dikey scrollu engelle */
    }

    .filter-buttons {
        flex-wrap: nowrap;
        overflow-x: auto;
        justify-content: flex-start;
        padding-bottom: 10px;
        -webkit-overflow-scrolling: touch;
        /* iOS smooth scroll */
    }

    .filter-btn {
        flex: 0 0 auto;
        /* Küçülmesini engelle */
    }

    .contact-info-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .contact-item {
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }

    .color-list ul {
        columns: 1;
    }

    .filter-btn {
        padding: 8px 15px;
        font-size: 0.85rem;
    }
}

/* Modal Styles */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(8px);
    z-index: 2000;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

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

.modal-content {
    background: linear-gradient(135deg, #101015 0%, #050510 100%);
    width: 90%;
    max-width: 900px;
    max-height: 90vh;
    border-radius: 10px;
    border: 1px solid rgba(26, 117, 255, 0.3);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.5);
    display: flex;
    overflow: hidden;
    transform: scale(0.9);
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.modal-overlay.active .modal-content {
    transform: scale(1);
}

.modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    color: var(--text-gray);
    font-size: 1.5rem;
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s;
    background: rgba(0, 0, 0, 0.5);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-close:hover {
    color: white;
    background: var(--accent-blue);
    transform: rotate(90deg);
}

.modal-image-container {
    flex: 1;
    overflow: hidden;
    position: relative;
    min-height: 400px;
}

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

.modal-info {
    flex: 1;
    padding: 40px;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
}

.modal-title {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    margin-bottom: 10px;
    color: var(--text-light);
}

.modal-season {
    display: inline-block;
    background: rgba(26, 117, 255, 0.15);
    color: var(--light-blue);
    padding: 5px 12px;
    border-radius: 15px;
    font-size: 0.85rem;
    margin-bottom: 20px;
    align-self: flex-start;
}

.modal-description {
    color: var(--text-gray);
    margin-bottom: 30px;
    line-height: 1.7;
    font-size: 1.05rem;
}

.modal-colors-title {
    font-weight: 600;
    margin-bottom: 15px;
    color: var(--text-light);
    font-size: 1.1rem;
    display: flex;
    align-items: center;
}

.modal-colors-title::before {
    content: '';
    display: inline-block;
    width: 4px;
    height: 18px;
    background: var(--accent-blue);
    margin-right: 10px;
    border-radius: 2px;
}

.modal-color-list {
    margin-bottom: 30px;
}

.modal-color-list ul {
    list-style: none;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
}

.modal-color-list li {
    color: var(--text-gray);
    font-size: 0.95rem;
    display: flex;
    align-items: center;
}

.modal-color-list li::before {
    content: '•';
    color: var(--accent-blue);
    margin-right: 8px;
    font-size: 1.2rem;
}

.modal-contact-btn {
    margin-top: auto;
    background: var(--accent-blue);
    color: white;
    text-align: center;
    padding: 15px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.modal-contact-btn:hover {
    background: var(--light-blue);
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(26, 117, 255, 0.3);
}

@media (max-width: 768px) {
    .modal-content {
        flex-direction: column;
        width: 95%;
        max-height: 90vh;
    }

    .modal-image-container {
        height: 250px;
        min-height: auto;
        flex: none;
    }

    .modal-info {
        padding: 25px;
    }
}

/* Renk öğeleri için stil */
.color-item {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.3);
    display: inline-block;
    margin-right: 5px;
}

/* Kumaş dokusu animasyonları için ek stiller */
.fabric-info h3 {
    position: relative;
    overflow: hidden;
}

.fabric-info h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--accent-blue), var(--light-blue));
    transition: width 0.4s ease;
}

.fabric-card:hover .fabric-info h3::after {
    width: 100%;
}

.fabric-description {
    position: relative;
}

.fabric-description::before {
    content: '';
    position: absolute;
    top: 0;
    left: -10px;
    width: 3px;
    height: 100%;
    background: linear-gradient(180deg, var(--accent-blue), var(--light-blue));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.fabric-card:hover .fabric-description::before {
    opacity: 0.6;
}

/* Scroll animasyonu için */
.fabric-card.animate-in {
    animation: fabricUnfold 0.8s ease-out forwards;
}

/* Kumaş parçacık efekti */
.fabric-card::after {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg,
            rgba(26, 117, 255, 0.1),
            rgba(77, 148, 255, 0.1),
            rgba(26, 117, 255, 0.1));
    border-radius: 7px;
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: -1;
}

.fabric-card:hover::after {
    opacity: 1;
}