.page-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 20px;
    padding-top: 40px;
}

.main-content {
    width: 100%;
}

.main-content h2 {
    text-align: center;
    margin-bottom: 0;
}

.description-container {
    background-color: white;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    margin-bottom: 20px;
    padding: 15px;
    line-height: 1.8;
    text-align: justify;
    width: 100%;
    font-size: 15px;
    color: #444444;
}

.features-container {
    background-color: white;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    margin-bottom: 0;
    padding: 15px;
    line-height: 1.8;
    text-align: justify;
    color: #444444;
    width: 100%;
    font-size: 15px;
}

.features-container p {
    color: #444444;
    margin-bottom: 15px;
    font-size: 15px;
}

.features-container h4 {
    color: #000000;
    margin-top: 15px;
    margin-bottom: 15px;
    font-size: 1.2rem;
}

.features-container ul {
    list-style: none;
    padding-left: 0;
    margin-top: 15px;
}

.features-container li {
    margin-bottom: 15px;
    padding-left: 20px;
    position: relative;
    color: #444444;
}

.features-container li:before {
    content: "•";
    color: #FFD700;
    font-size: 1.2em;
    position: absolute;
    left: 0;
}

.features-container li strong {
    color: #000000;
}

.section-title {
    text-align: center;
    margin: 15px 0;
    font-size: 1.5rem;
    color: #000000;
}

.curtain-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 40px;
    padding: 30px;
}

.curtain-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
}

.curtain-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

.curtain-card img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    display: block;
    transition: transform 0.3s ease;
}

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

.curtain-info {
    padding: 20px;
    text-align: center;
    background: white;
}

.curtain-info h3 {
    margin: 0;
    color: #333;
    font-size: 1.2rem;
    font-weight: 500;
}

.section-description {
    margin: 0;
    color: #444;
    margin-bottom: 15px;
}

.menu-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    padding: 20px;
    margin-bottom: 30px;
}

.page-dropdown-menu {
    position: relative;
    width: 100%;
    margin-bottom: 30px;
}

.page-dropdown-btn {
    width: 100%;
    padding: 15px;
    background: #fff;
    border: none;
    border-radius: 8px;
    border-left: 4px solid #ff69b4;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 1.1rem;
    color: #333;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.page-dropdown-btn:hover {
    transform: translateX(5px);
    box-shadow: 0 4px 10px rgba(0,0,0,0.15);
}

.page-dropdown-btn i {
    color: #ff69b4;
    transition: transform 0.3s ease;
}

.page-dropdown-btn.active i {
    transform: rotate(180deg);
}

.page-dropdown-content {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: #fff;
    border-radius: 8px;
    margin-top: 10px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 100;
}

.page-dropdown-content.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.menu-card {
    background: #fff;
    padding: 12px 15px;
    text-decoration: none;
    transition: all 0.3s ease;
    border-left: 4px solid #ff69b4;
    display: block;
}

.menu-card:not(:last-child) {
    border-bottom: 1px solid #f0f0f0;
}

.menu-card:first-child {
    border-radius: 8px 8px 0 0;
}

.menu-card:last-child {
    border-radius: 0 0 8px 8px;
}

.menu-card:hover {
    background: #fff5f8;
    padding-left: 20px;
}

.menu-card.active {
    background: #fff5f8;
    border-left: 4px solid #ff1493;
}

.card-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #333;
}

.card-content span {
    font-size: 1rem;
    font-weight: 500;
}

.card-content i {
    color: #ff69b4;
    font-size: 0.9rem;
}

.description-wrapper {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
}

.vertical-box {
    width: 50px;
    min-width: 50px;
    background: var(--secondary-color);
    border-radius: 8px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
    position: relative;
    height: 200px;
    box-shadow: 0 0 15px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.vertical-box:hover {
    box-shadow: none;

    .arrow-top{
        color: var(--primary-color);
    }
    .vertical-text{
        color: var(--primary-color);}
    
}

.arrow-top {
    color: white;
    font-size: 1.5rem;
    transition: all 0.3s ease;
}


.vertical-text {
    color: white;
    text-decoration: none;
    font-weight: 500;
    font-size: 1.1rem;
    writing-mode: vertical-rl;
    transform: rotate(180deg);
    white-space: nowrap;
    transition: all 0.3s ease;
    margin: auto 0;
}



.arrow-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
}

.arrow-line {
    width: 1px;
    height: 15px;
    background-color: white;
    margin-bottom: -1px;
    transition: all 0.3s ease;
}

.vertical-text i {
    font-size: 0.8rem;
    transition: all 0.3s ease;
}







/* Responsive tasarım */
@media screen and (max-width: 992px) {
    .side-dropdown {
        width: 220px;
        min-width: 220px;
    }

    .side-menu-item {
        font-size: 13px;
        padding: 10px 15px;
    }
}

.mobile-only {
    display: none;
}

@media screen and (max-width: 768px) {
    .desktop-only {
        display: none;
    }

    .mobile-only {
        display: block;
        margin-top: 20px;
    }

    .main-content h2 {
        font-size: 15px;
    }

    .section-title {
        font-size: 15px;
    }

    .features-container p {
        font-size: 10px;
    }

    .page-container {
        flex-direction: column;
        gap: 20px;
    }

    .side-dropdown {
        width: 100%;
        min-width: 100%;
    }

    .side-dropdown-btn {
        padding: 10px 12px;
        font-size: 0.9rem;
    }

    .side-menu-item {
        padding: 10px 12px;
        font-size: 0.85rem;
    }

    .menu-cards {
        grid-template-columns: 1fr;
        padding: 15px;
    }
    
    .menu-card {
        padding: 12px;
    }
    
    .card-content span {
        font-size: 1rem;
    }

    .dropdown-btn {
        font-size: 1rem;
        padding: 12px;
    }

    .menu-card {
        padding: 10px 12px;
    }

    .card-content span {
        font-size: 0.9rem;
    }

    .description-wrapper {
        flex-direction: column;
        gap: 15px;
    }

    .vertical-box {
        width: 100%;
        height: 50px;
        min-width: auto;
        flex-direction: row;
        justify-content: center;
        align-items: center;
        padding: 0 15px;
    }

    .arrow-top {
        transform: rotate(90deg);
        margin-right: 15px;
    }

    .vertical-text {
        writing-mode: horizontal-tb;
        transform: none;
        margin: 0;
    }

    .curtain-grid {
        padding: 15px;
        gap: 20px;
    }

    .curtain-card {
        margin-bottom: 10px;
    }

    .curtain-card img {
        height: 250px;
    }
}