/* Trims/Süslemeler Page Styles */

/* Trims Section */
.trims-section {
    padding: 6rem 6%;
    background-color: #fff;
    position: relative;
    margin-top: 0;
}

.trims-container {
    max-width: 1400px;
    margin: 0 auto 5rem;
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 4rem;
    align-items: flex-start;
}

/* Left Column: Title */
.trims-left {
    padding-top: 2rem;
}

.trims-title {
    font-family: 'Montserrat', sans-serif;
    font-weight: 300;
    font-size: 4rem;
    letter-spacing: -1.5px;
    margin: 0;
    color: #000;
    line-height: 1.1;
}

/* Right Column: Description */
.trims-right {
    padding-top: 1rem;
}

.trims-description {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 0.95rem;
    line-height: 1.8;
    color: #4a4a4a;
    margin: 0;
}

/* Quote Section */
.trims-quote {
    text-align: center;
    margin: 5rem 0 6rem;
    padding: 0 10%;
}

.quote-text {
    font-family: 'Montserrat', sans-serif;
    font-weight: 400;
    font-size: 1.2rem;
    font-style: italic;
    color: #666;
    line-height: 1.8;
    margin: 0;
}

/* Features Grid (Horizontal) */
.trims-features {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 2rem;
    margin-top: 4rem;
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
}

.feature-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.feature-item:hover {
    transform: translateY(-8px);
}

.feature-svg {
    width: 80px;
    height: 80px;
    color: #000;
    stroke-linecap: round;
    stroke-linejoin: round;
    transition: all 0.4s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.feature-item:hover .feature-svg {
    color: #333;
    filter: drop-shadow(0 8px 15px rgba(0, 0, 0, 0.1));
}

.feature-label {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 0.85rem;
    color: #000;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Products Section */
.products-section {
    padding: 6rem 6%;
    background-color: #fff;
    position: relative;
}

.products-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 4rem;
}

.product-card {
    width: 100%;
}

.product-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.product-card-reverse .product-grid {
    direction: rtl;
}

.product-card-reverse .product-grid > * {
    direction: ltr;
}

.product-image {
    width: 100%;
    height: 400px;
    background: linear-gradient(135deg, #e8e0d5 0%, #d4ccc0 100%);
    overflow: hidden;
    position: relative;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.2, 0.8, 0.2, 1);
}

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

.product-content {
    padding: 2rem 0;
}

.product-title {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 1.1rem;
    color: #000;
    margin: 0 0 1.5rem 0;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.product-description {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 0.9rem;
    color: #4a4a4a;
    line-height: 1.8;
    margin: 0;
}

/* Responsive */
@media (max-width: 1200px) {
    .products-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }

    .product-image {
        height: 300px;
    }
}

@media (max-width: 1200px) {
    .trims-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .trims-title {
        font-size: 3rem;
    }

    .trims-features {
        grid-template-columns: repeat(3, 1fr);
        gap: 3rem;
    }

    .product-grid {
        gap: 2rem;
    }

    .product-image {
        height: 300px;
    }
}

@media (max-width: 768px) {
    .trims-section {
        padding: 4rem 4%;
    }

    .trims-container {
        margin-bottom: 3rem;
    }

    .trims-title {
        font-size: 2rem;
        margin-bottom: 2rem;
    }

    .trims-description {
        font-size: 0.9rem;
    }

    .quote-text {
        font-size: 1rem;
    }

    .trims-features {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }

    .feature-svg {
        width: 60px;
        height: 60px;
    }

    .feature-label {
        font-size: 0.75rem;
    }

    .products-section {
        padding: 4rem 4%;
    }

    .product-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .product-card-reverse .product-grid {
        direction: ltr;
    }

    .product-image {
        height: 250px;
    }

    .product-title {
        font-size: 1rem;
    }

    .product-description {
        font-size: 0.85rem;
    }
}

