/* Google Fonts - Inter для навигации */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600&display=swap');

/* Trade Gothic Next Font Face */
@font-face {
    font-family: 'trade-gothic-next-bold';
    src: url('../fonts/trade-gothic-next/Trade Gothic Next LT Pro BdCn/Web Fonts/b491db99790e4fce858c18892824b2a5.eot');
    src: url('../fonts/trade-gothic-next/Trade Gothic Next LT Pro BdCn/Web Fonts/b491db99790e4fce858c18892824b2a5.eot?#iefix') format('embedded-opentype'),
         url('../fonts/trade-gothic-next/Trade Gothic Next LT Pro BdCn/Web Fonts/b491db99790e4fce858c18892824b2a5.woff2') format('woff2'),
         url('../fonts/trade-gothic-next/Trade Gothic Next LT Pro BdCn/Web Fonts/b491db99790e4fce858c18892824b2a5.woff') format('woff'),
         url('../fonts/trade-gothic-next/Trade Gothic Next LT Pro BdCn/Web Fonts/b491db99790e4fce858c18892824b2a5.ttf') format('truetype'),
         url('../fonts/trade-gothic-next/Trade Gothic Next LT Pro BdCn/Web Fonts/b491db99790e4fce858c18892824b2a5.svg#Trade Gothic Next LT Pro BdCn') format('svg');
    font-weight: bold;
    font-style: normal;
    font-stretch: condensed;
    font-display: swap;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: trade-gothic-next, sans-serif;
    overflow-x: hidden;
}

/* Global Input and Select Styles */
input[type="text"],
input[type="email"],
input[type="tel"],
input[type="number"],
input[type="password"],
input[type="search"],
textarea,
select {
    font-family: trade-gothic-next, sans-serif;
    box-sizing: border-box;
}

input[type="text"]:focus,
input[type="email"]:focus,
input[type="tel"]:focus,
input[type="number"]:focus,
input[type="password"]:focus,
input[type="search"]:focus,
textarea:focus,
select:focus {
    outline: none;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header Styles */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(10px);
    padding: 15px 0;
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
}

.logo {
    flex-shrink: 0;
}

.logo-text {
    font-size: 24px;
    font-weight: bold;
    color: #ff6b35;
    letter-spacing: -0.5px;
    font-family: 'trade-gothic-next-bold', trade-gothic-next, sans-serif;
}

.logo-image {
    height: 80px;
    width: auto;
    display: block;
    object-fit: contain;
}

/* Burger Menu */
.burger-menu {
    display: none;
    flex-direction: column;
    justify-content: space-around;
    width: 30px;
    height: 30px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1001;
    position: relative;
}

.burger-line {
    width: 100%;
    height: 3px;
    background: #ffffff;
    border-radius: 2px;
    transition: all 0.3s ease;
}

.burger-menu.active .burger-line:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.burger-menu.active .burger-line:nth-child(2) {
    opacity: 0;
}

.burger-menu.active .burger-line:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

.nav-links {
    display: flex;
    flex: 1;
    justify-content: center;
}

.navigation-link-bar {
    display: flex;
    list-style: none;
    padding: 0;
    margin: 0;
    gap: 0;
    align-items: center;
    flex-wrap: wrap;
}

.navigation-link-bar li {
    position: relative;
}

.navigation-link-bar li a {
    color: #ffffff;
    text-decoration: none;
    font-size: 14px;
    font-weight: 300;
    letter-spacing: 0.5px;
    transition: color 0.3s ease;
    font-family: 'Inter', sans-serif;
    padding: 8px 18px;
    display: block;
    white-space: nowrap;
}

.navigation-link-bar li a:hover {
    color: #ff6b35;
}

.navigation-link-bar li.current a,
.navigation-link-bar li a.active {
    color: #ff6b35;
}

.navigation-link-bar li.current::after,
.navigation-link-bar li:has(a.active)::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 6px;
    height: 6px;
    background: #ff6b35;
    border-radius: 50%;
}

.nav-link {
    color: #ffffff;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.5px;
    transition: color 0.3s ease;
    font-family: trade-gothic-next, sans-serif;
}

.nav-link:hover {
    color: #ff6b35;
}

.header-actions {
    display: flex;
    align-items: flex-end;
    gap: 5px;
    flex-direction: column;
    flex-shrink: 0;
}

.phone-box a{
background: rgba(255, 255, 255, 0.9);
    padding: 8px 15px;
    width: 100%;
    display: block;
    border-radius: 6px;
    font-size: 14px;
    color: #333;
    font-weight: 500;
    white-space: nowrap;
    font-family: trade-gothic-next, sans-serif;
    text-align: center;
}

.phone-box{
    width: 250px;
}

/* Hero Section */
.hero-slider {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
}

.hero-slides {
    position: relative;
    width: 100%;
    height: 100%;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.8s ease-in-out;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-slide.active {
    opacity: 1;
    z-index: 1;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 1;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3;
    text-align: center;
    padding: 0 20px;
    max-width: 900px;
}

.hero-text {
    animation: fadeInUp 1s ease-out;
}

.hero-subtitle {
    font-size: 18px;
    color: #ffffff;
    margin-bottom: 20px;
    font-weight: 300;
    letter-spacing: 1px;
    font-family: trade-gothic-next, sans-serif;
}

.hero-title {
    font-size: 72px;
    font-weight: 900;
    color: #ffffff;
    margin-bottom: 40px;
    letter-spacing: 3px;
    line-height: 1.1;
    text-transform: uppercase;
    font-family: 'trade-gothic-next-bold', trade-gothic-next, sans-serif;
}

.cta-button {
    background: #ff6b35;
    color: #ffffff;
    border: none;
    padding: 18px 45px;
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 1.5px;
    border-radius: 8px;
    cursor: pointer;
    text-transform: uppercase;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
    font-family: trade-gothic-next, sans-serif;
}

.cta-button:hover {
    background: #e55a2b;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 107, 53, 0.4);
}

.cta-button:active {
    transform: translateY(0);
}

.hero-controls {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    display: flex;
    align-items: center;
    gap: 20px;
}

.hero-prev,
.hero-next {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    color: #ffffff;
    font-size: 28px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: trade-gothic-next, sans-serif;
}

.hero-prev:hover,
.hero-next:hover {
    background: rgba(255, 255, 255, 0.3);
    border-color: rgba(255, 255, 255, 0.5);
}

.hero-dots {
    display: flex;
    gap: 10px;
}

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

.hero-dot.active {
    background: #ffffff;
    width: 30px;
    border-radius: 6px;
}

/* Features Section */
.features-section {
    position: relative;
    background: #2a2a2a;
    padding: 80px 0;
    color: #ffffff;
    overflow: hidden;
}

.features-gradient-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 300px;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.6) 0%, rgba(26, 26, 26, 0.8) 30%, rgba(42, 42, 42, 1) 100%);
    pointer-events: none;
    z-index: 1;
}

.features-section .container {
    position: relative;
    z-index: 2;
}

.features-slider {
    position: relative;
    overflow: hidden;
}

.features-slides {
    display: flex;
    gap: 30px;
    transition: transform 0.5s ease;
}

.feature-card {
    flex: 0 0 calc(25% - 22.5px);
    min-width: 0;
}

.features-controls {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 40px;
}

.features-prev,
.features-next {
    width: 45px;
    height: 45px;
    background: #ffffff;
    border: 1px solid #e0e0e0;
    border-radius: 50%;
    color: #333333;
    font-size: 24px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: trade-gothic-next, sans-serif;
}

.features-prev:hover:not(:disabled),
.features-next:hover:not(:disabled) {
    background: #ff6b35;
    border-color: #ff6b35;
    color: #ffffff;
}

.features-prev:disabled,
.features-next:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    pointer-events: none;
}

.feature-card {
    background: #1a1a1a;
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.4s ease;
    cursor: pointer;
    display: flex;
    flex-direction: column;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
    background: #252525;
}

.feature-card-image {
    flex: 1;
    min-height: 250px;
    position: relative;
    overflow: hidden;
}

.feature-image-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #333 0%, #1a1a1a 100%);
    background-image: 
        url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 400 300"><rect fill="%23333" width="400" height="300"/><g opacity="0.3"><rect fill="%23444" x="50" y="50" width="80" height="60" rx="4"/><rect fill="%23444" x="150" y="70" width="60" height="40" rx="4"/><rect fill="%23444" x="230" y="60" width="70" height="50" rx="4"/><rect fill="%23444" x="50" y="150" width="100" height="70" rx="4"/><rect fill="%23444" x="170" y="160" width="90" height="60" rx="4"/><rect fill="%23444" x="280" y="150" width="80" height="65" rx="4"/></g></svg>');
    background-size: cover;
    background-position: center;
    transition: transform 0.4s ease;
}

.feature-card:hover .feature-image-placeholder {
    transform: scale(1.1);
}

.feature-card-text {
    padding: 20px 30px 30px;
    font-size: 14px;
    line-height: 1.6;
    letter-spacing: 2px;
    font-family: trade-gothic-next, sans-serif;
    text-transform: uppercase;
    font-weight: 300;
}

.feature-card-text strong {
    font-weight: 900;
    text-decoration: underline;
}

/* Products Section */
.products-section {
    background: #f8f8f8;
    padding: 100px 0;
    color: #000000;
}

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

.products-title {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 20px;
    letter-spacing: 1px;
    font-family: 'trade-gothic-next-bold', trade-gothic-next, sans-serif;
}

.products-description {
    font-size: 18px;
    font-weight: 300;
    line-height: 1.6;
    max-width: 800px;
    margin: 0 auto;
    font-family: trade-gothic-next, sans-serif;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-bottom: 60px;
}

.product-card {
    background: #ffffff;
    border-radius: 12px;
    padding: 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.product-card:hover {
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    transform: translateY(-5px);
}

.product-image {
    width: 100%;
    height: 300px;
    background: #f0f0f0;
    position: relative;
    overflow: hidden;
}

.product-image-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #e0e0e0 0%, #f5f5f5 100%);
    background-image: 
        url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 400 300"><rect fill="%23e0e0e0" width="400" height="300"/><g opacity="0.4"><rect fill="%23999" x="50" y="80" width="300" height="140" rx="8"/><rect fill="%23999" x="100" y="40" width="200" height="50" rx="4"/><circle fill="%23999" cx="120" cy="220" r="25"/><circle fill="%23999" cx="280" cy="220" r="25"/><rect fill="%23999" x="200" y="100" width="80" height="60" rx="4"/></g></svg>');
    background-size: cover;
    background-position: center;
}

.product-name {
    padding: 25px 25px 15px;
    font-size: 20px;
    font-weight: 700;
    letter-spacing: 0.5px;
    font-family: trade-gothic-next, sans-serif;
    margin: 0;
}

.product-specs {
    padding: 0 25px 20px;
    flex: 1;
}

.spec-item {
    display: flex;
    justify-content: space-between;
    padding: 8px 0;
    font-size: 14px;
    font-family: trade-gothic-next, sans-serif;
}

.spec-label {
    font-weight: 600;
    color: #666;
    letter-spacing: 0.5px;
}

.spec-value {
    font-weight: 400;
    color: #000;
}

.product-price {
    padding: 20px 25px 25px;
    font-size: 28px;
    font-weight: 700;
    font-family: trade-gothic-next, sans-serif;
    border-top: 1px solid #f0f0f0;
}

.products-cta {
    text-align: center;
}

.view-all-button {
    background: #000000;
    color: #ffffff;
    border: none;
    padding: 16px 40px;
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 1px;
    border-radius: 8px;
    cursor: pointer;
    text-transform: uppercase;
    transition: all 0.3s ease;
    font-family: trade-gothic-next, sans-serif;
}

.view-all-button:hover {
    background: #333333;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

/* Megasite Solutions Section */
.megasite-section {
    background: #ffffff;
    padding: 100px 0;
}

.megasite-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.megasite-text {
    padding-right: 40px;
}

.megasite-title {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 30px;
    letter-spacing: 1px;
    color: #000000;
    font-family: 'trade-gothic-next-bold', trade-gothic-next, sans-serif;
}

.megasite-description {
    font-size: 16px;
    font-weight: 300;
    line-height: 1.8;
    color: #333333;
    margin-bottom: 40px;
    font-family: trade-gothic-next, sans-serif;
}

.megasite-highlight {
    background: #fff4e6;
    padding: 30px;
    border-radius: 8px;
    margin-bottom: 40px;
    border-left: 4px solid #ff6b35;
}

.highlight-title {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 15px;
    color: #000000;
    font-family: trade-gothic-next, sans-serif;
}

.highlight-text {
    font-size: 15px;
    font-weight: 300;
    line-height: 1.7;
    color: #333333;
    font-family: trade-gothic-next, sans-serif;
}

.megasite-facilities {
    margin-bottom: 40px;
}

.facilities-title {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 20px;
    color: #000000;
    font-family: trade-gothic-next, sans-serif;
    letter-spacing: 0.5px;
}

.facilities-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.facilities-list li {
    font-size: 15px;
    font-weight: 300;
    line-height: 2;
    color: #333333;
    padding-left: 25px;
    position: relative;
    font-family: trade-gothic-next, sans-serif;
}

.facilities-list li::before {
    content: "→";
    position: absolute;
    left: 0;
    color: #ff6b35;
    font-weight: 600;
}

.megasite-cta {
    background: #ff6b35;
    color: #ffffff;
    border: none;
    padding: 18px 45px;
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 1.5px;
    border-radius: 8px;
    cursor: pointer;
    text-transform: uppercase;
    transition: all 0.3s ease;
    font-family: trade-gothic-next, sans-serif;
}

.megasite-cta:hover {
    background: #e55a2b;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 107, 53, 0.4);
}

.megasite-media {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    height: 100%;
    display: flex;
    align-items: stretch;
}

.video-container {
    position: relative;
    width: 100%;
    height: 100%;
    min-height: 500px;
    overflow: hidden;
    background: #1a1a1a;
    border-radius: 12px;
}

.megasite-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Reviews Section */
.reviews-section {
    background: #ffffff;
    padding: 100px 0;
}

.reviews-header {
    text-align: center;
    margin-bottom: 50px;
}

.reviews-title {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-bottom: 12px;
    font-family: trade-gothic-next, sans-serif;
}

.reviews-line {
    width: 80px;
    height: 1px;
    background: #ff6b35;
    opacity: 0.3;
}

.reviews-text {
    font-size: 48px;
    font-weight: 300;
    letter-spacing: 0.5px;
    color: #000000;
    font-family: trade-gothic-next, sans-serif;
}

.reviews-subtitle {
    font-size: 16px;
    font-weight: 300;
    color: #666666;
    font-family: trade-gothic-next, sans-serif;
    letter-spacing: 0.3px;
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

.review-card {
    background: #f0f0f0;
    border-radius: 10px;
    padding: 24px;
    transition: all 0.3s ease;
}

.review-card:hover {
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transform: translateY(-3px);
}

.review-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
}

.reviewer-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 18px;
    font-weight: 400;
    position: relative;
    font-family: trade-gothic-next, sans-serif;
    flex-shrink: 0;
}

.reviewer-avatar span {
    font-size: 16px;
    font-weight: 400;
}

.google-badge {
    position: absolute;
    bottom: -2px;
    right: -2px;
    width: 18px;
    height: 18px;
    background: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 10px;
    font-weight: 700;
    color: #4285F4;
    border: 2px solid #ffffff;
    font-family: 'Product Sans', Arial, sans-serif;
}

.reviewer-info {
    flex: 1;
}

.reviewer-name {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 15px;
    font-weight: 400;
    color: #000000;
    margin-bottom: 4px;
    font-family: trade-gothic-next, sans-serif;
    letter-spacing: 0.2px;
}

.verified-badge {
    color: #4285F4;
    font-size: 14px;
    font-weight: 400;
}

.review-time {
    font-size: 12px;
    font-weight: 300;
    color: #666666;
    font-family: trade-gothic-next, sans-serif;
    letter-spacing: 0.1px;
}

.review-stars {
    display: flex;
    gap: 2px;
    margin-bottom: 12px;
}

.review-stars .star {
    color: #FFB400;
    font-size: 18px;
    line-height: 1;
    transition: opacity 0.3s ease;
}

.review-stars .star:not(.active) {
    opacity: 0.3;
}

.review-text {
    font-size: 14px;
    line-height: 1.5;
    color: #333333;
    margin-bottom: 8px;
    font-family: trade-gothic-next, sans-serif;
    font-weight: 300;
    letter-spacing: 0.1px;
}

.read-more-link {
    font-size: 14px;
    color: #4285F4;
    text-decoration: none;
    font-weight: 400;
    transition: color 0.3s ease;
    font-family: trade-gothic-next, sans-serif;
    letter-spacing: 0.1px;
}

.read-more-link:hover {
    color: #357ae8;
    text-decoration: underline;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Design */
@media (max-width: 1200px) {
    .navigation-link-bar {
        gap: 0;
    }
    
    .navigation-link-bar li a {
        padding: 8px 12px;
        font-size: 13px;
    }
    
    .feature-card {
        flex: 0 0 calc(50% - 15px);
    }
    
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
    
    .products-title {
        font-size: 40px;
    }
    
    .reviews-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
    
    .reviews-title {
        gap: 18px;
    }
    
    .reviews-line {
        width: 60px;
    }
    
    .reviews-text {
        font-size: 40px;
    }
}

@media (max-width: 968px) {
    .burger-menu {
        display: flex;
    }
    
    .header-content {
        flex-wrap: nowrap;
        justify-content: space-between;
    }
    
    .logo {
        flex: 1;
        margin-left: 15px;
    }
    
    .nav-overlay {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background: rgba(0, 0, 0, 0.5);
        opacity: 0;
        visibility: hidden;
        transition: opacity 0.3s ease, visibility 0.3s ease;
        z-index: 999;
    }
    
    .nav-overlay.active {
        opacity: 1;
        visibility: visible;
    }
    
    .nav-links {
        position: fixed;
        top: 0;
        left: 0;
        width: 280px;
        height: 100vh;
        background: rgba(0, 0, 0, 0.95);
        backdrop-filter: blur(20px);
        flex-direction: column;
        justify-content: flex-start;
        align-items: flex-start;
        padding: 80px 30px 30px;
        gap: 0;
        transform: translateX(-100%);
        transition: transform 0.3s ease;
        z-index: 1000;
        overflow-y: auto;
    }
    
    .nav-links.active {
        transform: translateX(0);
    }
    
    .navigation-link-bar {
        flex-direction: column;
        width: 100%;
        gap: 0;
        align-items: stretch;
    }
    
    .navigation-link-bar li a {
        width: 100%;
        padding: 15px 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        font-size: 16px;
    }
    
    .navigation-link-bar li.current::after,
    .navigation-link-bar li:has(a.active)::after {
        display: none;
    }
    
    .nav-link {
        width: 100%;
        padding: 15px 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        font-size: 16px;
    }
    
    .hero-title {
        font-size: 48px;
    }
    
    .header-actions {
        gap: 10px;
        margin-left: auto;
    }
    
    .search-box {
        display: none;
    }
    
    .phone-box {
        display: block;
        font-size: 12px;
        padding: 6px 12px;
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 36px;
        letter-spacing: 2px;
    }
    
    .hero-subtitle {
        font-size: 16px;
    }
    
    .cta-button {
        padding: 15px 35px;
        font-size: 14px;
    }
    
    .search-box {
        min-width: 120px;
    }
    
    .navigation-link-bar {
        gap: 0;
    }
    
    .navigation-link-bar li a {
        padding: 8px 10px;
        font-size: 12px;
    }
    
    .features-section {
        padding: 60px 0;
    }
    
    .feature-card {
        flex: 0 0 calc(50% - 15px);
    }
    
    .feature-card-image {
        min-height: 200px;
    }
    
    .products-section {
        padding: 60px 0;
    }
    
    .products-title {
        font-size: 32px;
    }
    
    .products-description {
        font-size: 16px;
    }
    
    .products-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .product-image {
        height: 250px;
    }
    
    .megasite-section {
        padding: 60px 0;
    }
    
    .megasite-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .megasite-text {
        padding-right: 0;
    }
    
    .megasite-title {
        font-size: 32px;
    }
    
    .megasite-description {
        font-size: 15px;
    }
    
    .megasite-highlight {
        padding: 25px;
    }
    
    .reviews-section {
        padding: 60px 0;
    }
    
    .reviews-title {
        gap: 15px;
        margin-bottom: 10px;
    }
    
    .reviews-line {
        width: 50px;
    }
    
    .reviews-text {
        font-size: 36px;
    }
    
    .reviews-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .cta-section {
        min-height: 450px;
    }
    
    .cta-title {
        gap: 18px;
        margin-bottom: 18px;
    }
    
    .cta-line {
        width: 60px;
    }
    
    .cta-text {
        font-size: 40px;
    }
    
    .cta-description {
        font-size: 18px;
        margin-bottom: 35px;
    }
    
    .partners-section {
        padding: 50px 0;
    }
    
    .partners-title {
        gap: 15px;
        margin-bottom: 40px;
    }
    
    .partners-line {
        width: 50px;
    }
    
    .partners-line {
        width: 60px;
    }
    
    .partners-text {
        font-size: 40px;
    }
    
    .partners-track {
        gap: 40px;
    }
    
    .partner-logo {
        width: 150px;
        height: 80px;
    }
    
    .partner-image {
        max-height: 60px;
    }
    
    .footer-content {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .logo-image {
        height: 35px;
    }
    
    .hero-title {
        font-size: 28px;
        letter-spacing: 1px;
    }
    
    .features-section {
        padding: 40px 0;
    }
    
    .feature-card-text {
        padding: 15px 20px 20px;
        font-size: 12px;
    }
    
    .feature-card {
        flex: 0 0 100%;
    }
    
    .feature-card-image {
        min-height: 180px;
    }
    
    .products-section {
        padding: 40px 0;
    }
    
    .products-title {
        font-size: 24px;
        margin-bottom: 15px;
    }
    
    .products-description {
        font-size: 14px;
        margin-bottom: 40px;
    }
    
    .products-grid {
        margin-bottom: 40px;
    }
    
    .product-name {
        font-size: 18px;
        padding: 20px 20px 12px;
    }
    
    .product-specs {
        padding: 0 20px 15px;
    }
    
    .spec-item {
        font-size: 12px;
        padding: 6px 0;
    }
    
    .product-price {
        font-size: 24px;
        padding: 15px 20px 20px;
    }
    
    .view-all-button {
        padding: 14px 30px;
        font-size: 14px;
    }
    
    .megasite-section {
        padding: 40px 0;
    }
    
    .megasite-title {
        font-size: 24px;
        margin-bottom: 20px;
    }
    
    .megasite-description {
        font-size: 14px;
        margin-bottom: 30px;
    }
    
    .megasite-highlight {
        padding: 20px;
        margin-bottom: 30px;
    }
    
    .highlight-title {
        font-size: 18px;
        margin-bottom: 12px;
    }
    
    .highlight-text {
        font-size: 14px;
    }
    
    .facilities-title {
        font-size: 16px;
        margin-bottom: 15px;
    }
    
    .facilities-list li {
        font-size: 14px;
    }
    
    .megasite-cta {
        padding: 15px 35px;
        font-size: 14px;
        width: 100%;
    }
    
    .video-container {
        min-height: 300px;
    }
    
    .reviews-section {
        padding: 40px 0;
    }
    
    .reviews-title {
        gap: 10px;
        margin-bottom: 10px;
    }
    
    .reviews-line {
        width: 30px;
    }
    
    .reviews-text {
        font-size: 28px;
    }
    
    .reviews-subtitle {
        font-size: 16px;
    }
    
    .reviews-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .review-card {
        padding: 20px;
    }
    
    .reviewer-avatar {
        width: 45px;
        height: 45px;
    }
    
    .reviewer-name {
        font-size: 15px;
    }
    
    .cta-section {
        min-height: 400px;
    }
    
    .cta-title {
        gap: 15px;
        margin-bottom: 15px;
    }
    
    .cta-line {
        width: 50px;
    }
    
    .cta-text {
        font-size: 32px;
    }
    
    .cta-description {
        font-size: 16px;
        margin-bottom: 30px;
    }
    
    .cta-contact-button {
        padding: 14px 35px;
        font-size: 14px;
    }
    
    .cta-title {
        gap: 10px;
        margin-bottom: 15px;
    }
    
    .cta-line {
        width: 30px;
    }
    
    .cta-text {
        font-size: 28px;
    }
    
    .partners-section {
        padding: 40px 0;
    }
    
    .partners-title {
        gap: 10px;
        margin-bottom: 30px;
    }
    
    .partners-line {
        width: 30px;
    }
    
    .partners-text {
        font-size: 28px;
    }
    
    .partners-track {
        gap: 25px;
    }
    
    .partner-logo {
        width: 100px;
        height: 60px;
        padding: 8px 15px;
    }
    
    .partner-image {
        max-height: 45px;
    }
    
    .footer-content {
        flex-direction: column;
        gap: 12px;
        text-align: center;
    }
    
    .footer-copyright,
    .footer-link {
        font-size: 12px;
    }
}

/* CTA Section */
.cta-section {
    position: relative;
    width: 100%;
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.cta-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 120%;
    background: linear-gradient(135deg, #2a2a2a 0%, #1a1a1a 100%);
    background-image: url('../images/new-design/footerimg.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    z-index: 1;
    will-change: transform;
}

.cta-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    z-index: 2;
}

.cta-content {
    position: relative;
    z-index: 3;
    text-align: center;
    padding: 60px 20px;
    max-width: 700px;
}

.cta-title {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-bottom: 20px;
    font-family: trade-gothic-next, sans-serif;
}

.cta-line {
    width: 80px;
    height: 1px;
    background: #ffffff;
    opacity: 0.3;
}

.cta-text {
    font-size: 56px;
    font-weight: 300;
    color: #ffffff;
    letter-spacing: 1px;
    font-family: trade-gothic-next, sans-serif;
}

.cta-description {
    font-size: 20px;
    font-weight: 300;
    color: #ffffff;
    margin-bottom: 40px;
    line-height: 1.6;
    letter-spacing: 0.5px;
    font-family: trade-gothic-next, sans-serif;
}

.cta-contact-button {
    background: transparent;
    color: #ffffff;
    border: 2px solid #ffffff;
    padding: 16px 45px;
    font-size: 16px;
    font-weight: 400;
    letter-spacing: 1px;
    border-radius: 8px;
    cursor: pointer;
    text-transform: uppercase;
    transition: all 0.3s ease;
    font-family: trade-gothic-next, sans-serif;
}

.cta-contact-button:hover {
    background: #ffffff;
    color: #000000;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 255, 255, 0.3);
}

/* Partners Section */
.partners-section {
    background: #f8f8f8;
    padding: 80px 0;
}

.partners-title {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-bottom: 12px;
    font-family: trade-gothic-next, sans-serif;
}

.partners-line {
    width: 80px;
    height: 1px;
    background: #ff6b35;
    opacity: 0.3;
}

.partners-text {
    font-size: 48px;
    font-weight: 300;
    letter-spacing: 0.5px;
    color: #000000;
    font-family: trade-gothic-next, sans-serif;
}

.partners-slider {
    overflow: hidden;
    position: relative;
    width: 100%;
    padding: 40px 0;
}

.partners-track {
    display: flex;
    align-items: center;
    gap: 60px;
    animation: scrollPartners 30s linear infinite;
    will-change: transform;
}

.partner-logo {
    flex: 0 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 180px;
    height: 100px;
    padding: 15px 30px;
    background: #ffffff;
    border-radius: 8px;
    transition: transform 0.3s ease;
}

.partner-logo:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.partner-image {
    max-width: 100%;
    max-height: 70px;
    width: auto;
    height: auto;
    object-fit: contain;
    filter: grayscale(100%);
    opacity: 0.7;
    transition: all 0.3s ease;
}

.partner-logo:hover .partner-image {
    filter: grayscale(0%);
    opacity: 1;
}

@keyframes scrollPartners {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

/* Footer */
.footer {
    background: #1a1a1a;
    padding: 30px 0;
    color: #ffffff;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-family: 'Inter', sans-serif;
}

.footer-copyright {
    font-size: 14px;
    font-weight: 300;
    color: #ffffff;
    margin: 0;
    letter-spacing: 0.3px;
    font-family: 'Inter', sans-serif;
}

.footer-links {
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-link {
    font-size: 14px;
    font-weight: 300;
    color: #ffffff;
    text-decoration: none;
    transition: color 0.3s ease;
    letter-spacing: 0.3px;
    font-family: 'Inter', sans-serif;
}

.footer-link:hover {
    color: #ff6b35;
}

.footer-divider {
    font-size: 14px;
    color: #666666;
}

/* Inventory Page Styles */
/* Buy New Hero Section */
.buy-new-hero {
    position: relative;
    width: 100%;
    height: 450px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 0;
    background-image: 
        linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.5)),
        url('../images/new-design/header.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.buy-new-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.buy-new-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    z-index: 2;
}

.buy-new-content {
    position: relative;
    z-index: 3;
    text-align: center;
    padding: 80px 20px 0;
    max-width: 900px;
}

.buy-new-subtitle {
    font-size: 16px;
    color: #ff6b35;
    margin-bottom: 12px;
    font-weight: 400;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-family: trade-gothic-next, sans-serif;
}

.buy-new-title {
    font-size: 56px;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 30px;
    letter-spacing: 2px;
    line-height: 1.1;
    text-transform: uppercase;
    font-family: 'trade-gothic-next-bold', trade-gothic-next, sans-serif;
}

.buy-new-button {
    background: #ff6b35;
    color: #ffffff;
    border: none;
    padding: 18px 45px;
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 1.5px;
    border-radius: 8px;
    cursor: pointer;
    text-transform: uppercase;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
    font-family: trade-gothic-next, sans-serif;
}

.buy-new-button:hover {
    background: #e55a2b;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 107, 53, 0.4);
}

.buy-new-button:active {
    transform: translateY(0);
}

.buy-new-search-box {
    display: flex;
    align-items: center;
    gap: 15px;
    position: relative;
    max-width: 700px;
    margin: 0 auto;
}

.buy-new-search-box .search-icon {
    position: absolute;
    left: 20px;
    font-size: 20px;
    color: #666;
    z-index: 1;
}

.buy-new-search-input {
    flex: 1;
    padding: 18px 20px 18px 50px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 8px;
    font-size: 16px;
    font-family: trade-gothic-next, sans-serif;
    transition: border-color 0.3s ease, background-color 0.3s ease, box-shadow 0.3s ease;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
}

.buy-new-search-input:focus {
    outline: none;
    border-color: #ff6b35;
    background: #ffffff;
    box-shadow: 0 0 0 3px rgba(255, 107, 53, 0.1);
}

.buy-new-search-input::placeholder {
    color: #999;
    opacity: 1;
}

.buy-new-search-input:hover:not(:focus) {
    border-color: rgba(255, 255, 255, 0.5);
}

.buy-new-search-button {
    padding: 18px 40px;
    background: #ff6b35;
    color: #ffffff;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    font-family: trade-gothic-next, sans-serif;
    cursor: pointer;
    transition: background 0.3s ease;
    white-space: nowrap;
}

.buy-new-search-button:hover {
    background: #e55a2b;
}

.inventory-page {
    min-height: 100vh;
    background: #f5f5f5;
    padding-bottom: 60px;
}

.inventory-search-section {
    background: #ffffff;
    padding: 40px;
    margin-bottom: 30px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.inventory-search-box {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 25px;
    position: relative;
}

.search-icon {
    position: absolute;
    left: 20px;
    font-size: 20px;
    color: #666;
    z-index: 1;
}

.inventory-search-input {
    flex: 1;
    padding: 15px 20px 15px 50px;
    border: 2px solid #e0e0e0;
    border-radius: 6px;
    font-size: 16px;
    font-family: trade-gothic-next, sans-serif;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
    background: #ffffff;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
}

.inventory-search-input:focus {
    outline: none;
    border-color: #ff6b35;
    box-shadow: 0 0 0 3px rgba(255, 107, 53, 0.1);
}

.inventory-search-input::placeholder {
    color: #999;
    opacity: 1;
}

.inventory-search-input:hover:not(:focus) {
    border-color: #d0d0d0;
}

.search-button {
    padding: 15px 35px;
    background: #ff6b35;
    color: #ffffff;
    border: none;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    font-family: trade-gothic-next, sans-serif;
    cursor: pointer;
    transition: background 0.3s ease;
    white-space: nowrap;
}

.search-button:hover {
    background: #e55a2b;
}

.inventory-filters {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.filter-select {
    padding: 12px 20px;
    padding-right: 45px;
    border: 2px solid #e0e0e0;
    border-radius: 6px;
    font-size: 14px;
    font-family: trade-gothic-next, sans-serif;
    background: #ffffff;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%23333' d='M6 8L0 0h12z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 15px center;
    background-size: 12px;
    color: #333;
    cursor: pointer;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
    min-width: 180px;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
}

.filter-select:focus {
    outline: none;
    border-color: #ff6b35;
    box-shadow: 0 0 0 3px rgba(255, 107, 53, 0.1);
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%23ff6b35' d='M6 8L0 0h12z'/%3E%3C/svg%3E");
}

.filter-select:hover {
    border-color: #d0d0d0;
}

.inventory-results-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 40px;
    margin-bottom: 25px;
    flex-wrap: wrap;
    gap: 15px;
}

.results-count {
    font-size: 16px;
    color: #666;
    font-family: trade-gothic-next, sans-serif;
    font-weight: 300;
}

.sort-select {
    padding: 10px 15px;
    padding-right: 40px;
    border: 2px solid #e0e0e0;
    border-radius: 6px;
    font-size: 14px;
    font-family: trade-gothic-next, sans-serif;
    background: #ffffff;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%23333' d='M6 8L0 0h12z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 12px center;
    background-size: 12px;
    color: #333;
    cursor: pointer;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
}

.sort-select:focus {
    outline: none;
    border-color: #ff6b35;
    box-shadow: 0 0 0 3px rgba(255, 107, 53, 0.1);
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%23ff6b35' d='M6 8L0 0h12z'/%3E%3C/svg%3E");
}

.sort-select:hover {
    border-color: #d0d0d0;
}

/* Categories Section */
.inventory-categories-section {
    margin-bottom: 60px;
    padding: 40px 0;
}

.categories-section-title {
    font-size: 32px;
    font-weight: 600;
    color: #333;
    margin-bottom: 30px;
    text-align: center;
    font-family: 'trade-gothic-next-bold', trade-gothic-next, sans-serif;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.categories-slider-wrapper {
    position: relative;
    padding: 10px 0 20px 0;
    overflow: hidden;
}

.categories-slider {
    display: flex;
    gap: 25px;
    transition: transform 0.5s ease;
    will-change: transform;
}

.categories-slider .category-slide {
    flex: 0 0 calc(25% - 18.75px);
    min-width: 0;
    padding: 5px 0;
}

.categories-controls {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 40px;
}

.categories-prev,
.categories-next {
    width: 45px;
    height: 45px;
    background: #ffffff;
    border: 1px solid #e0e0e0;
    border-radius: 50%;
    color: #333333;
    font-size: 24px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: trade-gothic-next, sans-serif;
    padding: 0;
    margin: 0;
}

.categories-prev:hover:not(:disabled),
.categories-next:hover:not(:disabled) {
    background: #ff6b35;
    border-color: #ff6b35;
    color: #ffffff;
}

.categories-prev:disabled,
.categories-next:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    pointer-events: none;
}

.categories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 25px;
    margin-bottom: 20px;
}

.category-card {
    background: #ffffff;
    border-radius: 12px;
    overflow: hidden;
    text-decoration: none;
    display: block;
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
    border: 2px solid transparent;
    height: 100%;
}

.category-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    border-color: #ff6b35;
}

.category-card.active {
    border-color: #ff6b35;
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.2);
}

.category-image {
    width: 100%;
    height: 180px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    transition: transform 0.3s ease;
    overflow: hidden;
}

.category-card:hover .category-image {
    transform: scale(1.02);
}

.category-image-placeholder {
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.1) 0%, rgba(255, 107, 53, 0.05) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.category-content {
    padding: 20px;
    text-align: center;
}

.category-name {
    font-size: 18px;
    font-weight: 600;
    color: #333;
    margin: 0 0 8px 0;
    font-family: 'trade-gothic-next-bold', trade-gothic-next, sans-serif;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.category-count {
    font-size: 14px;
    color: #666;
    margin: 0;
    font-family: trade-gothic-next, sans-serif;
}

@media (max-width: 1200px) {
    .categories-slider .category-slide {
        flex: 0 0 calc(33.333% - 16.67px);
    }
}

@media (max-width: 768px) {
    .categories-slider .category-slide {
        flex: 0 0 calc(50% - 12.5px);
    }
    
    .categories-grid {
        grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
        gap: 15px;
    }
    
    .category-image {
        height: 140px;
    }
    
    .categories-section-title {
        font-size: 24px;
    }
}

@media (max-width: 480px) {
    .categories-slider .category-slide {
        flex: 0 0 calc(100% - 0px);
    }
    
    .categories-slider {
        gap: 15px;
    }
}

.inventory-item-wrapper {
    /* Wrapper для элементов inventory в grid */
}

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

.inventory-card {
    background: #ffffff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    display: block;
    cursor: pointer;
    position: relative;
    border: 1px solid transparent;
}

.inventory-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #ff6b35, #ff8c5a);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1;
}

.inventory-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15), 0 0 0 1px rgba(255, 107, 53, 0.1);
    border-color: rgba(255, 107, 53, 0.2);
}

.inventory-card:hover::before {
    transform: scaleX(1);
}

.inventory-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    padding: 6px 12px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    z-index: 10;
    font-family: trade-gothic-next, sans-serif;
}

.inventory-badge-sold {
    background: #dc3545;
    color: #ffffff;
}

.inventory-badge-booked {
    background: #ffc107;
    color: #000000;
}

.inventory-badge-sale {
    background: #28a745;
    color: #ffffff;
}

.inventory-badge-featured {
    background: #ff6b35;
    color: #ffffff;
}

.inventory-card-image {
    width: 100%;
    height: 220px;
    background: #f0f0f0;
    position: relative;
    overflow: hidden;
}

.inventory-card:hover .inventory-card-image {
    background: #e8e8e8;
}

.inventory-image-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #e0e0e0 0%, #d0d0d0 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.inventory-image-placeholder::before {
    content: "🚜";
    font-size: 60px;
    opacity: 0.3;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.inventory-card:hover .inventory-image-placeholder {
    transform: scale(1.1);
    background: linear-gradient(135deg, #d0d0d0 0%, #c0c0c0 100%);
}

.inventory-card:hover .inventory-image-placeholder::before {
    transform: scale(1.2);
    opacity: 0.4;
}

.inventory-image-placeholder::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, transparent 0%, rgba(255, 107, 53, 0.1) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.inventory-card:hover .inventory-image-placeholder::after {
    opacity: 1;
}

.inventory-card-content {
    padding: 25px;
}

.inventory-card-title {
    font-size: 20px;
    font-weight: 600;
    color: #333;
    margin-bottom: 15px;
    font-family: 'trade-gothic-next-bold', trade-gothic-next, sans-serif;
    line-height: 1.4;
    transition: color 0.3s ease;
}

.inventory-card:hover .inventory-card-title {
    color: #ff6b35;
}

.inventory-card-specs {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    margin-bottom: 15px;
}

.spec-tag {
    padding: 6px 12px;
    background: #f5f5f5;
    color: #666;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 400;
    font-family: trade-gothic-next, sans-serif;
    transition: all 0.3s ease;
}

.inventory-card:hover .spec-tag {
    background: #fff4f0;
    color: #ff6b35;
    transform: translateY(-2px);
}

.inventory-card-price {
    font-size: 24px;
    font-weight: 700;
    color: #ff6b35;
    margin-bottom: 20px;
    font-family: trade-gothic-next, sans-serif;
    transition: all 0.3s ease;
    display: inline-block;
}

.inventory-card:hover .inventory-card-price {
    transform: scale(1.05);
    color: #e55a2b;
}

.inventory-card-button {
    width: 100%;
    padding: 12px;
    background: #ff6b35;
    color: #ffffff;
    border: none;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 600;
    font-family: trade-gothic-next, sans-serif;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    margin-bottom: 20px;
    pointer-events: none;
    position: relative;
    overflow: hidden;
}

.inventory-card-button::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    transform: translate(-50%, -50%);
    transition: width 0.6s ease, height 0.6s ease;
}

.inventory-card:hover .inventory-card-button {
    background: #e55a2b;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 107, 53, 0.4);
}

.inventory-card:hover .inventory-card-button::before {
    width: 300px;
    height: 300px;
}

.inventory-specifications {
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid #e0e0e0;
    transition: all 0.3s ease;
}

.inventory-card:hover .inventory-specifications {
    border-top-color: #ff6b35;
}

.specifications-title {
    font-size: 16px;
    font-weight: 600;
    color: #333;
    margin-bottom: 15px;
    font-family: trade-gothic-next, sans-serif;
}

.specifications-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.specification-item {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    font-size: 13px;
    font-family: trade-gothic-next, sans-serif;
}

.spec-label {
    color: #666;
    font-weight: 400;
    flex: 1;
    padding-right: 10px;
}

.spec-value {
    color: #333;
    font-weight: 500;
    flex-shrink: 0;
    text-align: right;
}


/* Pagination Styles */
.pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    margin-top: 40px;
    flex-wrap: wrap;
}

.pagination-button {
    padding: 10px 20px;
    background: #ffffff;
    color: #333;
    border: 2px solid #e0e0e0;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 500;
    font-family: trade-gothic-next, sans-serif;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.pagination-button:hover:not(:disabled) {
    background: #ff6b35;
    color: #ffffff;
    border-color: #ff6b35;
}

.pagination-button:disabled,
.pagination-button[disabled] {
    opacity: 0.5;
    cursor: not-allowed;
    pointer-events: none;
}

.pagination-pages {
    display: flex;
    gap: 8px;
    align-items: center;
}

.pagination-page {
    min-width: 40px;
    height: 40px;
    padding: 0 12px;
    background: #ffffff;
    color: #333;
    border: 2px solid #e0e0e0;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 500;
    font-family: trade-gothic-next, sans-serif;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
}

.pagination-page:hover {
    border-color: #ff6b35;
    color: #ff6b35;
    text-decoration: none;
}

.pagination-page.active {
    background: #ff6b35;
    color: #ffffff;
    border-color: #ff6b35;
}

.pagination-ellipsis {
    padding: 0 8px;
    color: #666;
    font-size: 14px;
    font-family: trade-gothic-next, sans-serif;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    user-select: none;
}

/* Inventory Page Responsive */
@media (max-width: 968px) {
    .inventory-search-section {
        padding: 25px;
    }
    
    .inventory-search-box {
        flex-direction: column;
        align-items: stretch;
    }
    
    .search-button {
        width: 100%;
    }
    
    .inventory-filters {
        flex-direction: column;
    }
    
    .filter-select {
        width: 100%;
    }
    
    .inventory-grid {
        grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
        gap: 20px;
    }
}

@media (max-width: 968px) {
    .buy-new-hero {
        height: 380px;
        margin-top: 0;
    }
    
    .buy-new-content {
        padding: 70px 20px 0;
    }
    
    .buy-new-title {
        font-size: 42px;
    }
    
    .buy-new-search-box {
        max-width: 600px;
    }
}

@media (max-width: 768px) {
    .buy-new-hero {
        height: 400px;
        margin-top: 0;
    }
    
    .buy-new-content {
        padding: 60px 20px 0;
    }
    
    .buy-new-subtitle {
        font-size: 14px;
        margin-bottom: 10px;
    }
    
    .buy-new-title {
        font-size: 32px;
        margin-bottom: 20px;
        letter-spacing: 1px;
    }
    
    .buy-new-search-box {
        flex-direction: column;
        align-items: stretch;
        max-width: 100%;
        gap: 12px;
    }
    
    .buy-new-search-input {
        padding: 15px 20px 15px 50px;
    }
    
    .buy-new-search-button {
        width: 100%;
        padding: 15px;
    }
    
    .inventory-page {
        padding-top: 0;
    }
    
    .inventory-results-info {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .inventory-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .pagination {
        gap: 5px;
    }
    
    .pagination-button {
        padding: 8px 15px;
        font-size: 13px;
    }
    
    .pagination-page {
        min-width: 35px;
        height: 35px;
        font-size: 13px;
    }
}

/* Contacts Page Styles */
.contacts-page {
    min-height: 100vh;
    background: #ffffff;
}

.contacts-hero {
    background: #1a1a1a;
    background-image: 
        linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)),
        url('../images/new-design/header.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 100px 0 60px;
    text-align: center;
    color: #ffffff;
    margin-top: 0;
}

.contacts-hero-title {
    font-size: 56px;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 15px;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-family: 'trade-gothic-next-bold', trade-gothic-next, sans-serif;
}

.contacts-hero-subtitle {
    font-size: 18px;
    color: #cccccc;
    font-weight: 300;
    letter-spacing: 1px;
    font-family: trade-gothic-next, sans-serif;
}

.contacts-map-section {
    width: 100%;
    height: 500px;
    position: relative;
    overflow: hidden;
}

.contacts-map-container {
    width: 100%;
    height: 100%;
    position: relative;
}

.contacts-map {
    width: 100%;
    height: 100%;
    border: none;
    display: block;
}

.map-marker-info {
    position: absolute;
    top: 30px;
    right: 30px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 25px;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
    max-width: 300px;
    z-index: 10;
}

.marker-info-content {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.marker-title {
    font-size: 18px;
    font-weight: 600;
    color: #333;
    margin: 0;
    font-family: trade-gothic-next, sans-serif;
}

.marker-address {
    font-size: 14px;
    color: #666;
    margin: 0;
    line-height: 1.6;
    font-family: trade-gothic-next, sans-serif;
}

.street-view-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #ff6b35;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    font-family: trade-gothic-next, sans-serif;
    transition: color 0.3s ease;
    margin-top: 5px;
}

.street-view-link:hover {
    color: #e55a2b;
}

.street-view-link span {
    font-size: 16px;
}

/* Street View Section */
.contacts-streetview-section {
    padding: 80px 0;
    background: #ffffff;
    position: relative;
}

.contacts-streetview-section .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.streetview-header {
    text-align: center;
    margin-bottom: 40px;
}

.streetview-title {
    font-size: 36px;
    font-weight: 600;
    color: #333;
    margin-bottom: 15px;
    letter-spacing: 1px;
    text-transform: uppercase;
    font-family: 'trade-gothic-next-bold', trade-gothic-next, sans-serif;
}

.streetview-subtitle {
    font-size: 18px;
    color: #666;
    font-weight: 300;
    letter-spacing: 0.5px;
    font-family: trade-gothic-next, sans-serif;
}

.streetview-container {
    width: 100%;
    height: 500px;
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
    transition: box-shadow 0.3s ease;
}

.streetview-container:hover {
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.18);
}

.streetview-iframe {
    width: 100%;
    height: 100%;
    border: none;
    display: block;
    border-radius: 12px;
}

/* Responsive для Street View */
@media (max-width: 768px) {
    .contacts-streetview-section {
        padding: 60px 0;
    }
    
    .streetview-title {
        font-size: 28px;
    }
    
    .streetview-subtitle {
        font-size: 16px;
    }
    
    .streetview-container {
        height: 400px;
        border-radius: 8px;
    }
    
    .streetview-header {
        margin-bottom: 30px;
    }
}

@media (max-width: 480px) {
    .streetview-container {
        height: 300px;
    }
    
    .streetview-title {
        font-size: 24px;
    }
}

.contacts-content-section {
    padding: 80px 0;
    background: #f5f5f5;
}

.contacts-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: start;
}

.contacts-section-title {
    font-size: 24px;
    font-weight: 600;
    color: #333;
    margin-bottom: 25px;
    font-family: 'trade-gothic-next-bold', trade-gothic-next, sans-serif;
}

.contacts-form-subtitle {
    font-size: 16px;
    color: #666;
    line-height: 1.6;
    margin-bottom: 30px;
    font-family: trade-gothic-next, sans-serif;
}

.contacts-info {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.contact-info-card,
.business-hours-card {
    background: #ffffff;
    padding: 35px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.contact-info-list {
    display: flex;
    flex-direction: column;
    gap: 0;
    margin-top: 10px;
}

.contact-info-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
    padding: 20px 0;
    border-bottom: 1px solid #f0f0f0;
    transition: padding 0.3s ease;
}

.contact-info-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.contact-info-item:first-child {
    padding-top: 0;
}

.contact-info-item:hover {
    padding-left: 5px;
}

.contact-icon {
    flex-shrink: 0;
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 107, 53, 0.08);
    border-radius: 12px;
    transition: all 0.3s ease;
    border: 2px solid rgba(255, 107, 53, 0.15);
}

.contact-icon svg {
    width: 24px;
    height: 24px;
    transition: transform 0.3s ease;
}

.contact-info-item:hover .contact-icon {
    background: rgba(255, 107, 53, 0.15);
    border-color: rgba(255, 107, 53, 0.3);
    transform: translateY(-2px);
}

.contact-info-item:hover .contact-icon svg {
    transform: scale(1.1);
}

.contact-info-content {
    flex: 1;
}

.contact-info-label {
    font-size: 12px;
    font-weight: 600;
    color: #999;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    font-family: trade-gothic-next, sans-serif;
}

.contact-info-value {
    font-size: 18px;
    font-weight: 500;
    color: #333;
    line-height: 1.4;
    font-family: trade-gothic-next, sans-serif;
    text-decoration: none;
    display: block;
    transition: color 0.3s ease;
    margin-bottom: 8px;
}

.contact-info-value:hover {
    color: #ff6b35;
}

.contact-info-detail {
    font-size: 14px;
    color: #888;
    line-height: 1.6;
    margin: 0;
    font-family: trade-gothic-next, sans-serif;
}

.business-hours-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.business-hours-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 15px;
    border-bottom: 1px solid #f0f0f0;
}

.business-hours-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.hours-day {
    font-size: 15px;
    color: #333;
    font-weight: 500;
    font-family: trade-gothic-next, sans-serif;
}

.hours-time {
    font-size: 15px;
    color: #666;
    font-family: trade-gothic-next, sans-serif;
}

.contacts-form-wrapper {
    background: #ffffff;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.contacts-form {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-label {
    font-size: 14px;
    font-weight: 500;
    color: #333;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-family: trade-gothic-next, sans-serif;
}

.form-label .required {
    color: #e74c3c;
    margin-left: 3px;
}

.form-input,
.form-textarea,
.form-input select {
    padding: 14px 18px;
    border: 2px solid #e0e0e0;
    border-radius: 6px;
    font-size: 16px;
    font-family: trade-gothic-next, sans-serif;
    color: #333;
    background: #ffffff;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
    width: 100%;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
}

.form-input:focus,
.form-textarea:focus,
.form-input select:focus {
    outline: none;
    border-color: #ff6b35;
    box-shadow: 0 0 0 3px rgba(255, 107, 53, 0.1);
}

.form-input::placeholder,
.form-textarea::placeholder {
    color: #999;
    opacity: 1;
}

.form-textarea {
    resize: vertical;
    min-height: 150px;
    font-family: trade-gothic-next, sans-serif;
}

/* Custom Select Styles */
.form-input[type="text"],
.form-input[type="email"],
.form-input[type="tel"],
.form-input[type="number"] {
    appearance: auto;
    -webkit-appearance: textfield;
    -moz-appearance: textfield;
}

/* Select element styling */
select.form-input {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%23333' d='M6 8L0 0h12z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 18px center;
    background-size: 12px;
    padding-right: 45px;
    cursor: pointer;
}

select.form-input:focus {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%23ff6b35' d='M6 8L0 0h12z'/%3E%3C/svg%3E");
}

select.form-input option {
    padding: 10px;
    background: #ffffff;
    color: #333;
}

select.form-input:hover {
    border-color: #d0d0d0;
}

/* Input disabled state */
.form-input:disabled,
.form-textarea:disabled {
    background: #f5f5f5;
    cursor: not-allowed;
    opacity: 0.6;
}

/* Input error state (for future use) */
.form-input.error,
.form-textarea.error {
    border-color: #e74c3c;
}

.form-input.error:focus,
.form-textarea.error:focus {
    border-color: #e74c3c;
    box-shadow: 0 0 0 3px rgba(231, 76, 60, 0.1);
}

.form-submit-button {
    padding: 16px 40px;
    background: #000000;
    color: #ffffff;
    border: none;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-family: trade-gothic-next, sans-serif;
    cursor: pointer;
    transition: background 0.3s ease, transform 0.2s ease;
    align-self: flex-start;
    margin-top: 10px;
}

.form-submit-button:hover {
    background: #333333;
    transform: translateY(-1px);
}

/* Contacts Page Responsive */
@media (max-width: 968px) {
    .contacts-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .map-marker-info {
        position: relative;
        top: auto;
        right: auto;
        margin: 20px;
        max-width: 100%;
    }
    
    .contacts-map-section {
        height: 400px;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .contacts-hero {
        padding: 80px 0 40px;
    }
    
    .contacts-hero-title {
        font-size: 36px;
    }
    
    .contacts-hero-subtitle {
        font-size: 16px;
    }
    
    .contacts-content-section {
        padding: 60px 0;
    }
    
    .contacts-section-title {
        font-size: 22px;
    }
    
    .contacts-form-wrapper,
    .contact-info-card,
    .business-hours-card {
        padding: 25px 20px;
    }
    
    .contacts-map-section {
        height: 350px;
    }
    
    .contact-info-item {
        gap: 15px;
    }
    
    .contact-icon {
        width: 48px;
        height: 48px;
    }
    
    .contact-icon svg {
        width: 20px;
        height: 20px;
    }
    
    .contact-info-list {
        gap: 25px;
    }
    
    .business-hours-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 5px;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
}

/* Guarantee Page Styles */
.guarantee-page {
    min-height: 100vh;
    background: #ffffff;
}

.guarantee-hero {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    background-image: 
        linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)),
        url('../images/new-design/header.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 120px 0 80px;
    text-align: center;
    color: #ffffff;
    margin-top: 0;
}

.guarantee-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 107, 53, 0.15);
    border: 2px solid rgba(255, 107, 53, 0.3);
    padding: 12px 24px;
    border-radius: 50px;
    margin-bottom: 30px;
    font-size: 16px;
    font-weight: 600;
    color: #ff6b35;
    font-family: trade-gothic-next, sans-serif;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.guarantee-badge svg {
    width: 24px;
    height: 24px;
}

.guarantee-hero-title {
    font-size: 48px;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 30px;
    letter-spacing: 1px;
    font-family: 'trade-gothic-next-bold', trade-gothic-next, sans-serif;
}

.guarantee-hero-subtitle {
    font-size: 18px;
    color: #e0e0e0;
    line-height: 1.8;
    max-width: 900px;
    margin: 0 auto;
    font-weight: 300;
    letter-spacing: 0.3px;
    font-family: trade-gothic-next, sans-serif;
}

.guarantee-content {
    padding: 80px 0;
    background: #f8f8f8;
}

.guarantee-section {
    /* background: #ffffff;
    padding: 50px;
    border-radius: 12px;
    margin-bottom: 40px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05); */
}

.guarantee-section-accent {
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.05) 0%, rgba(255, 107, 53, 0.02) 100%);
    border: 1px solid rgba(255, 107, 53, 0.1);
}

.guarantee-section-header {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 30px;
}

.guarantee-icon {
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 107, 53, 0.1);
    border-radius: 12px;
    flex-shrink: 0;
}

.guarantee-icon svg {
    width: 32px;
    height: 32px;
}

.guarantee-section-title {
    font-size: 32px;
    font-weight: 600;
    color: #333;
    margin: 0;
    font-family: 'trade-gothic-next-bold', trade-gothic-next, sans-serif;
}

.guarantee-section-text {
    font-size: 18px;
    color: #666;
    line-height: 1.8;
    margin: 0;
    font-family: trade-gothic-next, sans-serif;
}

.guarantee-steps {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.guarantee-step {
    display: flex;
    gap: 25px;
    align-items: flex-start;
}

.step-number {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #ff6b35;
    color: #ffffff;
    border-radius: 50%;
    font-size: 20px;
    font-weight: 700;
    font-family: trade-gothic-next, sans-serif;
    flex-shrink: 0;
}

.step-content {
    flex: 1;
}

.step-title {
    font-size: 20px;
    font-weight: 600;
    color: #333;
    margin-bottom: 12px;
    font-family: 'trade-gothic-next-bold', trade-gothic-next, sans-serif;
}

.step-text {
    font-size: 16px;
    color: #666;
    line-height: 1.7;
    margin: 0;
    font-family: trade-gothic-next, sans-serif;
}

.guarantee-cta {
    text-align: center;
    background: #1a1a1a;
    padding: 60px 40px;
    border-radius: 12px;
    color: #ffffff;
}

.guarantee-cta-title {
    font-size: 36px;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 20px;
    font-family: 'trade-gothic-next-bold', trade-gothic-next, sans-serif;
}

.guarantee-cta-text {
    font-size: 20px;
    color: #e0e0e0;
    line-height: 1.7;
    margin-bottom: 15px;
    font-family: trade-gothic-next, sans-serif;
}

.guarantee-cta-subtext {
    font-size: 18px;
    color: #cccccc;
    line-height: 1.7;
    margin-bottom: 40px;
    font-family: trade-gothic-next, sans-serif;
}

.guarantee-cta-brand {
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.brand-name {
    font-size: 24px;
    font-weight: 700;
    color: #ff6b35;
    font-family: 'trade-gothic-next-bold', trade-gothic-next, sans-serif;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.brand-tagline {
    font-size: 16px;
    color: #cccccc;
    font-style: italic;
    font-family: trade-gothic-next, sans-serif;
}

/* Guarantee Page Responsive */
@media (max-width: 968px) {
    .guarantee-hero {
        padding: 100px 0 60px;
    }
    
    .guarantee-hero-title {
        font-size: 36px;
    }
    
    .guarantee-hero-subtitle {
        font-size: 16px;
    }
    
    .guarantee-section {
        padding: 40px 30px;
    }
    
    .guarantee-steps {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .guarantee-section-title {
        font-size: 28px;
    }
}

@media (max-width: 768px) {
    .guarantee-hero {
        padding: 80px 0 50px;
    }
    
    .guarantee-badge {
        font-size: 14px;
        padding: 10px 20px;
    }
    
    .guarantee-badge svg {
        width: 20px;
        height: 20px;
    }
    
    .guarantee-hero-title {
        font-size: 28px;
    }
    
    .guarantee-content {
        padding: 60px 0;
    }
    
    .guarantee-section {
        padding: 30px 20px;
    }
    
    .guarantee-section-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }
    
    .guarantee-icon {
        width: 56px;
        height: 56px;
    }
    
    .guarantee-icon svg {
        width: 28px;
        height: 28px;
    }
    
    .guarantee-section-title {
        font-size: 24px;
    }
    
    .guarantee-section-text {
        font-size: 16px;
    }
    
    .guarantee-step {
        flex-direction: column;
        gap: 15px;
    }
    
    .step-number {
        width: 40px;
        height: 40px;
        font-size: 18px;
    }
    
    .step-title {
        font-size: 18px;
    }
    
    .step-text {
        font-size: 15px;
    }
    
    .guarantee-cta {
        padding: 40px 25px;
    }
    
    .guarantee-cta-title {
        font-size: 28px;
    }
    
    .guarantee-cta-text {
        font-size: 18px;
    }
    
    .guarantee-cta-subtext {
        font-size: 16px;
    }
    
    .brand-name {
        font-size: 20px;
    }
}

/* Page Template Styles */
.page-content {
    min-height: 100vh;
    background: #ffffff;
}

.page-hero {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    background-image: 
        linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)),
        url('../images/new-design/header.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 120px 0 60px;
    text-align: center;
    color: #ffffff;
    margin-top: 0;
}

.page-title {
    font-size: 48px;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 20px;
    letter-spacing: 1px;
    font-family: 'trade-gothic-next-bold', trade-gothic-next, sans-serif;
    text-transform: uppercase;
}

.page-subtitle {
    font-size: 18px;
    color: #e0e0e0;
    line-height: 1.6;
    max-width: 700px;
    margin: 0 auto;
    font-weight: 300;
    letter-spacing: 0.3px;
    font-family: trade-gothic-next, sans-serif;
}

.page-main {
    padding: 60px 0;
    background: #f8f8f8;
}

.page-wrapper {
    max-width: 900px;
    margin: 0 auto;
}

.page-body {
    background: #ffffff;
    padding: 50px;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.page-intro {
    margin-bottom: 40px;
    padding-bottom: 30px;
    border-bottom: 2px solid #f0f0f0;
}

.intro-text {
    font-size: 20px;
    color: #333;
    line-height: 1.8;
    font-weight: 300;
    font-family: trade-gothic-next, sans-serif;
}

.page-body h2 {
    font-size: 32px;
    font-weight: 600;
    color: #333;
    margin-top: 50px;
    margin-bottom: 20px;
    font-family: 'trade-gothic-next-bold', trade-gothic-next, sans-serif;
}

.page-body h2:first-of-type {
    margin-top: 0;
}

.page-body h3 {
    font-size: 24px;
    font-weight: 600;
    color: #333;
    margin-top: 40px;
    margin-bottom: 15px;
    font-family: 'trade-gothic-next-bold', trade-gothic-next, sans-serif;
}

.page-body h4 {
    font-size: 20px;
    font-weight: 600;
    color: #333;
    margin-top: 30px;
    margin-bottom: 12px;
    font-family: trade-gothic-next, sans-serif;
}

.page-body p {
    font-size: 16px;
    color: #666;
    line-height: 1.8;
    margin-bottom: 20px;
    font-family: trade-gothic-next, sans-serif;
}

.content-list {
    margin: 25px 0;
    padding-left: 0;
    list-style: none;
}

.content-list li {
    font-size: 16px;
    color: #666;
    line-height: 1.8;
    padding: 12px 0 12px 30px;
    position: relative;
    font-family: trade-gothic-next, sans-serif;
    border-bottom: 1px solid #f0f0f0;
}

.content-list li:last-child {
    border-bottom: none;
}

.content-list ul li::before,
.content-list li::before {
    content: "•";
    position: absolute;
    left: 10px;
    color: #ff6b35;
    font-weight: bold;
    font-size: 20px;
}

.content-list ol {
    counter-reset: item;
    list-style: none;
}

.content-list ol li {
    counter-increment: item;
}

.content-list ol li::before {
    content: counter(item) ".";
    position: absolute;
    left: 10px;
    color: #ff6b35;
    font-weight: 600;
    font-size: 16px;
}

.content-box {
    background: rgba(255, 107, 53, 0.08);
    border-left: 4px solid #ff6b35;
    padding: 25px 30px;
    margin: 30px 0;
    border-radius: 6px;
}

.content-box h4 {
    color: #ff6b35;
    margin-top: 0;
    margin-bottom: 12px;
}

.content-box p {
    margin-bottom: 0;
    color: #555;
}

/* Shipping Page Styles */
.shipping-page {
    background: #ffffff;
}

.shipping-hero {
    position: relative;
    padding: 120px 0 60px;
    text-align: center;
    color: #ffffff;
    margin-top: 0;
    overflow: hidden;
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.shipping-hero-parallax {
    position: absolute;
    top: -20%;
    left: 0;
    width: 100%;
    height: 140%;
    background-image: url('../images/d.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 1;
    transform: translate3d(0, 0, 0);
    will-change: transform;
    transition: transform 0.1s ease-out;
}

.shipping-hero-parallax::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.6));
    z-index: 1;
}

.shipping-hero .container {
    position: relative;
    z-index: 2;
}

.shipping-hero-title {
    font-size: 48px;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 20px;
    letter-spacing: 1px;
    font-family: 'trade-gothic-next-bold', trade-gothic-next, sans-serif;
    text-transform: uppercase;
}

.shipping-hero-subtitle {
    font-size: 18px;
    color: #e0e0e0;
    line-height: 1.6;
    max-width: 700px;
    margin: 0 auto;
    font-weight: 300;
    letter-spacing: 0.3px;
    font-family: trade-gothic-next, sans-serif;
}

.shipping-content {
    padding: 80px 0;
    background: #f8f8f8;
}

.shipping-intro {
    max-width: 900px;
    margin: 0 auto 60px;
    text-align: center;
}

.shipping-intro-text {
    font-size: 20px;
    color: #333;
    line-height: 1.8;
    font-weight: 300;
    font-family: trade-gothic-next, sans-serif;
}

.shipping-section-title {
    font-size: 36px;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 40px;
    text-align: center;
    font-family: 'trade-gothic-next-bold', trade-gothic-next, sans-serif;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.shipping-features {
    max-width: 1200px;
    margin: 0 auto 80px;
}

.shipping-features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.shipping-feature-card {
    background: #ffffff;
    border: 1px solid #e8e8e8;
    border-radius: 8px;
    padding: 40px 30px;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.shipping-feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: #ff6b35;
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.shipping-feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    border-color: #ff6b35;
}

.shipping-feature-card:hover::before {
    transform: scaleX(1);
}

.shipping-feature-icon {
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.1) 0%, rgba(255, 107, 53, 0.05) 100%);
    border-radius: 50%;
    margin: 0 auto 25px;
    overflow: hidden;
}

.shipping-feature-icon i {
    font-size: 32px;
    color: #ff6b35;
    display: block;
    line-height: 1;
}

.shipping-feature-title {
    font-size: 20px;
    font-weight: 600;
    color: #1a1a1a;
    margin: 0 0 15px;
    font-family: 'trade-gothic-next-bold', trade-gothic-next, sans-serif;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.shipping-feature-text {
    font-size: 15px;
    color: #666;
    line-height: 1.6;
    margin: 0;
    font-family: trade-gothic-next, sans-serif;
}

.shipping-process {
    max-width: 900px;
    margin: 0 auto 80px;
}

.shipping-steps {
    display: flex;
    flex-direction: column;
    gap: 30px;
    margin-top: 40px;
}

.shipping-step {
    display: flex;
    gap: 25px;
    align-items: flex-start;
    background: #ffffff;
    padding: 30px;
    border-radius: 8px;
    border-left: 4px solid #ff6b35;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.shipping-step-number {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #ff6b35;
    color: #ffffff;
    border-radius: 50%;
    font-size: 22px;
    font-weight: 700;
    font-family: 'trade-gothic-next-bold', trade-gothic-next, sans-serif;
    flex-shrink: 0;
}

.shipping-step-content {
    flex: 1;
}

.shipping-step-title {
    font-size: 22px;
    font-weight: 600;
    color: #333;
    margin: 0 0 12px;
    font-family: 'trade-gothic-next-bold', trade-gothic-next, sans-serif;
}

.shipping-step-text {
    font-size: 16px;
    color: #666;
    line-height: 1.7;
    margin: 0;
    font-family: trade-gothic-next, sans-serif;
}

.shipping-info-section {
    max-width: 1200px;
    margin: 0 auto 80px;
}

.shipping-info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.shipping-info-card {
    background: #ffffff;
    border: 1px solid #e8e8e8;
    border-radius: 8px;
    padding: 35px 30px;
    transition: all 0.3s ease;
}

.shipping-info-card:hover {
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
    border-color: #ff6b35;
}

.shipping-info-title {
    font-size: 20px;
    font-weight: 600;
    color: #1a1a1a;
    margin: 0 0 15px;
    font-family: 'trade-gothic-next-bold', trade-gothic-next, sans-serif;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.shipping-info-text {
    font-size: 15px;
    color: #666;
    line-height: 1.7;
    margin: 0;
    font-family: trade-gothic-next, sans-serif;
}

.shipping-form-section {
    max-width: 900px;
    margin: 0 auto 80px;
}

.shipping-form-wrapper {
    background: #1a1a1a;
    border-radius: 12px;
    padding: 60px 50px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
}

.shipping-form-header {
    text-align: center;
    margin-bottom: 50px;
}

.shipping-form-icon {
    margin-bottom: 20px;
}

.shipping-form-icon svg {
    display: block;
    margin: 0 auto;
}

.shipping-form-title {
    font-size: 32px;
    font-weight: 600;
    color: #ffffff;
    margin: 0 0 15px;
    font-family: 'trade-gothic-next-bold', trade-gothic-next, sans-serif;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.shipping-form-subtitle {
    font-size: 16px;
    color: #cccccc;
    line-height: 1.6;
    margin: 0;
    font-family: trade-gothic-next, sans-serif;
}

.shipping-request-form {
    width: 100%;
}

.shipping-request-form .form-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-bottom: 20px;
}

.shipping-request-form .form-group {
    margin-bottom: 20px;
}

.shipping-request-form label {
    display: block;
    color: #ffffff;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    margin-bottom: 10px;
    letter-spacing: 0.5px;
    font-family: trade-gothic-next, sans-serif;
}

.shipping-request-form input[type="text"],
.shipping-request-form input[type="email"],
.shipping-request-form input[type="tel"],
.shipping-request-form textarea {
    width: 100%;
    background: #333333;
    border: 1px solid #444444;
    border-radius: 6px;
    color: #ffffff;
    font-size: 16px;
    padding: 15px 20px;
    outline: none;
    transition: all 0.3s ease;
    font-family: trade-gothic-next, sans-serif;
    box-sizing: border-box;
}

.shipping-request-form input:focus,
.shipping-request-form textarea:focus {
    border-color: #ff6b35;
    background: #3a3a3a;
}

.shipping-request-form input::placeholder,
.shipping-request-form textarea::placeholder {
    color: #999;
    opacity: 1;
}

.shipping-request-form textarea {
    resize: vertical;
    min-height: 100px;
}

.shipping-submit-btn {
    width: 100%;
    background: #ff6b35;
    color: #ffffff;
    border: none;
    padding: 18px 45px;
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 1.5px;
    border-radius: 8px;
    cursor: pointer;
    text-transform: uppercase;
    transition: all 0.3s ease;
    font-family: trade-gothic-next, sans-serif;
    margin-top: 10px;
}

.shipping-submit-btn:hover:not(:disabled) {
    background: #e55a2b;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 107, 53, 0.4);
}

.shipping-submit-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

.shipping-message {
    margin-top: 20px;
    padding: 15px 20px;
    border-radius: 6px;
    text-align: center;
    font-size: 14px;
    font-family: trade-gothic-next, sans-serif;
}

.shipping-success-message {
    background: #155724;
    color: #ffffff;
}

.shipping-error-message {
    background: #721c24;
    color: #ffffff;
}

.shipping-additional {
    max-width: 900px;
    margin: 0 auto;
}

.shipping-additional-content {
    background: #ffffff;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.shipping-additional-content h2,
.shipping-additional-content h3,
.shipping-additional-content h4 {
    font-family: 'trade-gothic-next-bold', trade-gothic-next, sans-serif;
    color: #1a1a1a;
    margin-top: 30px;
    margin-bottom: 15px;
}

.shipping-additional-content h2 {
    font-size: 28px;
}

.shipping-additional-content h3 {
    font-size: 24px;
}

.shipping-additional-content p {
    font-size: 16px;
    color: #666;
    line-height: 1.8;
    margin-bottom: 20px;
    font-family: trade-gothic-next, sans-serif;
}

/* Shipping Page Responsive */
@media (max-width: 968px) {
    .shipping-hero {
        padding: 100px 0 50px;
    }
    
    .shipping-hero-title {
        font-size: 36px;
    }
    
    .shipping-content {
        padding: 60px 0;
    }
    
    .shipping-features-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .shipping-info-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .shipping-form-wrapper {
        padding: 40px 30px;
    }
    
    .shipping-request-form .form-row {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .shipping-hero {
        padding: 80px 0 40px;
    }
    
    .shipping-hero-title {
        font-size: 28px;
    }
    
    .shipping-hero-subtitle {
        font-size: 16px;
    }
    
    .shipping-content {
        padding: 40px 0;
    }
    
    .shipping-section-title {
        font-size: 28px;
        margin-bottom: 30px;
    }
    
    .shipping-step {
        flex-direction: column;
        gap: 20px;
        padding: 25px 20px;
    }
    
    .shipping-form-wrapper {
        padding: 30px 20px;
    }
    
    .shipping-form-title {
        font-size: 24px;
    }
}

/* Page Template Responsive */
@media (max-width: 968px) {
    .page-hero {
        padding: 100px 0 50px;
    }
    
    .page-title {
        font-size: 36px;
    }
    
    .page-body {
        padding: 40px 30px;
    }
}

@media (max-width: 768px) {
    .page-hero {
        padding: 80px 0 40px;
    }
    
    .page-title {
        font-size: 28px;
    }
    
    .page-subtitle {
        font-size: 16px;
    }
    
    .page-main {
        padding: 40px 0;
    }
    
    .page-body {
        padding: 30px 20px;
    }
    
    .page-body h2 {
        font-size: 26px;
        margin-top: 35px;
    }
    
    .page-body h3 {
        font-size: 22px;
        margin-top: 30px;
    }
    
    .intro-text {
        font-size: 18px;
    }
}

/* Single Product Page Styles */
.single-product-hero {
    position: relative;
    width: 100%;
    background-image: 
        linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.6)),
        url('../images/new-design/header.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 140px 0 80px;
    text-align: center;
    color: #ffffff;
    margin-top: 0;
}

.single-product-title {
    font-size: 56px;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 15px;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-family: 'trade-gothic-next-bold', trade-gothic-next, sans-serif;
}

.single-product-subtitle {
    font-size: 18px;
    font-weight: 300;
    color: #ffffff;
    opacity: 0.9;
    letter-spacing: 0.5px;
    font-family: 'Inter', sans-serif;
}

.single-product-content {
    padding: 60px 0;
    background: #ffffff;
}

.single-product-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    margin-bottom: 60px;
}

.single-product-image-section {
    position: sticky;
    top: 100px;
    height: fit-content;
}

.product-main-image {
    width: 100%;
    border-radius: 8px;
    overflow: hidden;
    background: #f5f5f5;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    margin-bottom: 20px;
    cursor: pointer;
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.product-main-image:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.15);
}

.product-main-image::after {
    content: '🔍 Click to view full size';
    position: absolute;
    bottom: 15px;
    right: 15px;
    background: rgba(0, 0, 0, 0.7);
    color: #ffffff;
    padding: 8px 12px;
    border-radius: 4px;
    font-size: 12px;
    font-family: 'Inter', sans-serif;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.product-main-image:hover::after {
    opacity: 1;
}

.product-main-image img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.product-gallery-thumbnails {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 10px;
    margin-top: 15px;
}

.thumbnail-item {
    width: 100%;
    aspect-ratio: 4/3;
    border-radius: 6px;
    overflow: hidden;
    cursor: pointer;
    border: 2px solid transparent;
    transition: all 0.3s ease;
    background: #f5f5f5;
}

.thumbnail-item:hover {
    border-color: #ff6b35;
    transform: scale(1.05);
}

.thumbnail-item.active {
    border-color: #ff6b35;
    box-shadow: 0 0 0 2px rgba(255, 107, 53, 0.2);
}

.thumbnail-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.single-product-details-section {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.product-price-section {
    padding-bottom: 30px;
    border-bottom: 2px solid #f0f0f0;
}

.product-price-label {
    font-size: 14px;
    font-weight: 400;
    color: #666666;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-family: 'Inter', sans-serif;
    display: block;
    margin-bottom: 10px;
}

.product-price {
    font-size: 48px;
    font-weight: 700;
    color: #ff6b35;
    margin: 0;
    font-family: 'trade-gothic-next-bold', trade-gothic-next, sans-serif;
}

.product-specifications {
    padding: 30px 0;
    border-bottom: 2px solid #f0f0f0;
}

.specifications-title {
    font-size: 24px;
    font-weight: 600;
    color: #333;
    margin-bottom: 25px;
    font-family: 'trade-gothic-next-bold', trade-gothic-next, sans-serif;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.specifications-list {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.specification-item {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: 12px 0;
    border-bottom: 1px solid #f5f5f5;
}

.spec-label {
    font-weight: 500;
    color: #666666;
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    flex: 0 0 40%;
}

.spec-value {
    font-weight: 600;
    color: #333333;
    font-family: 'trade-gothic-next-bold', trade-gothic-next, sans-serif;
    font-size: 15px;
    text-align: right;
    flex: 1;
}

.product-contact-form {
    background: #f9f9f9;
    padding: 35px;
    border-radius: 8px;
    border: 1px solid #e0e0e0;
}

.form-title {
    font-size: 24px;
    font-weight: 600;
    color: #333;
    margin-bottom: 25px;
    font-family: 'trade-gothic-next-bold', trade-gothic-next, sans-serif;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.buy-now-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-label {
    font-size: 14px;
    font-weight: 500;
    color: #333;
    font-family: 'Inter', sans-serif;
    letter-spacing: 0.3px;
}

.form-input {
    padding: 14px 18px;
    font-size: 15px;
    font-family: 'Inter', sans-serif;
    border: 2px solid #e0e0e0;
    border-radius: 4px;
    background: #ffffff;
    color: #333;
    transition: all 0.3s ease;
    width: 100%;
    box-sizing: border-box;
}

.form-input:focus {
    outline: none;
    border-color: #ff6b35;
    box-shadow: 0 0 0 3px rgba(255, 107, 53, 0.1);
}

.form-input::placeholder {
    color: #999999;
}

.buy-now-button {
    background: #ff6b35;
    color: #ffffff;
    border: none;
    padding: 18px 35px;
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'trade-gothic-next-bold', trade-gothic-next, sans-serif;
    border-radius: 4px;
    margin-top: 10px;
}

.buy-now-button:hover {
    background: #e55a2b;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 107, 53, 0.4);
}

.buy-now-button:active {
    transform: translateY(0);
}

.product-description-section {
    margin-top: 60px;
    padding-top: 60px;
    border-top: 2px solid #f0f0f0;
}

.description-title {
    font-size: 32px;
    font-weight: 600;
    color: #333;
    margin-bottom: 30px;
    font-family: 'trade-gothic-next-bold', trade-gothic-next, sans-serif;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.description-content {
    font-size: 16px;
    line-height: 1.8;
    color: #555555;
    font-family: 'Inter', sans-serif;
}

.description-content p {
    margin-bottom: 20px;
}

.description-content h4 {
    font-size: 22px;
    font-weight: 600;
    color: #333;
    margin-top: 30px;
    margin-bottom: 15px;
    font-family: 'trade-gothic-next-bold', trade-gothic-next, sans-serif;
}

.product-details-section {
    margin-top: 60px;
    padding-top: 60px;
    border-top: 2px solid #f0f0f0;
}

.details-title {
    font-size: 32px;
    font-weight: 600;
    color: #333;
    margin-bottom: 30px;
    font-family: 'trade-gothic-next-bold', trade-gothic-next, sans-serif;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.details-content {
    font-size: 16px;
    line-height: 1.8;
    color: #555555;
    font-family: 'Inter', sans-serif;
}

.details-content p {
    margin-bottom: 20px;
}

.details-content h2 {
    font-size: 28px;
    font-weight: 600;
    color: #333;
    margin-top: 30px;
    margin-bottom: 20px;
    font-family: 'trade-gothic-next-bold', trade-gothic-next, sans-serif;
}

.details-content h3 {
    font-size: 24px;
    font-weight: 600;
    color: #333;
    margin-top: 25px;
    margin-bottom: 15px;
    font-family: 'trade-gothic-next-bold', trade-gothic-next, sans-serif;
}

.details-content h4 {
    font-size: 22px;
    font-weight: 600;
    color: #333;
    margin-top: 20px;
    margin-bottom: 15px;
    font-family: 'trade-gothic-next-bold', trade-gothic-next, sans-serif;
}

.details-content ul,
.details-content ol {
    margin: 20px 0;
    padding-left: 30px;
}

.details-content li {
    margin-bottom: 10px;
    line-height: 1.6;
}

.details-content strong {
    font-weight: 600;
    color: #333;
}

.feature-list {
    list-style: none;
    padding: 0;
    margin: 20px 0;
}

.feature-list li {
    padding: 12px 0;
    padding-left: 30px;
    position: relative;
    font-size: 16px;
    line-height: 1.7;
    color: #555555;
    font-family: 'Inter', sans-serif;
}

.feature-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #ff6b35;
    font-weight: 700;
    font-size: 18px;
}

/* Single Product Page Responsive */
@media (max-width: 1024px) {
    .single-product-grid {
        gap: 40px;
    }
    
    .single-product-title {
        font-size: 48px;
    }
    
    .product-price {
        font-size: 42px;
    }
}

@media (max-width: 768px) {
    .single-product-hero {
        padding: 120px 0 60px;
    }
    
    .single-product-title {
        font-size: 36px;
        letter-spacing: 1.5px;
    }
    
    .single-product-subtitle {
        font-size: 16px;
    }
    
    .single-product-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .single-product-image-section {
        position: static;
    }
    
    .single-product-details-section {
        gap: 30px;
    }
    
    .product-price {
        font-size: 36px;
    }
    
    .specifications-title,
    .form-title {
        font-size: 22px;
    }
    
    .description-title {
        font-size: 28px;
    }
    
    .product-contact-form {
        padding: 25px;
    }
}

@media (max-width: 480px) {
    .single-product-hero {
        padding: 100px 0 50px;
    }
    
    .single-product-title {
        font-size: 28px;
        letter-spacing: 1px;
    }
    
    .single-product-content {
        padding: 40px 0;
    }
    
    .single-product-grid {
        gap: 30px;
    }
    
    .product-price {
        font-size: 32px;
    }
    
    .specification-item {
        flex-direction: column;
        gap: 5px;
    }
    
    .spec-value {
        text-align: left;
    }
    
    .product-contact-form {
        padding: 20px;
    }
    
    .description-content {
        font-size: 15px;
    }
}

/* Lightbox Styles */
.lightbox {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    z-index: 9999;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.lightbox.active {
    display: flex;
    opacity: 1;
}

.lightbox-image {
    max-width: 90%;
    max-height: 90%;
    object-fit: contain;
    border-radius: 4px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
}

.lightbox-close {
    position: absolute;
    top: 30px;
    right: 40px;
    font-size: 48px;
    color: #ffffff;
    cursor: pointer;
    line-height: 1;
    transition: color 0.3s ease, transform 0.3s ease;
    z-index: 10000;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
}

.lightbox-close:hover {
    color: #ff6b35;
    transform: rotate(90deg);
    background: rgba(255, 255, 255, 0.2);
}

.lightbox-prev,
.lightbox-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    font-size: 36px;
    color: #ffffff;
    cursor: pointer;
    padding: 20px 25px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    transition: all 0.3s ease;
    user-select: none;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.lightbox-prev {
    left: 40px;
}

.lightbox-next {
    right: 40px;
}

.lightbox-prev:hover,
.lightbox-next:hover {
    background: rgba(255, 107, 53, 0.8);
    transform: translateY(-50%) scale(1.1);
}

.lightbox-counter {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    color: #ffffff;
    font-size: 16px;
    font-family: 'Inter', sans-serif;
    background: rgba(0, 0, 0, 0.6);
    padding: 10px 20px;
    border-radius: 20px;
    letter-spacing: 1px;
}

/* Lightbox Responsive */
@media (max-width: 768px) {
    .product-gallery-thumbnails {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .lightbox-close {
        top: 20px;
        right: 20px;
        font-size: 36px;
        width: 40px;
        height: 40px;
    }
    
    .lightbox-prev,
    .lightbox-next {
        font-size: 28px;
        width: 50px;
        height: 50px;
        padding: 15px 20px;
    }
    
    .lightbox-prev {
        left: 15px;
    }
    
    .lightbox-next {
        right: 15px;
    }
    
    .lightbox-image {
        max-width: 95%;
        max-height: 85%;
    }
    
    .lightbox-counter {
        bottom: 20px;
        font-size: 14px;
        padding: 8px 16px;
    }
}

@media (max-width: 480px) {
    .product-gallery-thumbnails {
        grid-template-columns: repeat(2, 1fr);
        gap: 8px;
    }
    
    .product-main-image::after {
        font-size: 10px;
        padding: 6px 10px;
        bottom: 10px;
        right: 10px;
    }
}

/* Statistics Section */
.statistics-section {
    background: #ffffff;
    padding: 100px 0;
    position: relative;
}

.statistics-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.statistics-card {
    background: #ffffff;
    border: 1px solid #e8e8e8;
    border-radius: 8px;
    padding: 50px 35px;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.statistics-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: #ff6b35;
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.statistics-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.1);
    border-color: #ff6b35;
}

.statistics-card:hover::before {
    transform: scaleX(1);
}

.statistics-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.statistics-icon-wrapper {
    margin-bottom: 10px;
    width: 100%;
    display: flex;
    justify-content: center;
}

.statistics-icon {
    width: 90px;
    height: 90px;
    min-width: 90px;
    min-height: 90px;
    display: flex !important;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.1) 0%, rgba(255, 107, 53, 0.05) 100%);
    border-radius: 50%;
    margin: 0 auto 20px;
    position: relative;
    overflow: hidden;
    padding: 15px;
    box-sizing: border-box;
}

.statistics-icon::after {
    content: '';
    position: absolute;
    inset: -2px;
    border-radius: 50%;
    border: 2px solid rgba(255, 107, 53, 0.2);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: -1;
}

.statistics-card:hover .statistics-icon::after {
    opacity: 1;
}

.statistics-icon i {
    font-size: 32px !important;
    color: #ff6b35 !important;
    display: block !important;
    line-height: 1 !important;
    transition: all 0.3s ease;
}

.statistics-card:hover .statistics-icon {
    color: #e55a2b;
}

.statistics-card:hover .statistics-icon i {
    color: #e55a2b !important;
    transform: scale(1.1);
}

.statistics-number {
    font-size: 56px;
    font-weight: 700;
    color: #ff6b35;
    line-height: 1;
    font-family: 'trade-gothic-next-bold', trade-gothic-next, sans-serif;
    margin: 0;
    letter-spacing: -1px;
}

.statistics-title {
    font-size: 20px;
    font-weight: 600;
    color: #1a1a1a;
    margin: 0;
    line-height: 1.4;
    font-family: 'trade-gothic-next-bold', trade-gothic-next, sans-serif;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.statistics-description {
    font-size: 15px;
    color: #666666;
    line-height: 1.6;
    margin: 0;
    font-family: trade-gothic-next, sans-serif;
    max-width: 240px;
}

/* Statistics Section Responsive */
@media (max-width: 968px) {
    .statistics-section {
        padding: 60px 0;
    }
    
    .statistics-grid {
        grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
        gap: 25px;
    }
    
    .statistics-card {
        padding: 40px 30px;
    }
    
    .statistics-icon {
        width: 80px;
        height: 80px;
        min-width: 80px;
        min-height: 80px;
        margin-bottom: 15px;
        overflow: hidden;
        padding: 12px;
    }
    
    .statistics-icon i {
        font-size: 28px !important;
    }
    
    .statistics-number {
        font-size: 48px;
    }
    
    .statistics-title {
        font-size: 18px;
    }
    
    .statistics-description {
        font-size: 14px;
        max-width: 100%;
    }
}

@media (max-width: 768px) {
    .statistics-section {
        padding: 50px 0;
    }
    
    .statistics-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .statistics-card {
        padding: 35px 25px;
    }
    
    .statistics-icon {
        width: 75px;
        height: 75px;
        min-width: 75px;
        min-height: 75px;
        margin-bottom: 15px;
        overflow: hidden;
        padding: 10px;
    }
    
    .statistics-icon i {
        font-size: 26px !important;
    }
    
    .statistics-number {
        font-size: 42px;
    }
    
    .statistics-title {
        font-size: 17px;
    }
    
    .statistics-description {
        font-size: 14px;
        max-width: 100%;
    }
}

/* Call Request Modal Styles */
.call-request-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.call-request-modal.active {
    opacity: 1;
    visibility: visible;
}

.modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(4px);
}

.modal-content {
    position: relative;
    background: #ffffff;
    border-radius: 12px;
    padding: 40px;
    max-width: 500px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    transform: scale(0.9);
    transition: transform 0.3s ease;
    z-index: 10001;
}

.call-request-modal.active .modal-content {
    transform: scale(1);
}

.modal-close {
    position: absolute;
    top: 15px;
    right: 15px;
    background: transparent;
    border: none;
    font-size: 32px;
    color: #666;
    cursor: pointer;
    line-height: 1;
    padding: 0;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: color 0.3s ease;
    z-index: 10002;
}

.modal-close:hover {
    color: #ff6b35;
}

.modal-title {
    font-size: 28px;
    font-weight: 600;
    color: #1a1a1a;
    margin: 0 0 10px;
    font-family: 'trade-gothic-next-bold', trade-gothic-next, sans-serif;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.modal-subtitle {
    font-size: 15px;
    color: #666;
    margin: 0 0 30px;
    line-height: 1.6;
    font-family: trade-gothic-next, sans-serif;
}

.call-request-form {
    width: 100%;
}

.call-request-form .form-group {
    margin-bottom: 20px;
}

.call-request-form .form-label {
    display: block;
    font-size: 13px;
    font-weight: 600;
    color: #333;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 8px;
    font-family: trade-gothic-next, sans-serif;
}

.call-request-form .form-label .required {
    color: #e74c3c;
    margin-left: 3px;
}

.call-request-form .form-input {
    width: 100%;
    padding: 14px 18px;
    border: 2px solid #e0e0e0;
    border-radius: 6px;
    font-size: 16px;
    font-family: trade-gothic-next, sans-serif;
    color: #333;
    background: #ffffff;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
    box-sizing: border-box;
}

.call-request-form .form-input:focus {
    outline: none;
    border-color: #ff6b35;
    box-shadow: 0 0 0 3px rgba(255, 107, 53, 0.1);
}

.call-request-form .form-input::placeholder {
    color: #999;
    opacity: 1;
}

.call-request-form .form-submit-button {
    width: 100%;
    background: #ff6b35;
    color: #ffffff;
    border: none;
    padding: 16px 30px;
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 1.5px;
    border-radius: 8px;
    cursor: pointer;
    text-transform: uppercase;
    transition: all 0.3s ease;
    font-family: trade-gothic-next, sans-serif;
    margin-top: 10px;
}

.call-request-form .form-submit-button:hover:not(:disabled) {
    background: #e55a2b;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 107, 53, 0.4);
}

.call-request-form .form-submit-button:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

.form-message {
    margin-top: 20px;
    padding: 15px 20px;
    border-radius: 6px;
    text-align: center;
    font-size: 14px;
    font-family: trade-gothic-next, sans-serif;
}

.form-success {
    background: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.form-error {
    background: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

/* Modal Responsive */
@media (max-width: 768px) {
    .modal-content {
        padding: 30px 20px;
        width: 95%;
    }
    
    .modal-title {
        font-size: 24px;
    }
    
    .modal-subtitle {
        font-size: 14px;
    }
}








.shop-main{
    width: calc(100% - 40px);
    max-width: 1200px;
    display: block;
    margin: 0 auto;
    padding-left: 20px;
    padding-right: 20px;
}

.shop-main .inner-box{
background: #f5f5f5;
       border-radius: 5px;
    border: 1px solid #cbcbcb;
}

.shop-main .content-box{
    padding: 15px;
    min-height: 200px;
}

.shop-main .car-block-four{
margin-bottom: 30px;
}

.shop-main .shop-buy-now-btn:hover{
background: #f95b22;
    transform: scale(1.03);
}


.shop-main .large-container{
    padding-top: 40px;
}


.shop-main .inner-box .image img{
max-width:100%;
border-top-left-radius: 5px;
border-top-right-radius: 5px;
}

.shop-main .car-block-four .inner-box .content-box{
    margin: 0;
}

.shop-main figure{
    margin-bottom: 0px;
}

.shop-main .title{
    display: block !important;
    color: #000;
    text-align: left;
    border: none;
    font-size: 14px;
    font-weight: 600;
    margin-top: 20px;
}
.shop-main small {
    color: #FF6B35;
    text-align: left;
    border: none;
    font-size: 25px;
    font-weight: 600;
    margin-bottom: 0px;
}



.shop-main .shop-buy-now-btn {
    width: 100%;
    color: #000;
    background: #ff6b35;
    text-align: left;
    border-radius: 8px;
    border: none;
    font-size: 18px;
    color: #fff;
    font-weight: 600;
    margin-bottom: 0px;
    margin-top: auto;
    transition: all 0.5s 
ease;
overflow: hidden;
}

.shop-main .shop-buy-now-btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    transform: translate(-50%, -50%);
    transition: width 0.6s 
ease, height 0.6s 
ease;
}

.shop-main .shop-buy-now-btn:hover::before {
    width: 300px;
    height: 300px;
}

.shop-main .content-box{
    background: transparent;
}






.reviews_main {
  width: 100%;
  display: block;
  margin: 0 auto;
  max-width: 1406px;
  margin-top: 50px;
}
.reviews_blocks {
display: grid;
grid-template-columns: repeat(4, 1fr);
gap: 20px;
width: 100%;
}
.reviews_block {
width: 100%;
height: 100%;
}
.reviews_block_up {
position: relative;
border-top-left-radius: 15px;
border-top-right-radius: 15px;
}
.reviews_block_info_image {
width: 100%;
height: 300px;
object-fit: cover;
display: block;
border-top-left-radius: 15px;
border-top-right-radius: 15px;
}
.reviews_block_info_name {
margin: 0;
  font-size: 18px;
font-weight: 600;
color: #fff;
line-height: 110%;
}
.reviews_block_info {
position: absolute;
left: 20px;
bottom: 20px;
z-index: 1;
display: flex;
flex-direction: column;
align-items: flex-start;
margin: 0 auto;
gap: 5px;
}
.reviews_block_info_teg {
margin: 0;
     font-size: 16px;
font-weight: 500;
color: #fff;
line-height: 110%;
}
.reviews_block_info_stars {
display: flex;
align-items: center;
gap: 5px;
margin-top: 5px;
}
.reviews_block_info_stars svg{
width: 25px;
height: 25px;
}
.reviews_block_bottom {
background: #efefef;
border: 1px solid #E1E1E1;
border-bottom-left-radius: 15px;
border-bottom-right-radius: 15px;
}
.reviews_block_bottom_content {
padding: 15px;
}
.reviews_block_bottom_text {
margin: 0;
      font-size: 14px;
font-weight: 500;
color: #0c2756;
line-height: 110%;
}

.reviews_block_info_overlay{
border-top-left-radius: 15px;
border-top-right-radius: 15px;
width: 100%;
height: 100%;
position: absolute;
left: 0;
top: 0;
z-index: 1;
background: rgb(0, 0, 0, .6);
opacity: 1;
visibility: visible;
transition: opacity 0.5s ease, visibility 0.5s ease;
}
.reviews_block_play{
position: absolute;
width: 100px;
left: calc(50% - 50px);
top: calc(50% - 50px);
z-index: 3;
cursor: pointer;
transition: opacity 0.5s ease, visibility 0.5s ease, transform 0.3s ease;
opacity: 1;
visibility: visible;
}
.reviews_block_play:hover{
transform: translateY(-5px);
}
.reviews_block_info_overlay.hidden {
opacity: 0;
visibility: hidden;
pointer-events: none;
}
.reviews_block_play.hidden {
opacity: 0;
visibility: hidden;
pointer-events: none;
}
.reviews_block_up {
cursor: pointer;
}
.reviews_block_info_image {
cursor: pointer;
}


/* Стили для аудио секции */
.rewiews_audio {
width: 100%;
max-width: 1406px;
margin: 0 auto;
background: #efefef;
border-radius: 15px;
border: 1px solid #E1E1E1;
margin-top: 30px;
}
.rewiews_audio_blocks {
display: grid;
grid-template-columns: repeat(3, 1fr);
gap: 40px;
padding: 20px;
}
.rewiews_audio_block {
width: 100%;
}

.rewiews_audio_block_content {
display: flex;
gap: 20px;
align-items: flex-start;
}
.rewiews_audio_block_avatar {
position: relative;
width: 80px;
height: 80px;
flex-shrink: 0;
}
.rewiews_audio_block_avatar_img {
width: 100%;
height: 100%;
object-fit: cover;
border-radius: 50%;
}
.rewiews_audio_play {
position: absolute;
bottom: -10px;
right: -10px;
width: 40px;
height: 40px;
cursor: pointer;
z-index: 2;
border-radius: 50%;
background: #efefef;
padding: 1px;
box-sizing: border-box;
cursor: pointer;
transition: all .5s;
}
.rewiews_audio_play:hover{
transform: translateY(-5px);
}
.rewiews_audio_block_items {
flex: 1;
display: flex;
flex-direction: column;
gap: 10px;
}
.rewiews_audio_block_title {
margin: 0;
font-size: 18px;
font-weight: 600;
color: #0c2756;
}
.rewiews_audio_element {
display: none;
}
.rewiews_audio_equalizer {
display: flex;
align-items: flex-end;
gap: 4px;
height: 30px;
min-height: 30px;
width: 100%;
background: transparent;
visibility: visible;
opacity: 1;
}
.equalizer-bar {
flex: 1;
min-width: 3px;
background: #f8cc25;
border-radius: 2px;
height: 8px;
min-height: 8px;
transition: height 0.1s ease;
display: block;
}
.equalizer-bar.playing {
animation: equalizer-animation 0.8s ease-in-out infinite;
}
.equalizer-bar:nth-child(1) {
animation-delay: 0s;
}
.equalizer-bar:nth-child(2) {
animation-delay: 0.1s;
}
.equalizer-bar:nth-child(3) {
animation-delay: 0.2s;
}
.equalizer-bar:nth-child(4) {
animation-delay: 0.3s;
}
.equalizer-bar:nth-child(5) {
animation-delay: 0.4s;
}
.equalizer-bar:nth-child(6) {
animation-delay: 0.5s;
}
.equalizer-bar:nth-child(7) {
animation-delay: 0.6s;
}
.equalizer-bar:nth-child(8) {
animation-delay: 0.7s;
}
@keyframes equalizer-animation {
0%, 100% {
  height: 4px;
}
25% {
  height: 20px;
}
50% {
  height: 30px;
}
75% {
  height: 15px;
}
}
.rewiews_audio_timer {
font-size: 14px;
color: #666;
font-weight: 500;
}




.slick-slide{
  max-height: 1000px!important;
  }

.rewiews_text {
width: 100%;
height: auto;
max-width: 1406px;
display: block;
margin: 0 auto;
margin-top: 50px;
   margin-bottom: 50px;
}
.rewiews_text_blocks {
width: 100%;
height: auto;
display: grid;
grid-template-columns: repeat(2, 1fr);
gap: 20px;
}
.rewiews_text_block {
width: 100%;
height: auto;
border: 1px solid #E1E1E1;
border-radius: 15px;
}
.rewiews_text_block_content{
padding: 20px;
}
.rewiews_text_block_up {
display: flex;
align-items: center;
}
.rewiews_text_block_up_info {
display: flex;
align-items: center;
gap: 15px;
}
.rewiews_text_block_avatar {
width: 70px;
height: 150%;
object-fit: cover;
border-radius: 100px;
}
.rewiews_text_block_up_texts {
display: flex;
flex-direction: column;
}
.rewiews_text_block_up_name {
  margin: 0;
font-size: 18px;
font-weight: 600;
color: #0c2756;
line-height: 110%;
}
.rewiews_text_block_up_desctiption {
  margin: 0;
font-size: 16px;
font-weight: 400;
color: #0c2756;
line-height: 110%;
}
.rewiews_text_block_up_stars {
display: flex;
align-items: center;
gap: 5px;
margin-left: auto;
}
.rewiews_text_block_up_stars svg{
width: 30px;
height: 30px;
vertical-align: middle;
}
.rewiews_text_block_text {
margin: 0;
font-size: 16px;
font-weight: 400;
color: #0c2756;
line-height: 110%;
margin-top: 10px;
}










@media (min-width:320px) and (max-width:399px){
.rewiews_audio_block_content {
  flex-direction: column;
align-items: center;
}
.reviews_blocks{
  grid-template-columns: 100%;
}
.rewiews_audio_blocks{
  grid-template-columns: 100%;
}
.rewiews_audio_block_title { text-align: center; }
.rewiews_text_blocks{
  grid-template-columns: repeat(1, 1fr);
}
.rewiews_text_block_up {
  flex-direction: column;
  gap: 10px;
  align-items: center;
}
.rewiews_text_block_up_stars{
  margin-left: 0px;
}
.rewiews_text_block_text {
  text-align: center;
  margin-top: 20px;
}
}

@media (min-width:400px) and (max-width:499px){

.reviews_blocks{
  grid-template-columns: 100%;
}
.rewiews_audio_blocks{
  grid-template-columns: 100%;
}
.rewiews_text_blocks{
  grid-template-columns: repeat(1, 1fr);
}
.rewiews_text_block_up {
  flex-direction: column;
  gap: 10px;
  align-items: center;
}
.rewiews_text_block_up_stars{
  margin-left: 0px;
}
.rewiews_text_block_text {
  text-align: center;
  margin-top: 20px;
}

.reviews_blocks{
  grid-template-columns: repeat(2, 1fr);
}
.rewiews_audio_blocks{
  grid-template-columns: 100%;
}
.reviews_block_play{
  width: 50px;
      left: calc(50% - 25px);
top: calc(50% - 25px);
}
.reviews_block_info_stars{
  gap: 0px;
  margin-top: 0px;
}
.reviews_block_info_stars svg{
  width: 15px;
}
.reviews_block_info{
  left: 10px;
  bottom: 10px;
}
.reviews_block_info_teg{
  font-size: 14px;
}
.reviews_block_info_name{
  font-size: 16px;
}
}

@media (min-width:500px) and (max-width:799px){

.rewiews_text_blocks{
  grid-template-columns: repeat(1, 1fr);
}

.reviews_blocks{
  grid-template-columns: repeat(2, 1fr);
}
.rewiews_audio_blocks{
  grid-template-columns: 100%;
}
.reviews_block_play{
  width: 70px;
      left: calc(50% - 35px);
top: calc(50% - 35px);
}
.reviews_block_info_stars{
  gap: 0px;
  margin-top: 0px;
}
.reviews_block_info_stars svg{
  width: 25px;
}

}

@media (min-width:800px) and (max-width:1199px){

.rewiews_text_block_up{
flex-direction: column;
gap: 10px;
align-items: flex-start;
}
.rewiews_text_block_up_stars{
margin-left: 0px;
}
.reviews_blocks{
grid-template-columns: repeat(3, 1fr);
}
.reviews_block_play{
width: 70px;
left: calc(50% - 35px);
top: calc(50% - 35px);
}
.rewiews_audio_blocks{
grid-template-columns: repeat(2, 1fr);
}
}

@media (min-width:969px) and (max-width:1091px){
.header-content {
    gap: 10px;
}
.logo-image{
    width: 100px;
}
.phone-box{
    font-size: 12px;
        padding: 8px 10px;
}
    .navigation-link-bar li a {
        padding: 5px;
    }
    
}


@media (min-width:1201px) and (max-width:1238px){
.navigation-link-bar li a {
    padding: 8px 15px;
}

}

@media (min-width:1400px) and (max-width:1620px){
.main-menu .navigation>li{
margin:0;
}
}

.faq-inner-section{
    padding-top: 100px;
}

.rewies_main{
    width: calc(100% - 40px);
    max-width: 1406px;
    display: block;
    margin: 0 auto;
    margin-top: 50px;
}



.header-content .search-box{
  width: fit-content;
  height: fit-content;
  position: relative;
  margin-top: 10px;
  width: 100%;
}
.header-content .input-search{
    height: 35px;
    width: 35px;
    border-style: none;
    padding: 10px;
    font-size: 14px;
    letter-spacing: 2px;
    outline: none;
    border-radius: 25px;
    transition: all .5s ease-in-out;
    color: #fff;
    width: 100%;
    background: #ff6b35;
    border-bottom: 1px solid rgba(255, 255, 255, .5);
    padding-left: 40px;
    border: none;
}
.header-content .input-search::placeholder{
  color:#fff;
  font-size: 14px;
  letter-spacing: 2px;
  font-weight: 100;
}
.header-content .btn-search{
  width: 35px;
  height: 35px;
  border-style: none;
  font-size: 20px;
  font-weight: bold;
  outline: none;
  cursor: pointer;
  border-radius: 50%;
  position: absolute;
  left: 0px;
  color:#ffffff ;
  background-color: #ff6b35;
  pointer-events: painted;  
}
.header-content .btn-search:focus ~ .input-search{
  width: 100%;
  background-color: #ff6b35;
  border-bottom:1px solid rgba(255,255,255,.5);
  transition: width 500ms cubic-bezier(0.4, 0, 0.2, 1);

}
.header-content .input-search:focus{
  width: 100%;
  background-color: #ff6b35;
  border-bottom:1px solid rgba(255,255,255,.5);
  transition: width 500ms cubic-bezier(0.4, 0, 0.2, 1);

}


.header-content .search-box .fas, .fa-solid {
    font-family: 'Font Awesome 6 Pro';
    font-weight: 500!important;
    font-size: 15px!important;
}