/* CIRCLES (Yuvarlak Kutular) */
.circles-wrapper {
    display: flex;
    gap: 30px;
    padding: 40px 0;
    justify-content: center; /* Ortala */
    flex-wrap: wrap;
}

.circle-item {
    text-align: center;
    cursor: pointer;
    width: 100px; /* Sabit genişlik */
}

.circle-img-box {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    overflow: hidden;
    margin: 0 auto 10px;
    border: 2px solid #eee; /* İnce gri çerçeve */
    transition: 0.3s;
    padding: 3px; /* İç boşluk */
    background: #fff;
}

.circle-item:hover .circle-img-box {
    border-color: var(--primary-color);
    transform: translateY(-3px);
}

.circle-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

.circle-title {
    font-size: 13px;
    font-weight: 600;
    color: var(--text-main);
    line-height: 1.3;
}

/* BANNERS */
/* Bannerları görseldeki gibi alt alta ve tam genişlik yapalım */
.hero-banners {
    display: flex;
    flex-direction: column;
    gap: 30px;
    margin-bottom: 50px;
}

.banner-item {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    height: 350px; /* Sabit Yükseklik */
    display: block;
    text-decoration: none;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
}

.banner-bg {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s;
}

.banner-item:hover .banner-bg {
    transform: scale(1.03);
}

/* Yazıları Bannerın üzerine ortalayalım */
.banner-content {
    position: absolute;
    top: 50%;
    left: 10%;
    transform: translateY(-50%);
    z-index: 2;
    color: #fff;
    max-width: 500px;
}

.banner-title {
    font-size: 36px;
    font-weight: 800;
    margin-bottom: 10px;
    line-height: 1.1;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.banner-sub {
    font-size: 18px;
    font-weight: 500;
    margin-bottom: 20px;
    display: block;
}

.banner-btn {
    display: inline-block;
    padding: 12px 30px;
    background: #fff;
    color: #333;
    border-radius: 4px;
    font-weight: 700;
    font-size: 14px;
    text-transform: uppercase;
    transition: 0.2s;
}

.banner-btn:hover {
    background: #333;
    color: #fff;
}


/* PRODUCT GRID (Ürün Kartları) */
.section-title {
    text-align: center;
    margin: 50px 0 30px;
    font-size: 24px;
    font-weight: 400;
    letter-spacing: 2px;
    color: var(--text-main);
    position: relative;
    padding-bottom: 15px;
}
.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 2px;
    background: var(--primary-color);
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.product-card {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 10px;
    overflow: hidden;
    transition: all 0.3s;
    display: flex;
    flex-direction: column;
}

.product-card:hover {
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
    transform: translateY(-5px);
    border-color: transparent;
}

.p-img-container {
    position: relative;
    width: 100%;
    padding-top: 100%; /* 1:1 Kare Resim Oranı (Aspect Ratio) */
    overflow: hidden;
    background: #f9f9f9;
}

.p-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.5s;
}

/* Hover'da resim hafif zoom yapsın */
.product-card:hover .p-img {
    transform: scale(1.05);
}

.p-info {
    padding: 20px;
    text-align: center;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.p-title {
    font-size: 15px;
    font-weight: 600;
    color: var(--text-main);
    margin-bottom: 10px;
    line-height: 1.4;
    height: 42px; /* 2 satırla sınırla */
    overflow: hidden;
}

.p-price {
    font-size: 18px;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.btn-add {
    width: 100%;
    padding: 12px;
    background: transparent;
    border: 2px solid var(--border-color);
    color: var(--text-main);
    border-radius: 6px;
    cursor: pointer;
    font-weight: 700;
    font-size: 13px;
    letter-spacing: 0.5px;
    transition: 0.2s;
}

.btn-add:hover {
    background: var(--primary-color);
    color: #fff;
    border-color: var(--primary-color);
}
