:root {
    --navy: #1a365d;
    --navy-light: #2d4a80;
    --emerald: #047857;
    --emerald-light: #059669;
    --gold: #d4af37;
    --white: #ffffff;
    --light-gray: #f8fafc;
    --gray: #64748b;
    --dark-gray: #334155;
    --transition: all 0.3s ease;
    --shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --border-radius: 12px;
}

.stars {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 1rem;
    line-height: 1;
    color: #ffd700;
}

.star {
    position: relative;
    display: inline-block;
    width: 1.05em;
    height: 1em;
    overflow: visible;
    vertical-align: middle;
    line-height: 1;
}

.star-empty,
.star-fill {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    line-height: 1;
    font-size: 1em;
    pointer-events: none;
    user-select: none;
    display: block;
}

.star-empty {
    color: #e0e0e0;
    z-index: 1;
    text-align: left;
    padding-left: 0.02em;
}

.star-fill {
    color: #ffd700;
    z-index: 2;
    overflow: hidden;
    white-space: nowrap;
    text-align: left;
}

.rating-text {
    font-size: 0.85rem;
    color: #666;
    margin-left: 8px;
}

.beauty-catalog {
    padding: 80px 0;
    background: #ffffff;
}

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

.catalog-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: #1a365d;
}

.section-subtitle {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 30px;
}

/* Catalog Controls */
.catalog-controls {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
    border-bottom: 2px solid #f0f0f0;
}

.sort-by {
    display: flex;
    align-items: center;
    gap: 10px;
}

.sort-by label {
    font-weight: 600;
    color: #555;
}

.sort-by select {
    padding: 8px 16px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    background: white;
    font-size: 0.95rem;
    cursor: pointer;
    transition: border-color 0.3s;
}

.sort-by select:focus {
    outline: none;
    border-color: var(--uzb-accent);
}

.view-toggle {
    display: flex;
    gap: 5px;
    background: #f8f9fa;
    padding: 4px;
    border-radius: 8px;
}

.view-btn {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: none;
    background: transparent;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s;
}

.view-btn svg {
    width: 20px;
    height: 20px;
    color: #666;
}

.view-btn.active {
    background: white;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.view-btn.active svg {
    color: var(--uzb-accent);
}

/* Products Grid */
.products-grid {
    display: grid;
    gap: 25px;
    margin-bottom: 50px;
}

.grid-view {
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
}

.list-view {
    grid-template-columns: 1fr;
}

/* Product Card */
.product-card {
    background: white;
    border: 1px solid #e9ecef;
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
    position: relative;
    display: flex;
    flex-direction: column;
}

.grid-view .product-card {
    height: auto;
}

.list-view .product-card {
    flex-direction: row;
    height: auto;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    border-color: transparent;
}

.product-image {
    position: relative;
    overflow: hidden;
    background: white;
    display: flex;
    align-items: center;
    justify-content: center;
}

.grid-view .product-image {
    height: 220px;
    aspect-ratio: 4 / 3;
}

.list-view .product-image {
    width: 300px;
    height: 100%;
    flex-shrink: 0;
}

.product-image img {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    object-fit: contain;
    display: block;
    transition: transform 0.5s ease;
}

.product-card:hover .product-image img {
    transform: scale(1.05);
}

/* Product Badges */
.product-badges {
    position: absolute;
    top: 15px;
    left: 15px;
    display: flex;
    flex-direction: column;
    gap: 5px;
    z-index: 2;
}

.badge {
    padding: 4px 10px;
    border-radius: 4px;
    font-size: 0.75rem;
    font-weight: 600;
    color: white;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.badge.bestseller {
    background: #ff6b6b;
}

.badge.new {
    background: var(--uzb-accent);
}

.badge.discount {
    background: #ffa502;
}

.badge.limited {
    background: #9c88ff;
}

/* Action Buttons */
.wishlist-btn,
.quick-view {
    position: absolute;
    right: 15px;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.95);
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.3s ease;
    z-index: 2;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.wishlist-btn {
    top: 15px;
}

.quick-view {
    top: 65px;
}

.wishlist-btn svg,
.quick-view svg {
    width: 20px;
    height: 20px;
    color: #333;
}

.product-card:hover .wishlist-btn,
.product-card:hover .quick-view {
    opacity: 1;
    transform: translateY(0);
}

.wishlist-btn:hover {
    background: #ff4757;
}

.wishlist-btn:hover svg {
    color: white;
}

/* Product Info */
.product-info {
    padding: 20px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.product-category {
    display: inline-block;
    font-size: 0.8rem;
    color: var(--uzb-accent);
    font-weight: 600;
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.product-title {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 10px;
    color: #333;
    line-height: 1.4;
    flex: 0 0 auto;
}

/* Product Rating */
.product-rating {
    margin-bottom: 12px;
}


.rating-text {
    font-size: 0.85rem;
    color: #666;
    margin-left: 8px;
}

.product-description {
    font-size: 0.95rem;
    color: #666;
    line-height: 1.5;
    margin-bottom: 15px;
    flex: 0 0 auto;
}

.product-features {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-bottom: 20px;
    flex: 0 0 auto;
    align-items: flex-start;
}

.feature {
    font-size: 0.8rem;
    color: #666;
    height: max-content;
    background: #f8f9fa;
    padding: 4px 10px;
    border-radius: 12px;
    border: 1px solid #e9ecef;
}

/* Product Footer */
.product-footer {
    margin-top: auto;
}

.product-actions {
    display: flex;
    gap: 10px;
}

.add-to-cart,
.view-details {
    flex: 1;
    padding: 10px 16px;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.add-to-cart {
    background: var(--uzb-accent);
    color: white;
}

.add-to-cart:hover {
    background: #1a936d;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(31, 177, 106, 0.3);
}

.add-to-cart svg {
    width: 18px;
    height: 18px;
}

.view-details {
    background: transparent;
    border: 2px solid #e0e0e0;
    color: #555;
}

.view-details:hover {
    border-color: var(--uzb-accent);
}

/* View More Button */
.view-more {
    text-align: center;
    margin-top: 40px;
}

.load-more {
    padding: 14px 40px;
    font-size: 1rem;
    border-radius: 8px;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .grid-view {
        grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    }
}

@media (max-width: 992px) {
    .list-view .product-card {
        flex-direction: column;
        height: auto;
    }


    .list-view .product-image {
        width: 100%;
        height: 220px;
    }

    .history-text {
        text-align: center;
    }
}

@media (max-width: 768px) {
    .beauty-catalog {
        padding: 60px 0;
    }

    .catalog-header h2 {
        font-size: 2rem;
    }

    .catalog-controls {
        flex-direction: column;
        gap: 15px;
        align-items: stretch;
    }

    .sort-by {
        justify-content: space-between;
    }

    .view-toggle {
        align-self: flex-start;
    }

    .grid-view {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
        gap: 20px;
    }
}

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

    .product-actions {
        flex-direction: column;
    }

    .wishlist-btn,
    .quick-view {
        opacity: 1;
        transform: translateY(0);
    }
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Inter', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

html {
    scroll-behavior: smooth;
}

body {
    background-color: var(--white);
    color: var(--dark-gray);
    line-height: 1.6;
    overflow-x: hidden;
}

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

section {
    padding: 100px 0;
    position: relative;
}

h1, h2, h3, h4 {
    color: var(--navy);
    line-height: 1.3;
    margin-bottom: 1rem;
}

h1 {
    font-size: 3rem;
    font-weight: 700;
}

h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 1rem;
    position: relative;
}

.hero {
    min-height: 100vh;
    height: auto;
    display: flex;
    align-items: center;
    position: relative;
    padding: 120px 0 80px;
    overflow: hidden;
    background: linear-gradient(135deg, var(--white) 0%, var(--light-gray) 100%);
}


.hero-ticker {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    background: linear-gradient(135deg, #006bff, #0216a4);
    color: var(--white);
    overflow: hidden;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding: 10px 0;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 10px 20px;
    flex-wrap: wrap;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
}

.footer-bottom-left,
.footer-bottom-right {
    display: flex;
    align-items: center;
    gap: 12px;
}

.footer-bottom a {
    color: rgba(255, 255, 255, 0.85);
    text-decoration: none;
    transition: var(--transition);
}

.footer-bottom a:hover {
    color: var(--emerald);
}

.footer-privacy-link {
    padding-left: 12px;
    border-left: 1px solid rgba(255, 255, 255, 0.25);
    font-size: 0.9rem;
}

/* On mobile – stack nicely & center */
@media (max-width: 576px) {
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }

    .footer-bottom-left,
    .footer-bottom-right {
        justify-content: center;
        flex-wrap: wrap;
    }

    .footer-privacy-link {
        border-left: none;
        padding-left: 0;
        display: block;
        margin-top: 4px;
    }
}

.hero-ticker-track {
    display: inline-flex;
    white-space: nowrap;
    animation: heroTicker 25s linear infinite;
}

.hero-ticker-item {
    padding: 0 2.5rem;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.16em;
    font-weight: 500;
    opacity: 0.9;
}

.hero-ticker-separator {
    margin-left: 1.5rem;
    opacity: 0.4;
}

/* Ticker animation */
@keyframes heroTicker {
    from {
        transform: translateX(0);
    }
    to {
        transform: translateX(-50%);
    }
}


p {
    margin-bottom: 1.5rem;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 32px;
    border-radius: var(--border-radius);
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition);
    cursor: pointer;
    border: none;
    font-size: 1rem;
    min-height: 52px;
}

.btn-primary {
    background-color: var(--navy);
    color: var(--white);
}

.btn-primary:hover {
    background-color: var(--navy-light);
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}

.btn-secondary {
    background-color: var(--emerald);
    color: var(--white);
}

.btn-secondary:hover {
    background-color: var(--emerald-light);
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}

.btn-outline {
    background-color: transparent;
    border: 2px solid var(--navy);
    color: var(--navy);
}

.btn-outline:hover {
    background-color: var(--navy);
    color: var(--white);
}

.section-subtitle {
    text-align: center;
    color: var(--gray);
    max-width: 700px;
    margin: 0 auto 3rem;
    font-size: 1.2rem;
}


.logo {
    display: flex;
    align-items: center;
}

.logo-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--navy), var(--emerald));
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: bold;
    margin-right: 10px;
}

.logo-text {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--navy);
}

nav ul {
    display: flex;
    list-style: none;
}

nav ul li {
    margin-left: 30px;
}

nav ul li a {
    text-decoration: none;
    color: white;
    font-weight: 500;
    transition: var(--transition);
    position: relative;
}

nav ul li a:hover {
    color: white;
}

nav ul li a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 1px;
    background-color: white;
    transition: var(--transition);
}

nav ul li a:hover::after {
    width: 100%;
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--navy);
    cursor: pointer;
}


@keyframes slideIn {
    to {
        opacity: 1;
        width: 92%;
    }
}

.hero p {
    font-size: 1.3rem;
    color: var(--gray);
    margin-bottom: 2.5rem;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.8s ease 0.2s forwards;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.8s ease 0.4s forwards;
}

.hero-visual {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
}

.hero-product-showcase {
    position: relative;
    width: 100%;
    max-width: 500px;
    height: 400px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.product-item {
    position: absolute;
    border-radius: 16px;
    box-shadow: var(--shadow-lg);
    overflow: hidden;
    transition: var(--transition);
    background: white;
}

.product-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.product-1 {
    width: 290px;
    height: 290px;
    top: 0;
    left: 0;
    z-index: 3;
    transform: rotate(-5deg);
    animation: floatProduct1 8s ease-in-out infinite;
}

.product-2 {
    width: 290px;
    height: 290px;
    bottom: -50px;
    right: -45px;
    z-index: 2;
    transform: rotate(3deg);
    animation: floatProduct2 7s ease-in-out infinite;
}

/*.stats::before {*/
/*    content: '';*/
/*    position: absolute;*/
/*    top: 0;*/
/*    left: 0;*/
/*    width: 100%;*/
/*    height: 100%;*/
/*    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100" width="100" height="100" opacity="0.17"><circle cx="50" cy="50" r="40" fill="none" stroke="%23047857" stroke-width="2"/></svg>');*/
/*    background-size: 120px;*/
/*    z-index: 0;*/
/*}*/

.product-3 {
    width: 290px;
    height: 290px;
    top: -35%;
    right: 6%;
    z-index: 1;
    transform: rotate(-2deg);
    animation: floatProduct3 9s ease-in-out infinite;
}

@keyframes floatProduct1 {
    0%, 100% {
        transform: translateY(0) rotate(-5deg);
    }
    50% {
        transform: translateY(-15px) rotate(-8deg);
    }
}

@keyframes floatProduct2 {
    0%, 100% {
        transform: translateY(0) rotate(3deg);
    }
    50% {
        transform: translateY(10px) rotate(6deg);
    }
}

@keyframes floatProduct3 {
    0%, 100% {
        transform: translateY(0) rotate(-2deg);
    }
    50% {
        transform: translateY(-10px) rotate(-5deg);
    }
}

.floating-shapes {
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    z-index: 0;
    overflow: hidden;
}

.shape {
    position: absolute;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--navy-light), var(--emerald-light));
    opacity: 0.1;
    animation: float 6s ease-in-out infinite;
}

.shape-1 {
    width: 120px;
    height: 120px;
    top: 20%;
    right: 10%;
    animation-delay: 0s;
}

.shape-2 {
    width: 80px;
    height: 80px;
    top: 50%;
    right: 20%;
    animation-delay: 2s;
}

.shape-3 {
    width: 100px;
    height: 100px;
    bottom: 20%;
    right: 15%;
    animation-delay: 4s;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
    }
    50% {
        transform: translateY(-20px) rotate(10deg);
    }
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Stats Section */


.stats-container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.stat-item {
    text-align: center;
    padding: 20px;
    background: var(--white);
    border-radius: 5px;
    box-shadow: 0px 1px 67px -3px rgba(34, 60, 80, 0.08);

}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    color: #1a365d;
}

.stat-label {
    font-size: 1.1rem;
    opacity: 0.9;
    font-weight: 600;
    color: #1a365d;
}

/* Brand Slider */
.brands {
    background-color: var(--light-gray);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.brands::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100" width="100" height="100" opacity="0.03"><path d="M20,20 L80,20 L80,80 L20,80 Z" fill="none" stroke="%231a365d" stroke-width="2"/></svg>');
    background-size: 100px;
    z-index: 0;
}

.brand-slider {
    display: flex;
    overflow: hidden;
    position: relative;
    height: 100px;
    background: var(--white);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    padding: 20px;
}

.brand-track {
    display: flex;
    animation: slide 30s linear infinite;
}

.brand-item {
    flex: 0 0 auto;
    width: 160px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 15px;
    opacity: 0.7;
    transition: var(--transition);
}

.brand-item:hover {
    opacity: 1;
    transform: scale(1.05);
}

.brand-item img {
    max-width: 100%;
    max-height: 60px;
    filter: grayscale(100%);
    transition: var(--transition);
}

.brand-item:hover img {
    filter: grayscale(0%);
}

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

/* About Section */
.about {
    position: relative;
}


.about-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    margin-top: 50px;
    position: relative;
    z-index: 1;
}

.feature-card {
    background: var(--white);
    padding: 40px 30px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    text-align: center;
    transition: var(--transition);
    opacity: 0;
    transform: translateY(20px);
    border-top: 4px solid transparent;
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    transition: var(--transition);
}

.feature-card:hover::before {
    left: 100%;
}

.feature-card.visible {
    opacity: 1;
    transform: translateY(0);
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
    border-top: 4px solid var(--emerald);
}

.feature-icon {
    width: 80px;
    height: 80px;
    /*background: linear-gradient(135deg, var(--navy), var(--emerald));*/
    border: 2px solid black;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto 25px;
    color: var(--white);
    font-size: 2rem;
    transition: var(--transition);
    position: relative;
    z-index: 1;
}

.feature-card:hover .feature-icon {
    transform: scale(1.1) rotate(5deg);
}

.feature-card h3 {
    margin-bottom: 15px;
    font-size: 1.4rem;
    position: relative;
    z-index: 1;
}

.about-button {
    text-align: center;
    margin-top: 50px;
    position: relative;
    z-index: 1;
}

/* Split Navigation */
.split-navigation {
    padding: 120px 0;
    background: linear-gradient(135deg, var(--light-gray) 0%, #eef2f6 100%);
    position: relative;
    overflow: hidden;
}


.split-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    position: relative;
    z-index: 1;
}

.split-card {
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    transition: var(--transition);
    position: relative;
    height: 450px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 50px 40px;
    color: var(--white);
}

.split-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    z-index: 1;
    transition: var(--transition);
}

.split-card:hover::before {
    background: rgba(0, 0, 0, 0.2);
}

.split-card > * {
    position: relative;
    z-index: 2;
}


.split-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

.split-card h3 {
    font-size: 2.2rem;
    margin-bottom: 20px;
    color: var(--white);
}

.split-card p {
    margin-bottom: 35px;
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.1rem;
}

/* News Section */
.news {
    position: relative;
}

.news::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100" width="100" height="100" opacity="0.03"><rect x="10" y="10" width="80" height="80" fill="none" stroke="%23047857" stroke-width="2"/></svg>');
    background-size: 120px;
    z-index: 0;
}

.news-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 30px;
    position: relative;
    z-index: 1;
}

.news-card {
    background: var(--white);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    opacity: 0;
    transform: translateY(20px);
    display: flex;
    flex-direction: column;
    height: 100%;
    position: relative;
}

.news-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, var(--navy), var(--emerald));
    transform: scaleX(0);
    transform-origin: left;
    transition: var(--transition);
}

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

.news-card.visible {
    opacity: 1;
    transform: translateY(0);
}

.news-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.news-image {
    height: 220px;
    overflow: hidden;
    position: relative;
}

.news-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.news-card:hover .news-image img {
    transform: scale(1.05);
}

.news-date {
    position: absolute;
    top: 15px;
    left: 15px;
    background: #1a365d;
    color: white;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    z-index: 2;
}

.news-content {
    padding: 25px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.news-card h3 {
    margin-bottom: 15px;
    font-size: 1.3rem;
    flex-grow: 1;
}

.news-card .btn {
    align-self: flex-start;
    margin-top: auto;
}

/* Where to Buy */
.where-to-buy {
    background: white;
    position: relative;
    overflow: hidden;
}


.retailers-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(205px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
    position: relative;
    z-index: 1;
}

.retailer-item {
    /*background: var(--white);*/
    border-radius: var(--border-radius);
    padding: 25px;
    display: flex;
    justify-content: center;
    align-items: center;
    /*box-shadow: var(--shadow);*/
    transition: var(--transition);
    height: 120px;
    position: relative;
    overflow: hidden;
}

.retailer-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /*background: linear-gradient(135deg, rgb(255 255 255), rgb(255 255 255));*/
    opacity: 0;
    transition: var(--transition);
}

.hero-sparkles {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 0;
}

/* base sparkle */
.sparkle {
    position: absolute;
    width: 10px;
    height: 10px;
    border-radius: 999px;
    background: radial-gradient(circle, #ffffff, #c4dcff);
    box-shadow: 0 0 0 4px rgba(255, 255, 255, 0.35),
    0 0 18px rgba(0, 107, 255, 0.55);
    opacity: 0.9;
}

/* positions + animations */
.sparkle-1 {
    top: -10px;
    left: 55%;
    animation: sparkleFloat1 7s ease-in-out infinite;
}

.sparkle-2 {
    top: 40%;
    left: -20px;
    width: 8px;
    height: 8px;
    animation: sparkleFloat2 9s ease-in-out infinite;
}

.sparkle-3 {
    bottom: 10px;
    left: 30%;
    width: 6px;
    height: 6px;
    animation: sparkleFloat3 11s ease-in-out infinite;
}

@keyframes sparkleFloat1 {
    0%, 100% {
        transform: translate3d(0, 0, 0);
        opacity: 0.9;
    }
    50% {
        transform: translate3d(10px, 16px, 0);
        opacity: 1;
    }
}

@keyframes sparkleFloat2 {
    0%, 100% {
        transform: translate3d(0, 0, 0);
        opacity: 0.6;
    }
    50% {
        transform: translate3d(8px, -12px, 0);
        opacity: 0.95;
    }
}

@keyframes sparkleFloat3 {
    0%, 100% {
        transform: translate3d(0, 0, 0);
        opacity: 0.7;
    }
    50% {
        transform: translate3d(-6px, -10px, 0);
        opacity: 1;
    }
}

.retailer-item:hover::before {
    opacity: 1;
}

.retailer-item:hover {
    transform: translateY(-5px);
}

.retailer-item img {
    max-width: 100%;
    max-height: 125px;
    position: relative;
    z-index: 1;
}

.map-button {
    text-align: center;
    position: relative;
    z-index: 1;
}

/* FAQ Section */
.faq {
    background: linear-gradient(135deg, var(--light-gray) 0%, #eef2f6 100%);
    position: relative;
    overflow: hidden;
}


.faq-container {
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.faq-item {
    background: var(--white);
    border-radius: var(--border-radius);
    margin-bottom: 20px;
    box-shadow: var(--shadow);
    overflow: hidden;
    transition: var(--transition);
}

.faq-item:hover {
    box-shadow: var(--shadow-lg);
}

.faq-question {
    padding: 25px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: var(--transition);
}

.faq-question:hover {
    background-color: rgba(26, 54, 93, 0.02);
}

.faq-question h3 {
    margin: 0;
    font-size: 1.2rem;
    color: var(--navy);
    flex: 1;
}

.faq-toggle {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: var(--light-gray);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.faq-toggle i {
    color: var(--navy);
    transition: var(--transition);
}

.faq-item.active .faq-toggle {
    background: var(--emerald);
}

.faq-item.active .faq-toggle i {
    color: white;
    transform: rotate(180deg);
}

.faq-answer {
    padding: 0 30px;
    max-height: 0;
    overflow: hidden;
    transition: var(--transition);
}

.faq-item.active .faq-answer {
    padding: 0 30px 25px;
    max-height: 500px;
}

.faq-answer p {
    margin: 0;
    color: var(--gray);
    line-height: 1.6;
}

/* Contact Section */
.contact {
    position: relative;
}

.contact::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100" width="100" height="100" opacity="0.03"><path d="M20,20 L80,20 L80,50 L50,80 L20,50 Z" fill="none" stroke="%23047857" stroke-width="2"/></svg>');
    background-size: 120px;
    z-index: 0;
}

.contact-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    position: relative;
    z-index: 1;
}

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

.contact-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.contact-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--navy) 0%, #0f1e3a 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.contact-details h3 {
    margin: 0 0 10px 0;
    color: var(--navy);
    font-size: 1.3rem;
}

.contact-details p {
    margin: 0;
    color: var(--gray);
    line-height: 1.6;
}

.contact-form-container {
    background: var(--white);
    padding: 40px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-lg);
}

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

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

.form-group label {
    margin-bottom: 8px;
    font-weight: 500;
    color: var(--navy);
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 12px 16px;
    border: 2px solid var(--light-gray);
    border-radius: var(--border-radius);
    font-size: 1rem;
    transition: var(--transition);
    font-family: inherit;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--navy);
    box-shadow: 0 0 0 3px rgba(26, 54, 93, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.contact-form .btn {
    margin-top: 10px;
    align-self: flex-start;
}

/* Responsive Design */
@media (max-width: 992px) {
    .contact-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .contact-info {
        order: 2;
    }

    .contact-form-container {
        order: 1;
    }
}

@media (max-width: 768px) {
    .faq-question {
        padding: 20px;
    }

    .split-container {
        grid-template-columns: 1fr;
    }

    .faq-answer {
        padding: 0 20px;
    }

    .faq-item.active .faq-answer {
        padding: 0 20px 20px;
    }

    .stats-container {
        grid-template-columns: repeat(2, 1fr);
    }

    .contact-form-container {
        padding: 30px 25px;
    }

    .contact-item {
        flex-direction: column;
        text-align: center;
        gap: 15px;
        align-items: center;
    }

    .contact-icon {
        align-self: center;
    }
}

@media (max-width: 576px) {
    .faq-question h3 {
        font-size: 1.1rem;
    }

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

    .contact-form-container {
        padding: 25px 20px;
    }
}

/* Footer */
footer {
    background: linear-gradient(90deg, #062c65, #09367b 50%, #062c65);
    color: var(--white);
    padding: 80px 0 30px;
    position: relative;
}

footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100" width="100" height="100" opacity="0.05"><path d="M50,10 L90,50 L50,90 L10,50 Z" fill="none" stroke="%23047857" stroke-width="2"/></svg>');
    background-size: 120px;
    z-index: 0;
}

.footer-container {
    display: grid;
    gap: 70px;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    margin-bottom: 40px;
    position: relative;
    z-index: 1;
}

.footer-column h4 {
    color: var(--white);
    font-size: 1.3rem;
    position: relative;
    padding-bottom: 10px;
}

.footer-column p {
    font-size: 14px;
    font-weight: 400;
    color: #ffffffa6;
}

.footer-column ul {
    list-style: none;
}

.footer-column ul li {
    margin-bottom: 12px;
}

.footer-column ul li a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: var(--transition);
    display: flex;
    align-items: center;
}

.footer-nav-list .footer-nav-item {
    margin-bottom: 0;
}

.footer-column ul li a i {
    margin-right: 10px;
    width: 20px;
    text-align: center;
}

.footer-nav-link {
    font-size: 16px !important;

}

.footer-column ul li a:hover {
    color: var(--white);
}

.social-icons {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.social-icons a {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: var(--white);
    text-decoration: none;
    transition: var(--transition);
}

.social-icons a:hover {
    background-color: var(--emerald);
    transform: translateY(-3px);
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    position: relative;
    z-index: 1;
}

@media (max-width: 992px) {
    .hero {
        padding: 100px 0 60px;
        min-height: auto;
        height: auto;
    }

    .hero-container {
        grid-template-columns: 1fr;
        gap: 50px;
        text-align: center;
    }

    .hero-content {
        padding: 0;
        order: 1;
    }

    .hero-visual {
        order: 2;
        max-width: 500px;
        margin: 0 auto;
    }

    .hero h1 {
        font-size: 2.8rem !important;
        line-height: 1.2;
        margin-bottom: 1.5rem;
    }

    .hero h1::after {
        left: 50%;
        transform: translateX(-50%);
        width: 80px !important;
    }

    .hero-buttons {
        justify-content: center;
        flex-wrap: wrap;
        gap: 15px;
    }

    .hero-product-showcase {
        max-width: 400px;
        height: 320px;
        margin: 0 auto;
    }

    .product-1,
    .product-2,
    .product-3 {
        width: 200px !important;
        height: 200px !important;
        position: absolute;
        animation: none !important;
    }

    .product-1 {
        top: 10%;
        left: 5%;
        transform: rotate(-3deg);
    }

    .product-2 {
        bottom: 5%;
        right: 5%;
        transform: rotate(2deg);
    }

    .product-3 {
        top: 40%;
        right: 15%;
        transform: rotate(-1deg);
    }

    /* Hide decorative elements on tablet */
    .floating-shapes,
    .hero-content::before,
    .hero-content::after,
    .hero-sparkles {
        display: none !important;
    }
}

/* Mobile Styles (576px - 768px) */
@media (max-width: 768px) {
    .hero {
        padding: 90px 0 50px;
    }

    .hero-container {
        gap: 40px;
    }

    .hero h1 {
        font-size: 2.2rem !important;
        line-height: 1.3;
        margin-bottom: 1.2rem;
    }

    .footer-links {
        display: none;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
        width: 100%;
        max-width: 300px;
        margin: 0 auto;
    }

    .footer-column ul li a {
        align-items: baseline;
        justify-content: center;

    }

    .hero-buttons .btn {
        width: 100%;
        justify-content: center;
    }

    .hero-product-showcase {
        max-width: 320px;
        height: 250px;
    }

    .product-1,
    .product-2,
    .product-3 {
        width: 150px !important;
        height: 150px !important;
    }

    .product-1 {
        top: 15%;
        left: 10%;
    }

    .product-2 {
        bottom: 10%;
        right: 10%;
    }

    .product-3 {
        top: 45%;
        right: 20%;
    }

    .hero-ticker {
        font-size: 0.8rem;
        padding: 8px 0;
    }

    .hero-ticker-item {
        padding: 0 1.5rem;
    }
}

/* Small Mobile Styles (≤ 576px) */
@media (max-width: 576px) {
    .hero {
        padding: 80px 0 40px;
    }

    .hero-container {
        gap: 30px;
    }

    .hero h1 {
        font-size: 1.8rem !important;
        line-height: 1.3;
        margin-bottom: 1rem;
        text-align: center;
    }

    .hero h1::after {
        width: 60px !important;
    }

    @keyframes slideIn {
        to {
            opacity: 1;
            width: 60px !important;
        }
    }

    .hero-product-showcase {
        max-width: 280px;
        height: 200px;
    }

    .product-1,
    .product-2,
    .product-3 {
        width: 120px !important;
        height: 120px !important;
    }

    .product-1 {
        top: 20%;
        left: 15%;
    }

    .product-2 {
        bottom: 15%;
        right: 15%;
    }

    .product-3 {
        top: 50%;
        right: 25%;
    }

    .hero-ticker {
        font-size: 0.7rem;
    }

    .hero-ticker-item {
        padding: 0 1rem;
    }

    @media (max-width: 400px) {
        .hero-visual {
            display: none;
        }

        .news-grid {
            grid-template-columns: 1fr;
        }

        .hero h1 {
            min-width: unset !important;
        }

        .hero-container {
            grid-template-columns: 1fr;
        }
    }
}


@media (max-height: 600px) and (orientation: landscape) {
    .hero {
        min-height: auto;
        padding: 100px 0 40px;
    }

    .hero-container {
        grid-template-columns: 1fr 1fr;
        gap: 30px;
    }

    .hero h1 {
        font-size: 1.8rem !important;
        margin-bottom: 1rem;
    }

    .hero-product-showcase {
        height: 200px;
    }

    .product-1,
    .product-2,
    .product-3 {
        width: 120px !important;
        height: 120px !important;
    }
}

/* Fix for very tall screens */
@media (min-height: 1000px) {
    .hero {
        min-height: 70vh;
    }
}

/* Improved button responsiveness */
.hero-buttons .btn {
    min-height: 48px;
    padding: 12px 24px;
    font-size: 0.95rem;
}

@media (max-width: 768px) {
    .hero-buttons .btn {
        min-height: 44px;
        padding: 10px 20px;
        font-size: 0.9rem;
    }

    .hero-visual {
        display: none;
    }
}

.hero h1 {
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
}

@supports (height: 100svh) {
    .hero {
        min-height: 100svh;
    }
}


@media (max-width: 768px) {
    .mobile-menu-btn {
        display: block !important;
        z-index: 1001;
    }

    nav {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: var(--white);
        box-shadow: var(--shadow-lg);
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
    }

    nav.active {
        max-height: 400px;
    }

    nav ul {
        flex-direction: column;
        padding: 20px;
        gap: 0;
    }

    nav ul li {
        margin: 0 !important;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }

    .split-card h3 {
        font-size: 1.7rem;
        font-weight: 600;
    }

    .feature-icon {
        width: 68px;
        height: 68px;
    }

    .feature-card h3 {
        margin-bottom: 0;
        font-weight: 600;
    }

    .catalog-header h2 {
        font-size: 1.7rem;
        font-weight: 600;
    }

    .product-description {
        font-size: 1.1rem !important;
    }

    .product-title {
        font-size: 1.6rem;
    }

    .rating-text {
        font-size: 1.1rem;
    }

    .feature {
        font-size: 1.1rem;
    }

    .view-details {
        font-size: 1.1rem;
    }

    .uzb-ctas {
        flex-direction: unset !important;
        justify-content: center;
    }

    .uzb-headline {
        font-weight: 1.8rem;
    }

    h2 {
        margin-bottom: 10px;
        font-weight: 600;
    }

    .section-subtitle {
        font-size: 1rem;
    }

    nav ul li:last-child {
        border-bottom: none;
    }

    nav ul li a {
        display: block;
        padding: 15px 0;
        font-size: 1.1rem;
    }

    nav ul li a::after {
        display: none;
    }


    .logo {
        z-index: 1001;
    }
}

/* Additional mobile optimization */
@media (max-width: 576px) {


    .logo-text {
        font-size: 1.3rem;
    }

    .logo-icon {
        width: 35px;
        height: 35px;
        font-size: 0.9rem;
    }

    nav ul {
        padding: 15px;
    }

    nav ul li a {
        padding: 12px 0;
        font-size: 1rem;
    }
}

/* Fix for landscape mode */
@media (max-height: 500px) and (orientation: landscape) {
    nav.active {
        max-height: 300px;
        overflow-y: auto;
    }

    nav ul li a {
        padding: 10px 0;
    }
}

@media (max-width: 992px) {
    .hero {
        height: 100vh;
        /*min-height: auto;*/
        padding-top: 140px;
        padding-bottom: 0;
    }

    .hero-container {
        grid-template-columns: 1fr;
        gap: 40px;
        padding-top: 0;
        padding-bottom: 40px;
    }

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

    .hero h1 {
        font-size: 2.4rem !important;
        line-height: 1.2;
    }

    .hero-buttons {
        justify-content: center;
    }

    .hero-product-showcase {
        max-width: 500px;
        gap: 55px;
        height: auto;
        margin: 0 auto;

        .product-1,
        .product-2,
        .product-3 {
            width: 180px !important;
            height: 180px !important;
            position: relative;
            margin: 10px auto;
            animation: none !important;
            transform: none !important;
        }

        /* Hide floating shapes & blobs */

        .floating-shapes,
        .hero-content::before,
        .hero-content::after {
            display: none !important;
        }
    }
}

@media (max-width: 576px) {
    .hero {
        padding-top: 120px;
        height: 100vh;
    }

    @keyframes slideIn {
        to {
            opacity: 1;
            width: 100%;
        }
    }
    .hero h1 {
        font-size: 2rem !important;
        min-width: 370px;
    }

    .hero-visual {
        display: none;
    }

    .hero-buttons {
        flex-direction: column;
        width: 100%;
        align-items: center;
        gap: 15px;
    }

    .hero-product-showcase {
        max-width: 260px;
    }

    .product-1,
    .product-2,
    .product-3 {
        width: 150px !important;
        height: 150px !important;
    }

    .hero-ticker {
        font-size: 0.75rem;
    }
}


.news-section {
    padding: 80px 0;
    background-color: #f9f9f9;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.news-article-content a.btn-primary {
    margin-top: auto;
}

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

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

.news-section-title {
    font-size: 2.5rem;
    color: #333;
    margin-bottom: 2rem;
    font-weight: 700;
}

.news-section-subtitle {
    font-size: 1.1rem;
    color: #666;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Сетка статей */
.news-articles-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

/* Карточка статьи */
.news-article-card {
    background-color: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.news-article-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.12);
}

/* Изображение статьи */
.news-article-image {
    position: relative;
    height: 220px;
    overflow: hidden;
}

.news-article-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.news-article-card:hover .news-article-img {
    transform: scale(1.05);
}

.news-article-date {
    position: absolute;
    top: 15px;
    right: 15px;
    background-color: rgba(0, 0, 0, 0.7);
    color: white;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 500;
}

/* Контент статьи */
.news-article-content {
    padding: 25px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.news-article-title {
    font-size: 1.4rem;
    color: #222;
    margin-bottom: 15px;
    line-height: 1.4;
    font-weight: 600;
}

.news-article-excerpt {
    color: #555;
    line-height: 1.6;
    margin-bottom: 20px;
    flex-grow: 1;
}

.news-article-meta {
    margin-bottom: 25px;
    border-top: 1px solid #eee;
}

.news-article-views {
    display: flex;
    align-items: center;
    margin-bottom: 12px;
    font-size: 0.9rem;
    color: #777;
}

.news-views-icon {
    margin-right: 8px;
    font-size: 1rem;
}

.news-article-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 15px;
}

.news-tag {
    background-color: #f0f0f0;
    color: #555;
    padding: 4px 10px;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 500;
}

.news-tag:hover {
    background-color: #e0e0e0;
    cursor: pointer;
}

.news-article-author {
    display: flex;
    align-items: center;
    font-size: 0.9rem;
    color: #666;
}

.news-author-label {
    font-weight: 600;
    margin-right: 5px;
}

.news-author-name {
    color: #333;
}

/* Кнопка "Все новости" */
.news-all-articles {
    text-align: center;
}

.news-all-articles-btn {
    display: inline-block;
    background-color: #2c5aa0;
    color: white;
    padding: 12px 32px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.news-all-articles-btn:hover {
    background-color: #1d447a;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* Адаптивность */
@media (max-width: 992px) {
    .news-articles-grid {
        grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
        gap: 25px;
    }
}

@media (max-width: 768px) {
    .news-section {
        padding: 60px 0;
    }

    section {
        padding: 40px 0 !important;
    }

    .split-card {
        height: 345px;
        padding: 15px;
    }

    .stat-number {
        font-size: 35px;
    }

    .feature-card {
        padding: 10px;
    }

    .retailers-grid {
        grid-template-columns: repeat(auto-fill, minmax(115px, 1fr));
    }

    .logo-imgf {
        height: 65px;
    }

    .footer-column {
        text-align: center;
    }

    .social-icons {
        justify-content: center;
    }

    h2 {
        font-size: 1.7rem;
    }

    .brand-item {
        width: 85px;
    }

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

    .news-articles-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin-left: auto;
        margin-right: auto;
    }
}

@media (max-width: 480px) {
    .news-section-title {
        font-size: 1.8rem;
    }

    .news-article-content {
        padding: 20px;
    }

    .news-article-title {
        font-size: 1.3rem;
    }
}


.history-section * {
    box-sizing: border-box;
}

.history-section {
    padding: 60px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    position: relative;
    overflow: hidden;
    width: 100%;
}

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

.history-content {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 40px;
}

.history-text{
    flex: 1 1 100%;
    min-width: 0;
    position: relative;
    padding-left: 28px;
}

.history-text::before{
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 2px;
    height: 100%;
    background: linear-gradient(
            180deg,
            #062c65,
            #09367b 50%,
            #062c65
    );
}


.history-image {
    flex: 1 1 100%;
    min-width: 0;
    order: -1; /* Image first on mobile */
}

.history-title {
    font-size: 2.5rem;
    color: #1a365d;
    margin-bottom: 15px;
    position: relative;
    text-align: start;
    padding-bottom: 15px;
    line-height: 1.2;
    word-wrap: break-word;
}


.history-intro {
    font-size: 1.1rem;
    color: #047857;
    font-weight: 600;
    margin-bottom: 25px;
    line-height: 1.4;
    word-wrap: break-word;
}

.history-description {
    margin-bottom: 25px;
}

.history-description p {
    font-size: 1rem;
    line-height: 1.6;
    color: #4a5568;
    margin-bottom: 15px;
    text-align: left;
    word-wrap: break-word;
}

.history-description p:last-child {
    margin-bottom: 0;
}

.history-cta {
    font-style: italic;
    color: #2d3748;
    font-weight: 500;
    border-left: 3px solid #047857;
    padding-left: 15px;
    margin: 20px 0 !important;
    line-height: 1.6;
    word-wrap: break-word;
}


.history-image-placeholder {
    width: 100%;
    height: 350px;
    padding: 0 45px;
    /*background: linear-gradient(90deg, #062c65, #09367b 50%, #062c65);*/
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    position: relative;
}

.history-image-placeholder img {
    width: 100%;
    height: auto;
    max-height: 400px;
    object-fit: contain;
    display: block;
    border-radius: 8px;
}

/* Mobile First - Default styles are mobile */

/* Tablet and larger */
@media (min-width: 640px) {
    .history-section {
        padding: 0px 0;
    }

    .history-title {
        font-size: 2.2rem;
    }

    .history-intro {
        font-size: 1.15rem;
    }

    .history-description p {
        font-size: 1.05rem;
    }

    .history-button .btn {
        padding: 14px 36px;
    }
}

/* Desktop */
@media (min-width: 992px) {
    .history-section {
        padding: 80px 0;
    }

    .history-content {
        flex-wrap: nowrap;
        gap: 60px;
    }

    .history-text {
        flex: 1 1 60%;
        order: 0;
    }

    .history-image {
        flex: 1 1 40%;
        order: 1; /* Image on the right on desktop */
    }

    .history-title {
        font-size: 2.5rem;
        margin-bottom: 20px;
    }

    .history-intro {
        font-size: 1.25rem;
        margin-bottom: 30px;
    }

    .history-description {
        margin-bottom: 30px;
    }

    .history-description p {
        font-size: 1.1rem;
        margin-bottom: 20px;
        text-align: justify;
    }

    .history-cta {
        padding-left: 20px;
        margin: 25px 0 !important;
    }


}

/* Large Desktop */
@media (min-width: 1200px) {
    .history-section .container {
        /*padding: 0 40px;*/
    }

    .history-content {
        gap: 80px;
    }

    .history-title {
        font-size: 2.5rem;
    }
}

/* Very small mobile devices */
@media (max-width: 360px) {
    .history-section {
        padding: 40px 0;
    }

    .history-section .container {
        padding: 0 15px;
    }

    .history-title {
        font-size: 1.8rem;
    }

    .history-intro {
        font-size: 1rem;
    }

    .history-description p {
        font-size: 0.95rem;
        line-height: 1.5;
    }

    .history-button .btn {
        width: 100%;
        padding: 12px 20px;
        font-size: 0.95rem;
    }

    .history-cta {
        padding-left: 12px;
        margin: 15px 0 !important;
    }
}

@media (max-height: 500px) and (orientation: landscape) {
    .history-section {
        padding: 40px 0;
    }

    .history-content {
        flex-direction: row;
        gap: 30px;
    }

    .history-text,
    .history-image {
        flex: 1 1 50%;
    }
}

.history-content {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.8s ease forwards;
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}


.iv-values-section {
    background: #F7FAFC;
    padding: 80px 0;
}

.iv-values-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 24px;
}

.iv-values-title {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 600;
    color: #1A365D;
    margin-bottom: 40px;
}

.iv-values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.iv-value-item {
    background: white;
    border-radius: 12px;
    padding: 40px 30px;
    text-align: center;
    border: 1px solid #E2E8F0;
    transition: all 0.3s ease;
}

.iv-value-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.iv-value-icon {
    width: 64px;
    height: 64px;
    background: rgba(66, 153, 225, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #4299E1;
    font-size: 28px;
    margin: 0 auto 20px;
}

.iv-value-item h3 {
    font-size: 20px;
    font-weight: 600;
    color: #1A365D;
    margin-bottom: 15px;
}

.iv-value-item p {
    color: #4A5568;
    line-height: 1.6;
}

.iv-directions-section {
    padding: 80px 0;
}

.iv-directions-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 24px;
}

.iv-directions-title {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 600;
    color: #1A365D;
    margin-bottom: 20px;
}

.iv-directions-subtitle {
    text-align: center;
    color: #4A5568;
    font-size: 18px;
    max-width: 800px;
    margin: 0 auto 60px;
    line-height: 1.6;
}

.iv-direction-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid #E2E8F0;
    margin-bottom: 40px;
}

.iv-direction-header {
    padding: 40px;
    text-align: center;
}

.iv-direction-icon {
    font-size: 48px;
    margin-bottom: 20px;
}

.iv-direction-header h3 {
    font-size: 28px;
    font-weight: 600;
    color: #1A5568;
    margin-bottom: 15px;
}

.iv-direction-lead {
    color: #4A5568;
    font-size: 18px;
    line-height: 1.6;
    max-width: 600px;
    margin: 0 auto;
}

.iv-services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    padding: 0 40px 40px;
}

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

.iv-service-card {
    background: #F7FAFC;
    border-radius: 8px;
    padding: 30px;
    text-align: center;
}

.iv-service-icon {
    font-size: 32px;
    margin-bottom: 20px;
}

.iv-service-card h4 {
    font-size: 18px;
    font-weight: 600;
    color: #1A365D;
    margin-bottom: 10px;
}

.iv-service-card p {
    color: #4A5568;
    line-height: 1.5;
}

.iv-direction-cta {
    text-align: center;
    padding: 0 40px 40px;
}

.iv-geography-section {
    padding: 80px 0;
    background: #F7FAFC;
}

.iv-geography-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 24px;
}

.iv-geography-title {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 600;
    color: #1A365D;
    margin-bottom: 40px;
}

.iv-map-placeholder {
    height: 400px;
    background: white;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #4A5568;
    font-size: 18px;
    margin-bottom: 40px;
    border: 1px solid #E2E8F0;
}

.iv-partners-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 24px;
    margin-bottom: 40px;
}

.iv-partner-logo {
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    background: white;
    border-radius: 8px;
    border: 1px solid #E2E8F0;
}

.iv-partner-logo img {
    max-height: 100px;
}

.iv-geography-cta {
    text-align: center;
}

.iv-contact-section {
    padding: 80px 0;
}

.iv-contact-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.iv-contact-title {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 600;
    color: #1A365D;
    margin-bottom: 60px;
}

.iv-contact-quote {
    text-align: center;
    font-size: 20px;
    color: #2C5282;
    font-style: italic;
    margin-bottom: 60px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.iv-contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

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

    .history-image-placeholder {
        display: none;
    }

    .history-title {
        text-align: center;
    }
}

.iv-contact-info h3 {
    font-size: 20px;
    font-weight: 600;
    color: #1A365D;
    margin-bottom: 30px;
}

.iv-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 30px;
}

.iv-contact-icon {
    width: 48px;
    height: 48px;
    background: rgba(66, 153, 225, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    flex-shrink: 0;
}

.iv-contact-details h4 {
    font-size: 18px;
    font-weight: 600;
    color: #1A365D;
    margin-bottom: 5px;
}

.iv-contact-details p {
    color: #4A5568;
    line-height: 1.6;
}

.iv-social-links {
    display: flex;
    gap: 16px;
    margin-top: 30px;
}

.iv-social-link {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #F7FAFC;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #4299E1;
    text-decoration: none;
    transition: all 0.3s ease;
}

.iv-social-link:hover {
    background: #4299E1;
    color: white;
    transform: translateY(-3px);
}

.iv-contact-form .iv-form-group {
    margin-bottom: 24px;
}

.iv-contact-form .iv-form-input {
    width: 100%;
    padding: 16px;
    border: 1px solid #E2E8F0;
    border-radius: 8px;
    font-size: 16px;
    transition: all 0.3s ease;
}

.iv-contact-form .iv-form-input:focus {
    outline: none;
    border-color: #4299E1;
    box-shadow: 0 0 0 3px rgba(66, 153, 225, 0.1);
}

.iv-contact-form .iv-form-textarea {
    min-height: 120px;
    resize: vertical;
}

@media (max-width: 768px) {
    .iv-values-grid {
        grid-template-columns: 1fr;
    }

    .iv-values-section,
    .iv-directions-section,
    .iv-geography-section,
    .iv-contact-section {
        padding: 60px 0;
    }

    .iv-services-grid {
        padding: 0 20px 40px;
    }
}
.featured-brand {
    padding: 80px 0;
    background: #ffffff;
}

.featured-brand-title {
    text-align: center;
    font-size: 2.4rem;
    font-weight: 600;
    color: #1A365D;
    margin-bottom: 40px;
}

.featured-brand-card {
    display: grid;
    grid-template-columns: 320px 1fr;
    gap: 50px;
    align-items: start;
    background: #ffffff;
    border: 1px solid #E2E8F0;
    border-radius: 16px;
    padding: 40px;
    box-shadow: 0 16px 40px rgba(0, 0, 0, .06);
}

.featured-brand-media {
    background: #F7FAFC;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #E2E8F0;
}

.featured-brand-media img {
    width: 100%;
    max-width: 320px;
    height: auto;
    object-fit: contain;
    display: block;
}

.featured-brand-name {
    font-size: 2rem;
    font-weight: 700;
    color: #1A365D;
    margin-bottom: 10px;
}

.featured-brand-subtitle {
    text-transform: uppercase;
    letter-spacing: .10em;
    font-size: 14px;
    color: #718096;
    margin-bottom: 22px;
}

.featured-brand-desc {
    color: #4A5568;
    font-size: 1.05rem;
    line-height: 1.75;
}

.featured-brand-desc p {
    margin-bottom: 16px;
}

/* Responsive */
@media (max-width: 992px) {
    .featured-brand-card {
        grid-template-columns: 1fr;
        padding: 28px;
        gap: 28px;
    }

    .featured-brand-media img {
        max-width: 260px;
    }
}
