.fd-fcc-wrap {
    --fd-fcc-accent: #ff6a00;
    --fd-fcc-accent-hover: #ff8533;
    --fd-fcc-heading: #ffffff;
    --fd-fcc-text: #d7dbe2;
    --fd-fcc-price: #ffffff;
    --fd-fcc-section-bg: #090d14;
    --fd-fcc-card-bg: rgba(11, 15, 22, 0.60);
    --fd-fcc-overlay-start: rgba(6, 10, 16, 0.06);
    --fd-fcc-overlay-end: rgba(6, 10, 16, 0.56);
    --fd-fcc-nav-bg: rgba(8, 12, 18, 0.65);
    --fd-fcc-height: 560px;
    position: relative;
    overflow: hidden;
    background:
        radial-gradient(circle at top, rgba(255,255,255,0.06), transparent 35%),
        linear-gradient(180deg, rgba(255,255,255,0.02), transparent 25%),
        var(--fd-fcc-section-bg);
    padding: 44px 0 52px;
}


.fd-fcc-wrap.fd-fcc-no-bg {
    background: transparent !important;
}

.fd-fcc-wrap.fd-fcc-no-bg::before,
.fd-fcc-wrap.fd-fcc-no-bg::after {
    display: none !important;
}

.fd-fcc-shell {
    width: min(1600px, 100%);
    margin: 0 auto;
}

.fd-fcc-header {
    text-align: center;
    margin: 0 0 24px;
    padding: 0 20px;
}

.fd-fcc-eyebrow {
    display: inline-block;
    color: var(--fd-fcc-text);
    font-size: 14px;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    opacity: 0.9;
    margin-bottom: 10px;
}

.fd-fcc-title {
    margin: 0;
    color: var(--fd-fcc-heading);
    font-size: clamp(28px, 4vw, 46px);
    line-height: 1.05;
}

.fd-fcc-swiper {
    position: relative;
    overflow: visible;
    padding: 12px 7% 26px;
}

.fd-fcc-slide {
    width: clamp(260px, 34vw, 560px);
    opacity: 0.78;
    transition: transform 0.45s ease, opacity 0.45s ease, filter 0.45s ease;
}

.fd-fcc-card {
    position: relative;
    min-height: var(--fd-fcc-height);
    border-radius: 28px;
    overflow: hidden;
    background: var(--fd-fcc-card-bg);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.28);
    backdrop-filter: blur(6px);
}

.fd-fcc-image-link,
.fd-fcc-image,
.fd-fcc-overlay {
    position: absolute;
    inset: 0;
}

.fd-fcc-image {
    background-size: cover;
    background-position: center;
    transform: scale(1.02);
    filter: brightness(0.68) saturate(0.9);
    transition: transform 0.55s ease, filter 0.55s ease;
}

.fd-fcc-overlay {
    background: linear-gradient(180deg, var(--fd-fcc-overlay-start) 0%, var(--fd-fcc-overlay-end) 100%);
    transition: opacity 0.45s ease;
}

.fd-fcc-content {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 3;
    padding: 32px 28px 28px;
}

.fd-fcc-product-title {
    margin: 0 0 14px;
    color: var(--fd-fcc-heading);
    font-size: clamp(22px, 2.1vw, 34px);
    line-height: 1.08;
    text-shadow: 0 4px 18px rgba(0, 0, 0, 0.25);
}

.fd-fcc-price-row {
    display: flex;
    align-items: baseline;
    gap: 10px;
    flex-wrap: wrap;
    margin-bottom: 18px;
}

.fd-fcc-price-label {
    color: var(--fd-fcc-text);
    font-size: 15px;
    opacity: 0.95;
}

.fd-fcc-price-value,
.fd-fcc-price-value * {
    color: var(--fd-fcc-price);
    font-size: clamp(22px, 2vw, 32px);
    font-weight: 700;
    line-height: 1;
    text-decoration: none !important;
}

.fd-fcc-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 158px;
    padding: 14px 24px;
    border-radius: 999px;
    background: var(--fd-fcc-accent);
    color: #fff;
    font-weight: 700;
    text-decoration: none;
    transition: transform 0.25s ease, background 0.25s ease, box-shadow 0.25s ease;
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.18);
}

.fd-fcc-button:hover,
.fd-fcc-button:focus {
    background: var(--fd-fcc-accent-hover);
    color: #fff;
    transform: translateY(-2px);
}

.fd-fcc-swiper .swiper-slide-prev,
.fd-fcc-swiper .swiper-slide-next {
    opacity: 0.9;
}

.fd-fcc-swiper .swiper-slide-prev .fd-fcc-image,
.fd-fcc-swiper .swiper-slide-next .fd-fcc-image {
    filter: brightness(0.72) saturate(0.92);
}

.fd-fcc-swiper .swiper-slide-active {
    opacity: 1;
    z-index: 5;
}

.fd-fcc-swiper .swiper-slide-active .fd-fcc-card {
    transform: scale(1.02);
}

.fd-fcc-swiper .swiper-slide-active .fd-fcc-image {
    transform: scale(1.05);
    filter: brightness(1.04) saturate(1.08);
}

.fd-fcc-swiper .swiper-slide-active .fd-fcc-overlay {
    opacity: 0.62;
}

.fd-fcc-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 7;
    width: 52px;
    height: 52px;
    border: 0;
    border-radius: 50%;
    background: var(--fd-fcc-nav-bg);
    backdrop-filter: blur(8px);
    cursor: pointer;
}

.fd-fcc-nav::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 12px;
    height: 12px;
    border-top: 2px solid #fff;
    border-right: 2px solid #fff;
}

.fd-fcc-prev { left: max(10px, 2.5%); }
.fd-fcc-next { right: max(10px, 2.5%); }
.fd-fcc-prev::before { transform: translate(-40%, -50%) rotate(-135deg); }
.fd-fcc-next::before { transform: translate(-60%, -50%) rotate(45deg); }

.fd-fcc-notice {
    padding: 16px 18px;
    border-radius: 14px;
    background: #f5f5f5;
}

@media (max-width: 1199px) {
    .fd-fcc-swiper { padding-left: 5%; padding-right: 5%; }
    .fd-fcc-slide { width: clamp(250px, 42vw, 500px); }
}

@media (max-width: 767px) {
    .fd-fcc-wrap { padding: 26px 0 34px; }
    .fd-fcc-swiper { padding-left: 22px; padding-right: 22px; }
    .fd-fcc-slide { width: min(82vw, 420px); }
    .fd-fcc-card { min-height: 460px; border-radius: 22px; }
    .fd-fcc-content { padding: 22px 20px 20px; }
    .fd-fcc-nav { width: 42px; height: 42px; }
}
