
.cicekchi-cat-banners {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px;
}

.cicekchi-cat-banner {
    text-decoration: none !important;
    color: inherit;
    display: block;
}

.cicekchi-cat-banner-inner {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    min-height: 320px;
    padding: 24px 24px 0;
    background-color: #f5f5f5;
    border-radius: 24px;
    box-shadow: 0 12px 30px rgba(0,0,0,0.04);
    transition: transform 0.16s ease, box-shadow 0.16s ease;
    overflow: hidden;
}

.cicekchi-cat-banner-inner:hover {
    transform: translateY(-4px);
    box-shadow: 0 18px 40px rgba(0,0,0,0.08);
}

.cicekchi-cat-banner-top {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.cicekchi-cat-banner-badge {
    font-size: 12px;
    font-weight: 600;
    color: #ff7a1a;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.cicekchi-cat-banner-title {
    font-size: 22px;
    line-height: 1.25;
    font-weight: 700;
    color: #1c1c1c;
    margin: 0;
}

.cicekchi-cat-banner-subtitle {
    font-size: 14px;
    line-height: 1.5;
    color: #555555;
    max-width: 260px;
}

.cicekchi-cat-banner-button {
    margin-top: 18px;
}

.cicekchi-cat-banner-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 18px;
    border-radius: 999px;
    background-color: #ffffff;
    color: #111111;
    font-size: 13px;
    font-weight: 600;
    box-shadow: 0 4px 12px rgba(0,0,0,0.06);
}

.cicekchi-cat-banner-btn-arrow {
    font-size: 16px;
}

.cicekchi-cat-banner-inner:hover .cicekchi-cat-banner-btn {
    box-shadow: 0 8px 18px rgba(0,0,0,0.10);
}

.cicekchi-cat-banner-bottom {
    margin-top: auto;
    display: flex;
    justify-content: center;
    align-items: flex-end;
}

.cicekchi-cat-banner-bottom img {
    max-width: 90%;
    height: auto;
    display: block;
    object-fit: contain;
}

/* Responsive kolon sayıları */
.cicekchi-cat-banners.cicekchi-cat-banners-cols-desktop-1 {
    grid-template-columns: repeat(1, minmax(0, 1fr));
}
.cicekchi-cat-banners.cicekchi-cat-banners-cols-desktop-2 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}
.cicekchi-cat-banners.cicekchi-cat-banners-cols-desktop-3 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}
.cicekchi-cat-banners.cicekchi-cat-banners-cols-desktop-4 {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

@media (max-width: 1024px) {
    .cicekchi-cat-banners.cicekchi-cat-banners-cols-tablet-1 {
        grid-template-columns: repeat(1, minmax(0, 1fr));
    }
    .cicekchi-cat-banners.cicekchi-cat-banners-cols-tablet-2 {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
    .cicekchi-cat-banners.cicekchi-cat-banners-cols-tablet-3 {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
    .cicekchi-cat-banners.cicekchi-cat-banners-cols-tablet-4 {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }
}

@media (max-width: 767px) {
    .cicekchi-cat-banners {
        grid-template-columns: repeat(1, minmax(0, 1fr));
        gap: 16px;
    }
    .cicekchi-cat-banner-inner {
        min-height: 260px;
        padding: 20px 20px 0;
    }
    .cicekchi-cat-banner-title {
        font-size: 18px;
    }
    .cicekchi-cat-banners.cicekchi-cat-banners-cols-mobile-1 {
        grid-template-columns: repeat(1, minmax(0, 1fr));
    }
    .cicekchi-cat-banners.cicekchi-cat-banners-cols-mobile-2 {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}


/* Yatay banner grid */
.cicekchi-cat-banners-yatay {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 16px;
}

.cicekchi-cat-banner-yatay {
    text-decoration: none !important;
    color: inherit;
    display: block;
}

.cicekchi-cat-banner-yatay-inner {
    display: flex;
    align-items: center;
    padding: 16px 20px;
    min-height: 120px;
    background-color: #f5f5f5;
    border-radius: 24px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.04);
    transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.cicekchi-cat-banner-yatay-inner:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 30px rgba(0,0,0,0.08);
}

.cicekchi-cat-banner-yatay-image {
    flex: 0 0 120px;
    max-width: 140px;
    margin-right: 16px;
}

.cicekchi-cat-banner-yatay-image img {
    width: 100%;
    height: auto;
    object-fit: contain;
    display: block;
}

.cicekchi-cat-banner-yatay-content {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.cicekchi-cat-banner-yatay-title {
    font-size: 18px;
    font-weight: 600;
    margin: 0;
}

.cicekchi-cat-banner-yatay-subtitle {
    font-size: 13px;
    color: #666666;
}

/* Responsive kolon sayıları */
.cicekchi-cat-banners-yatay.cicekchi-cat-banners-yatay-cols-desktop-1 {
    grid-template-columns: repeat(1, minmax(0, 1fr));
}
.cicekchi-cat-banners-yatay.cicekchi-cat-banners-yatay-cols-desktop-2 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}
.cicekchi-cat-banners-yatay.cicekchi-cat-banners-yatay-cols-desktop-3 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}
.cicekchi-cat-banners-yatay.cicekchi-cat-banners-yatay-cols-desktop-4 {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

@media (max-width: 1024px) {
    .cicekchi-cat-banners-yatay.cicekchi-cat-banners-yatay-cols-tablet-1 {
        grid-template-columns: repeat(1, minmax(0, 1fr));
    }
    .cicekchi-cat-banners-yatay.cicekchi-cat-banners-yatay-cols-tablet-2 {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
    .cicekchi-cat-banners-yatay.cicekchi-cat-banners-yatay-cols-tablet-3 {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
    .cicekchi-cat-banners-yatay.cicekchi-cat-banners-yatay-cols-tablet-4 {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }
}

@media (max-width: 767px) {
    .cicekchi-cat-banners-yatay {
        grid-template-columns: repeat(1, minmax(0, 1fr));
    }
    .cicekchi-cat-banners-yatay.cicekchi-cat-banners-yatay-cols-mobile-1 {
        grid-template-columns: repeat(1, minmax(0, 1fr));
    }
    .cicekchi-cat-banners-yatay.cicekchi-cat-banners-yatay-cols-mobile-2 {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}
