/* Hero Premium Section */
.hero-premium {
    height: 90vh;
    min-height: 600px;
    /* background-image: url('https://diamant.ru/upload/iblock/88b/88b9a10c73e0a8b9a10c73e0a8b9a10c.jpg'); */
    background-size: cover;
    background-position: center;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--white);
}

/* Background image fallback to a nice gradient if image is missing */
/* .hero-premium::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: linear-gradient(
        160deg,
        rgba(198, 40, 40, 0.45) 0%,
        rgba(0, 0, 0, 0.45) 40%,
        rgba(0, 0, 0, 0.2) 100%
    );
} */

.hero-cta-section {
    padding: 60px 0;
    background: radial-gradient(circle at center, #ffffff 0%, #fff4f4 60%, #fafafa 100%);
    text-align: center;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
}

.hero-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 72px;
    font-weight: 700;
    margin-bottom: 25px;
    line-height: 1.1;
    text-shadow: 0 2px 10px rgba(0,0,0,0.3);
}

.hero-title span {
    color: var(--primary-red);
    font-style: italic;
}

.hero-subtitle {
    font-size: 20px;
    opacity: 0.9;
    margin-bottom: 45px;
    line-height: 1.6;
    font-weight: 300;
}

.hero-cta {
    display: flex;
    gap: 20px;
    justify-content: center;
}

.btn-primary-white {
    background-color: var(--dark) !important;
    color: var(--white) !important;
    padding: 18px 45px;
    border-radius: 4px;
    text-transform: uppercase;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 2px;
    transition: all 0.3s ease;
    text-decoration: none;
    border: 1px solid var(--dark) !important;
    display: inline-block;
}

.btn-primary-white:hover {
    background-color: var(--primary-red) !important;
    border-color: var(--primary-red) !important;
    color: var(--white) !important;
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

.btn-outline-white {
    background-color: transparent !important;
    color: var(--dark) !important;
    border: 2px solid var(--dark) !important;
    padding: 16px 45px;
    border-radius: 4px;
    text-transform: uppercase;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 2px;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.btn-outline-white:hover {
    background-color: var(--dark) !important;
    color: var(--white) !important;
    transform: translateY(-5px);
}

/* Circular Categories */
.categories-circles {
    padding: 100px 0;
    background: radial-gradient(circle at center, #ffffff 0%, #fff4f4 60%, #fafafa 100%);
    overflow: hidden;
}

.circles-grid {
    display: flex;
    justify-content: center;
    flex-wrap: nowrap;
    gap: 30px;
    padding: 20px 0;
}

.circle-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    width: 140px;
}

.circle-image {
    width: 140px;
    height: 140px;
    border-radius: 50%;
    overflow: hidden;
    background: #ffffff;
    border: 1px solid rgba(0,0,0,0.05);
    padding: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 10px 30px rgba(0,0,0,0.03), 0 1px 3px rgba(0,0,0,0.02);
    position: relative;
}

.circle-image::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 50%;
    border: 2px solid transparent;
    transition: all 0.4s ease;
}

.circle-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: all 0.5s ease;
    filter: drop-shadow(0 5px 15px rgba(0,0,0,0.08));
}

.circle-label {
    font-size: 14px;
    font-weight: 700;
    color: var(--dark);
    text-transform: uppercase;
    letter-spacing: 2px;
    transition: all 0.3s ease;
    text-align: center;
    position: relative;
}

.circle-label::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    width: 0;
    height: 2px;
    background-color: var(--primary-red);
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

/* Hover Effects */
.circle-item:hover {
    transform: translateY(-12px);
}

.circle-item:hover .circle-image {
    background: #ffffff;
    box-shadow: 0 25px 50px rgba(198,40,40,0.12), 0 0 0 1px rgba(198,40,40,0.05);
}

.circle-item:hover .circle-image::after {
    border-color: var(--primary-red);
    transform: scale(1.05);
    opacity: 0.15;
}

.circle-item:hover .circle-image img {
    transform: scale(1.15) rotate(5deg);
    filter: drop-shadow(0 10px 20px rgba(198,40,40,0.2));
}

.circle-item:hover .circle-label {
    color: var(--primary-red);
}

.circle-item:hover .circle-label::after {
    width: 40px;
}

/* Responsive */
@media (max-width: 1024px) {
    .circles-grid { gap: 35px; flex-wrap: wrap; }
    .circle-image { width: 140px; height: 140px; padding: 30px; }
    .circle-item { width: 140px; }
}

@media (max-width: 768px) {
    .categories-circles { padding: 60px 0; }
    .circles-grid { gap: 25px; flex-wrap: wrap; }
    .circle-image { width: 120px; height: 120px; padding: 25px; }
    .circle-item { width: 120px; }
    .circle-label { font-size: 12px; letter-spacing: 1px; }
}

@media (max-width: 480px) {
    .circles-grid { gap: 15px; grid-template-columns: repeat(2, 1fr); display: grid; justify-items: center; }
    .circle-image { width: 110px; height: 110px; padding: 22px; }
    .circle-item { width: 100%; }
}

/* Promo Banners */
.promo-banners {
    padding-bottom: 80px;
}

.banners-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 30px;
    height: 450px;
}

.promo-banner {
    border-radius: 12px;
    background-size: cover;
    background-position: center;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    padding: 50px;
    cursor: pointer;
}

.promo-banner::after {
    content: '';
    position: absolute;
    top:0; left:0; right:0; bottom:0;
    background: linear-gradient(to right, rgba(0,0,0,0.4), transparent);
    transition: background 0.4s ease;
}

.promo-banner:hover::after {
    background: linear-gradient(to right, rgba(0,0,0,0.5), transparent);
}

.banner-content {
    position: relative;
    z-index: 2;
    color: var(--white);
    max-width: 400px;
}

.banner-tag {
    display: inline-block;
    background-color: var(--primary-red);
    padding: 5px 12px;
    border-radius: 4px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 15px;
}

.banner-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 38px;
    margin-bottom: 10px;
}

.banner-text {
    font-size: 18px;
    margin-bottom: 30px;
    opacity: 0.9;
}

.btn-banner {
    display: inline-block;
    color: var(--white);
    border-bottom: 2px solid var(--white);
    text-decoration: none;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 13px;
    padding-bottom: 5px;
    transition: all 0.3s ease;
}

.btn-banner:hover {
    border-color: var(--primary-red);
    color: var(--primary-red);
    padding-left: 10px;
}

/* Featured Products Home */
.featured-products-home {
    padding: 80px 0;
    background-color: #fafafa;
}

.featured-products-home .product-card-category {
    color: #111111 !important;
    -webkit-text-fill-color: #111111 !important;
}

.section-header-centered {
    text-align: center;
    margin-bottom: 60px;
}

.section-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 42px;
    color: var(--dark);
    margin-bottom: 15px;
}

.title-underline {
    width: 60px;
    height: 3px;
    background-color: var(--primary-red);
    margin: 0 auto;
}

.product-price {
    font-family: 'Montserrat Local', Arial, Helvetica, sans-serif;
    font-size: 17px;
    font-weight: 700;
    line-height: 1.3;
    letter-spacing: 0.15px;
    color: var(--primary-red);
    text-rendering: geometricPrecision;
    -webkit-font-smoothing: antialiased;
}

.view-all-container {
    text-align: center;
    margin-top: 40px;
}

.btn-view-all {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--dark);
    text-decoration: none;
    font-weight: 600;
    border: 1px solid var(--dark);
    padding: 12px 35px;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.btn-view-all:hover {
    background-color: var(--primary-red);
    border-color: var(--primary-red);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(198, 40, 40, 0.3);
}

/* Brand Advantages */
.brand-advantages {
    padding: 100px 0;
    background-color: var(--white);
}

.advantages-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
}

.advantage-item {
    text-align: center;
    transition: transform 0.3s ease;
}

.advantage-item:hover {
    transform: translateY(-5px);
}

.adv-icon {
    width: 70px;
    height: 70px;
    background-color: #fcecec;
    color: var(--primary-red);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.advantage-item:hover .adv-icon {
    background-color: var(--primary-red);
    color: var(--white);
    border-color: var(--primary-red);
    box-shadow: 0 8px 25px rgba(198, 40, 40, 0.3);
}

.adv-icon i {
    font-size: 32px;
}

.adv-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 12px;
}

.adv-desc {
    font-size: 14px;
    color: var(--gray);
    line-height: 1.6;
}

/* Responsive */
@media (max-width: 1024px) {
    .circles-grid { gap: 20px; }
    .circle-image { width: 110px; height: 110px; }
    .hero-title { font-size: 52px; }
    .advantages-grid { grid-template-columns: repeat(2, 1fr); }
    .banners-grid { grid-template-columns: 1fr; height: auto; }
    .promo-banner { height: 350px; }
}

@media (max-width: 768px) {
    .hero-premium { height: 70vh; }
    .hero-cta { flex-direction: column; align-items: center; }
    .btn-primary-white, .btn-outline-white { width: 80%; }
    .catalog-grid { grid-template-columns: repeat(2, 1fr); gap: 20px; }
}

@media (max-width: 480px) {
    .hero-title { font-size: 42px; }
    .catalog-grid { grid-template-columns: 1fr; }
    .circle-image { width: 90px; height: 90px; }
    .advantages-grid { grid-template-columns: 1fr; }
    .banner-title { font-size: 28px; }
}
