 .silent-product-header-wrapper {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 40px;
        padding: 40px;
        background: linear-gradient(145deg, rgba(9, 16, 26, 0.95) 0%, rgba(9, 16, 72, 0.95) 100%);
        border-radius: 20px;
        border: 1px solid rgba(31, 165, 253, 0.2);
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
        transition: transform 0.3s ease;
        margin-bottom: 5rem;
    }
    
    .silent-product-header-wrapper:hover {
        transform: translateY(-5px);
        border-color: rgba(31, 165, 253, 0.4);
    }
    
    .silent-s-header {
        position: relative;
        border-radius: 15px;
        overflow: hidden;
        background: rgba(9, 16, 26, 0.6);
        border: 1px solid rgba(31, 165, 253, 0.15);
        transition: all 0.3s ease;
        backdrop-filter: blur(10px);
        height: 100%; /* Added */
        width: 100%; /* Added */
    }
    
    .silent-product-image-wrapper {
        position: relative;
        border-radius: 10px;
        overflow: hidden;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
        flex: 1; /* Added */
        display: flex; /* Added */
        align-items: center; /* Added */
        justify-content: center; /* Added */
        width: 100%; /* Added */
        height: 100%; /* Added */
    }
    
    .silent-product-image-wrapper img {
        position: relative;
        width: 100%;
        height: 100%; /* Changed */
        object-fit: cover; /* Added */
        transition: transform 0.5s ease;
    }
    
    .image-overlay-product {
        background: linear-gradient(180deg, transparent 0%, rgba(9, 16, 26, 0.4) 100%);
        z-index: 1; /* Added */
    }
    .silent-product-slogan {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 0px 20px;
    background: linear-gradient(180deg, transparent 0%, rgb(0 0 0 / 100) 100%);
    z-index: 2;
}
    .silent-product-slogan h1 p{
    font-size: 1.6rem;
    color: #c1d1e9;
    margin: 0;
    background: linear-gradient(90deg, #1fa5fd 0%, #0dcaf0 100%);
    -webkit-background-clip: text;
    background-clip: text;
    line-height: normal;
    }
    
    .product-badge {
        display: inline-block;
        padding: 5px 15px;
        background: linear-gradient(90deg, #1fa5fd 0%, #0dcaf0 100%);
        color: #fff;
        border-radius: 20px;
        font-size: 14px;
        margin-bottom: 15px;
        box-shadow: 0 4px 15px rgba(31, 165, 253, 0.2);
    }
    
    .silent-hero-section-hero-title {
        font-size: 2.5rem;
        color: #1fa5fd;
        margin-bottom: 20px;
        text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
    }
    
    .silent-hero-section-hero-subtitle {
        color: #c1d1e9;
        font-size: 1.2rem;
        line-height: 1.6;
        text-align: center;
    }
    
    .divider {
        border-color: rgba(31, 165, 253, 0.2);
        margin: 20px 0;
    }
    
    .silent-hero-section-product-features {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 15px;
        margin: 20px 0;
    }
    
    .silent-hero-section-feature {
        display: flex;
        align-items: center;
        gap: 10px;
        padding: 15px;
        background: rgba(9, 16, 26, 0.6);
        border: 1px solid rgba(31, 165, 253, 0.2);
        border-radius: 10px;
        color: #c1d1e9;
        transition: all 0.3s ease;
    }
    
    .silent-hero-section-feature:hover {
        background: rgba(31, 165, 253, 0.1);
        border-color: #1fa5fd;
        transform: translateY(-3px);
    }
    
    .silent-hero-section-feature i {
        color: #1fa5fd;
        font-size: 1.2rem;
    }
    
    @media (max-width: 992px) {
        .silent-product-header-wrapper {
            grid-template-columns: 1fr;
            padding: 20px;
        }
        .silent-hero-section-hero-title {
            font-size: 2rem;
        }
    
        .silent-hero-section-product-features {
            grid-template-columns: 1fr;
        }
        .silent-product-slogan h1 {
        font-size: 1.5rem;
    }
    }

    .compatibility-section {
    margin: 5rem 0;
    position: relative;
    overflow: hidden;
}

.section-title {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3rem;
    background: linear-gradient(90deg, #1fa5fd 0%, #0dcaf0 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.platform-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 40px;
    padding: 20px;
    position: relative;
}

.platform-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px 25px;
    background: rgba(31, 165, 253, 0.1);
    border-radius: 50px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    transform: translateY(20px);
}

.platform-item:hover {
    background: rgba(31, 165, 253, 0.2);
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 10px 20px rgba(31, 165, 253, 0.2);
}

.platform-icon {
    font-size: 1.8rem;
    color: #1fa5fd;
    filter: drop-shadow(0 0 10px rgba(31, 165, 253, 0.3));
    transition: all 0.3s ease;
}

.platform-item:hover .platform-icon {
    transform: scale(1.2) rotate(5deg);
    color: #0dcaf0;
}

.platform-name {
    color: #c1d1e9;
    font-size: 1.1rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

.platform-item:hover .platform-name {
    color: #fff;
}

/* Responsive */
@media (max-width: 768px) {
    .compatibility-section {
        padding: 40px 0;
    }

    .section-title {
        font-size: 2rem;
        margin-bottom: 2rem;
    }

    .platform-list {
        gap: 20px;
    }

    .platform-item {
        padding: 12px 20px;
    }

    .platform-icon {
        font-size: 1.5rem;
    }

    .platform-name {
        font-size: 1rem;
    }
}
.product-benefits {
    padding-bottom: 80px;
}

.benefits-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-title {
    font-size: 2.5rem;
    background: linear-gradient(90deg, #1fa5fd 0%, #0dcaf0 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    margin-bottom: 2rem;
}

.section-subtitle {
    color: #c1d1e9;
    font-size: 1.2rem;
}

.benefits-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 400px;
    gap: 40px;
    position: relative;
    width: 100%;
    margin-bottom: 60px;
}

.product-slider {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    background: rgba(9, 16, 26, 0.6);
    border: 1px solid rgba(31, 165, 253, 0.15);
}

.slider-container {
    position: relative;
    width: 100%;
    height: 500px;
}

.slider-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.slider-slide.active {
    opacity: 1;
}

.slider-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.slider-nav {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 2;
}

.slider-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
}

.slider-dot.active {
    background: #1fa5fd;
    transform: scale(1.2);
}

.slider-arrows {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    transform: translateY(-50%);
    display: flex;
    justify-content: space-between;
    padding: 0 20px;
    z-index: 2;
}

.slider-arrow {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(31, 165, 253, 0.1);
    border: 1px solid rgba(31, 165, 253, 0.2);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.slider-arrow:hover {
    background: rgba(31, 165, 253, 0.2);
    transform: scale(1.1);
}

.order-card {
    background: rgba(9, 16, 26, 0.8);
    border: 1px solid rgba(31, 165, 253, 0.2);
    border-radius: 20px;
    padding: 30px;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.order-card:hover {
    border-color: #1fa5fd;
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.order-card__header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.stock-info {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 16px;
    background: rgba(31, 165, 253, 0.05);
    border: 1px solid rgba(31, 165, 253, 0.1);
    border-radius: 12px;
    margin-bottom: 20px;
}

.stock-text {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #c1d1e9;
    font-size: 0.95rem;
}

.stock-warning {
    color: #ffc107;
    font-weight: 500;
    position: relative;
}
.battery-indicator {
    display: flex;
    gap: 4px;
    align-items: center;
}

.battery-bar {
    width: 16px;
    height: 4px;
    border-radius: 2px;
    background: rgba(31, 165, 253, 0.2);
    transition: background-color 0.3s ease;
}

.battery-bar:nth-child(1) {
    background: #ffc107;
}

.battery-bar:nth-child(2) {
    background: rgba(31, 165, 253, 0.2);
}

.battery-bar:nth-child(3) {
    background: rgba(31, 165, 253, 0.2);
}

/* Hover effects */
.stock-info:hover {
    border-color: rgba(31, 165, 253, 0.2);
    background: rgba(31, 165, 253, 0.08);
    transform: translateY(-1px);
    transition: all 0.3s ease;
}

/* Mobile optimization */
@media (max-width: 576px) {
    .stock-info {
        padding: 10px 14px;
    }

    .stock-text {
        font-size: 0.875rem;
    }

    .battery-bar {
        width: 12px;
        height: 3px;
    }
}

/* High contrast mode support */
@media (forced-colors: active) {
    .stock-info {
        border: 2px solid CanvasText;
    }  
    .battery-bar {
        border: 1px solid CanvasText;
    }
}

.rating {
    color: #ffc107;
    font-size: 0.9rem;
}

.order-card__price {
    text-align: center;
    margin: 30px 0;
    padding: 20px;
    background: rgba(31, 165, 253, 0.1);
    border-radius: 12px;
}

.price-now {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1fa5fd;
    margin-bottom: 5px;
}

.price-old {
    color: #8b9bb4;
    text-decoration: line-through;
    font-size: 1.1rem;
}

.order-card__benefits {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin: 30px 0;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #c1d1e9;
}

.benefit-item i {
    color: #1fa5fd;
}

.btn-product {
    width: 100%;
    padding: 15px;
    background: linear-gradient(90deg, #1fa5fd 0%, #0dcaf0 100%);
    border: none;
    border-radius: 12px;
    color: white;
    font-size: 1.1rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-product:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(31, 165, 253, 0.3);
}

.btn-product i {
    transition: transform 0.3s ease;
}

.btn-product:hover i {
    transform: translateX(5px);
}

.secure-payment {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: 20px;
    color: #8b9bb4;
    font-size: 0.9rem;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .benefits-grid {
        grid-template-columns: minmax(0, 1fr) minmax(280px, 350px);
        gap: 30px;
    }
}

@media (max-width: 992px) {
    .benefits-grid {
        grid-template-columns: 1fr;
    }

    .order-card-wrapper {
        position: static;
        width: 100%;
    }

    .section-title {
        font-size: 2rem;
    }
}

@media (max-width: 768px) {
    .product-benefits {
        padding: 40px 0;
    }

    .benefits-header {
        margin-bottom: 40px;
    }
}

/* Add to existing styles */
.features-showcase {
    margin-bottom: 60px;
}

.silent-hero-section-feature-cards-comfort {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.silent-hero-section-feature-card-comfort {
    background: rgba(9, 16, 26, 0.6);
    border: 1px solid rgba(31, 165, 253, 0.15);
    border-radius: 20px;
    padding: 30px;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.silent-hero-section-feature-card-comfort:hover {
    transform: translateY(-8px);
    border-color: #1fa5fd;
    background: rgba(31, 165, 253, 0.1);
}

.order-card {
    background: rgba(9, 16, 26, 0.8);
    border: 1px solid rgba(31, 165, 253, 0.2);
    border-radius: 20px;
    padding: 30px;
    backdrop-filter: blur(10px);
}

.order-card__badge {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.price-tag {
    display: flex;
    align-items: baseline;
    gap: 10px;
}

.current-price {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1fa5fd;
    text-shadow: 0 2px 4px rgba(31, 165, 253, 0.2);
}

.btn-product {
    width: 100%;
    padding: 15px;
    border-radius: 12px;
    font-size: 1.1rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-bottom: 15px;
}

.btn-product.primary {
    background: linear-gradient(90deg, #1fa5fd 0%, #0dcaf0 100%);
    border: none;
    color: white;
}

.btn-product.secondary {
    background: transparent;
    border: 2px solid #1fa5fd;
    color: #1fa5fd;
}

.btn-product:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(31, 165, 253, 0.2);
}

.payment-icons {
    display: flex;
    gap: 10px;
    font-size: 1.5rem;
    color: #8b9bb4;
    margin-top: 10px;
}

@media (max-width: 768px) {
    .silent-hero-section-feature-cards-comfort {
        grid-template-columns: 1fr;
    }

    .current-price {
        font-size: 2rem;
    }

    .btn-product {
        padding: 12px;
        font-size: 1rem;
    }
}
.big-plate-content {
    position: relative;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin: 60px 0;
    background: rgba(9, 16, 26, 0.6);
    border: 1px solid rgba(31, 165, 253, 0.15);
    border-radius: 24px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.big-plate-content:hover {
    transform: translateY(-5px);
    border-color: rgba(31, 165, 253, 0.3);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.plate-image {
    position: relative;
    height: 100%;
    min-height: 400px;
}

.plate-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.image-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        90deg,
        rgba(9, 16, 26, 0.3),
        rgba(9, 16, 26, 0.8)
    );
}

.plate-content {
    padding: 60px 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
}

.attention-headline {
    font-size: 1.8rem;
    color: #c1d1e9;
    margin-bottom: 30px;
    line-height: 1.2;
}

.question-headline {
    font-size: 1.8rem;
    color: #c1d1e9;
    margin-bottom: 20px;
    line-height: 1.3;
}

.articles-popup {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    transform: translateY(100%);
    background: rgba(9, 16, 26, 0.98);
    border: 1px solid rgba(31, 165, 253, 0.2);
    border-radius: 24px;
    padding: 40px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(10px);
    z-index: 10;
}

.big-plate-content:hover .articles-popup {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
}

.articles-popup h4 {
    color: #fff;
    margin-bottom: 30px;
    font-size: 1.5rem;
    text-align: center;
}

.articles-list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    list-style: none;
    padding: 0;
    margin: 0;
}

.articles-list li {
    margin-bottom: 0;
}

.articles-list a {
    display: flex;
    align-items: center;
    gap: 12px;
    color: #c1d1e9;
    text-decoration: none;
    padding: 15px;
    border-radius: 12px;
    background: rgba(31, 165, 253, 0.05);
    border: 1px solid rgba(31, 165, 253, 0.1);
    transition: all 0.3s ease;
}

.articles-list a:hover {
    background: rgba(31, 165, 253, 0.1);
    color: #fff;
}

.articles-list i:first-child {
    color: #1fa5fd;
    font-size: 1.2rem;
}

.articles-list i:last-child {
    margin-left: auto;
    font-size: 0.9rem;
    opacity: 0;
    transition: all 0.3s ease;
}

.articles-list a:hover i:last-child {
    opacity: 1;
    transform: translateX(5px);
}
@media (max-width: 1200px) {
    .articles-list {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 992px) {
    .big-plate-content {
        grid-template-columns: 1fr;
    }
    .big-plate-content:hover {
    transform: none; 
    }
    .plate-image {
       display: none;
    }
    .plate-content{
        display: none;
    }
    .articles-popup {
        position: relative;
        width: 100%;
        transform: none;
        display: block;
        opacity: 1;
        visibility: visible;
        padding: 20px;
    }
.articles-list {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (max-width: 576px) {
    .articles-list {
        grid-template-columns: 1fr;
    }
}

.product-specifications-section {
    margin-bottom: 4rem;
}

.specifications-card {
    background: rgba(9, 16, 26, 0.6);
    border: 1px solid rgba(31, 165, 253, 0.15);
    border-radius: 20px;
    padding: 30px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.specifications-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, 
        transparent 0%, 
        rgba(31, 165, 253, 0.3) 50%, 
        transparent 100%
    );
}

.specifications-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 1px solid rgba(31, 165, 253, 0.1);
}

.specifications-title {
    display: flex;
    align-items: center;
    gap: 10px;
}

.title-icon {
    font-size: 1.5rem;
    background: linear-gradient(90deg, #1fa5fd 0%, #0dcaf0 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.specifications-title h3 {
    color: #c1d1e9;
    font-size: 1.3rem;
    margin: 0;
}

.specifications-counter {
    display: flex;
    flex-direction: column;
    align-items: center;
    background: rgba(31, 165, 253, 0.1);
    padding: 8px 15px;
    border-radius: 12px;
    border: 1px solid rgba(31, 165, 253, 0.2);
}

.counter-number {
    color: #1fa5fd;
    font-size: 1.2rem;
    font-weight: 600;
}

.counter-text {
    color: #c1d1e9;
    font-size: 0.9rem;
}

.specifications-content {
    position: relative;
    max-height: 400px;
    overflow-y: auto;
    padding-right: 10px;
}

.specifications-content::-webkit-scrollbar {
    width: 4px;
}

.specifications-content::-webkit-scrollbar-track {
    background: rgba(31, 165, 253, 0.1);
    border-radius: 2px;
}

.specifications-content::-webkit-scrollbar-thumb {
    background: linear-gradient(90deg, #1fa5fd 0%, #0dcaf0 100%);
    border-radius: 2px;
}

.specifications-card ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.specifications-card li {
    color: #c1d1e9;
    font-size: 1.1rem;
    line-height: 1.5;
    font-weight: 300;
    padding: 15px 15px 15px 35px;
    border-radius: 12px;
    transition: all 0.3s ease;
    position: relative;
    display: flex;
    align-items: center;
    background: rgba(31, 165, 253, 0.05);
    border: 1px solid rgba(31, 165, 253, 0.1);
}

.specifications-card li::before {
    content: '';
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    width: 6px;
    height: 6px;
    background: linear-gradient(90deg, #1fa5fd 0%, #0dcaf0 100%);
    border-radius: 50%;
}

.specifications-footer {
    margin-top: 20px;
    padding-top: 15px;
    border-top: 1px solid rgba(31, 165, 253, 0.1);
}

.specifications-progress {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.progress-bar {
    width: 100%;
    height: 4px;
    background: rgba(31, 165, 253, 0.1);
    border-radius: 2px;
    overflow: hidden;
}

.progress-fill {
    width: 0%;
    height: 100%;
    background: linear-gradient(90deg, #1fa5fd 0%, #0dcaf0 100%);
    transition: width 0.3s ease;
}

.progress-text {
    color: #8b9bb4;
    font-size: 0.9rem;
}

@media (max-width: 768px) {
    .specifications-card {
        padding: 20px;
    }
    
    .specifications-header {
        flex-direction: column;
        gap: 15px;
        align-items: flex-start;
    }
    
    .specifications-content {
        max-height: 300px;
    }
    
    .specifications-card li {
        font-size: 1rem;
    }
}
