* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Arial', sans-serif;
}

body {
    background-color: #fcfcfc;
    color: #000;
    overflow-x: hidden;
}

.top-banner {
    background-color: #000;
    color: #fff;
    text-align: center;
    padding: 9px 20px;
    font-size: 14px;
    position: relative;
}

.top-banner a {
    color: #fff;
    text-decoration: underline;
    font-weight: bold;
}

.close-banner {
    position: absolute;
    right: 5%;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    color: #fff;
    cursor: pointer;
    font-size: 16px;
}

.header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 24px 5%;
    background-color: #fff;
}

.logo {
    font-size: 32px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: -1px;
}

.nav-links a {
    color: #000;
    text-decoration: none;
    margin-right: 24px;
    font-size: 16px;
}

.nav-links .arrow {
    font-size: 10px;
    vertical-align: middle;
}
.search-bar {
    display: flex;
    align-items: center;
    background-color: #f0f0f0;
    padding: 12px 16px;
    border-radius: 62px;
    width: 40%;
}

.search-icon {
    margin-right: 12px;
    color: #666;
}

.search-bar input {
    border: none;
    background: none;
    outline: none;
    width: 100%;
    font-size: 16px;
}

.user-actions {
    display: flex;
    gap: 18px;
}

.user-actions .icon {
    font-size: 22px;
    text-decoration: none;
    color: #000;
}

.hero-section {
    background-color: #f2f0f1;
    width: 100%;
    min-height: calc(100vh - 150px);
    display: flex;
    align-items: flex-end;
    overflow: hidden;
}

.hero-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    width: 100%;
    padding: 0 5%;
}

.hero-content {
    flex: 1;
    padding-top: 60px;
    padding-bottom: 60px;
    z-index: 2;
}

.hero-content h1 {
    font-size: 64px;
    font-weight: 900;
    line-height: 1.0;
    margin-bottom: 25px;
    letter-spacing: -1px;
}

.hero-desc {
    font-size: 16px;
    color: #616161;
    line-height: 1.5;
    margin-bottom: 35px;
    max-width: 550px;
}

.cta-button {
    background-color: #000;
    color: #fff;
    border: none;
    padding: 16px 54px;
    border-radius: 62px;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    transition: background-color 0.3s;
    margin-bottom: 48px;
}

.cta-button:hover {
    background-color: #333;
}

.stats-container {
    display: flex;
    gap: 32px;
}

.stat-item {
    border-right: 1px solid rgba(0, 0, 0, 0.1);
    padding-right: 32px;
}

.stat-item.border-none {
    border: none;
}

.stat-item h2 {
    font-size: 40px;
    font-weight: bold;
}

.stat-item p {
    font-size: 15px;
    color: #616161;
    margin-top: 4px;
}

.hero-images {
    flex: 1;
    position: relative;
    display: flex;
    justify-content: flex-end;
    align-items: flex-end;
}

.main-models-img {
    max-width: 100%;
    height: auto;
    display: block;
    object-fit: contain;
}

.sparkle {
    position: absolute;
    color: #000;
    user-select: none;
}

.sparkle-small {
    font-size: 40px;
    left: 10%;
    top: 45%;
}

.sparkle-large {
    font-size: 70px;
    right: 0%;
    top: 15%;
}

.brands-ticker {
    background-color: #000;
    padding: 40px 0;
    width: 100%;
}

.brands-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 5%;
    flex-wrap: wrap;
    gap: 20px;
}

.brands-container span {
    color: #fff;
    font-size: 28px;
    font-weight: bold;
    letter-spacing: 2px;
    font-family: 'Georgia', serif;
}

@media (max-width: 992px) {
    .burger-menu {
        display: block;
    }

    .nav-links, .search-bar {
        display: none;
    }

    .mobile-search {
        display: block;
    }

    .logo {
        font-size: 22px;
    }

    .hero-container {
        flex-direction: column;
        padding: 0 16px;
    }

    .hero-content {
        padding: 40px 0 0 0;
    }

    .hero-content h1 {
        font-size: 36px;
        line-height: 1.1;
        margin-bottom: 20px;
    }

    .hero-desc {
        font-size: 14px;
        margin-bottom: 24px;
    }

    .cta-button {
        width: 100%;
        padding: 16px 0;
        text-align: center;
        margin-bottom: 30px;
    }
    .stats-container {
        display: flex;
        flex-direction: column;  
        align-items: center;      
        gap: 28px;               
        text-align: center;        
        margin-bottom: 40px;       
        width: 100%;
    }

    .stat-item {
        border: none !important;   
        padding: 0 !important;     
        margin: 0 !important;
        width: 100%;
    }
    .stat-item h2 {
        font-size: 32px;           
        font-weight: bold;
        margin-bottom: 4px;       
        color: #000000;
    }
    .stat-item p {
        font-size: 14px;           
        color: #666666;          
        margin: 0;
    }

.hero-images {
        display: flex;          
        width: 100%;
        justify-content: center;
        gap: 12px;              
        margin-top: 30px;
        position: relative;    
    }

    .main-models-img {
        width: calc(50% - 6px);
        max-width: 100%;
        height: auto;
        object-fit: cover;      
    }

    .brands-ticker {
        padding: 30px 0;
    }

    .sparkle {
        display: none !important;
    }

    .brands-container {
        justify-content: center;
        gap: 24px 40px;
    }

    .brands-container span {
        font-size: 22px;
    }
}
.burger-menu {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 24px;
    height: 18px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 101; 
}

.burger-menu span {
    width: 100%;
    height: 2px;
    background-color: #000000; 
    transition: all 0.3s ease;
}

@media (max-width: 992px) {
    .header {
        display: flex;
        justify-content: space-between;
        align-items: center;
        position: relative;
    }
    .burger-menu {
        display: flex;
        margin-left: 15px; 
    }

    .nav-links {
        display: none; 
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: #ffffff;
        padding: 20px;
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
        z-index: 100;
    }

    .nav-links.active {
        display: flex;
    }

    .nav-links a {
        padding: 12px 0;
        width: 100%;
        border-bottom: 1px solid #f0f0f0;
    }

    .burger-menu.active span:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }
    .burger-menu.active span:nth-child(2) {
        opacity: 0;
    }
    .burger-menu.active span:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }
}

.new-arrivals {
    max-width: 1240px;
    margin: 60px auto;
    padding: 0 16px;
    font-family: sans-serif;
}

.section-title {
    font-size: 40px;
    font-weight: 900;
    text-align: center;
    text-transform: uppercase;
    margin-bottom: 50px;
    color: #000000;
}

.product-card {
    display: flex;
    flex-direction: column;
}

.product-img-wrapper {
    background-color: #F0EEED;
    border-radius: 20px;
    aspect-ratio: 1 / 1;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    margin-bottom: 16px;
}

.product-img {
    max-width: 100%;
    height: auto;
    object-fit: contain;
}

.product-name {
    font-size: 18px;
    font-weight: bold;
    color: #000000;
    margin: 0 0 8px 0;
}

.product-rating {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 8px;
}

.stars {
    color: #FFC633;
    font-size: 18px;
}

.rating-value {
    font-size: 14px;
    color: #666666;
}

.product-price {
    display: flex;
    align-items: center;
    gap: 10px;
}

.current-price {
    font-size: 24px;
    font-weight: bold;
}

.old-price {
    font-size: 24px;
    color: #666663;
    text-decoration: line-through;
    opacity: 0.4;
}

.discount {
    background-color: rgba(255, 51, 51, 0.1); 
    color: #FF3333;
    padding: 6px 14px;
    border-radius: 100px;
    font-size: 12px;
    font-weight: bold;
}

.products-desktop-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.products-mobile-slider-wrapper {
    display: none;
}

@media (max-width: 992px) {
    .section-title {
        font-size: 28px;
        margin-bottom: 30px;
    }

    .products-desktop-grid {
        display: none;
    }

    .products-mobile-slider-wrapper {
        display: block;
        position: relative;
        padding: 0 45px; 
    }

    .products-slider {
        width: 100%;
        overflow: hidden;
    }

    .product-name {
        font-size: 16px;
    }

    .slider-arrow {
        position: absolute;
        top: 35%;
        transform: translateY(-50%);
        font-size: 28px;
        font-weight: bold;
        color: #000000;
        cursor: pointer;
        user-select: none;
        z-index: 10;
        padding: 10px;
    }

    .prev-arrow { left: 5px; }
    .next-arrow { right: 5px; }
}

.style-browse {
    padding: 0 16px;
    margin: 60px auto;
    max-width: 1240px;
    font-family: sans-serif;
}

.style-container {
    background-color: #F0EEED;
    border-radius: 40px;
    padding: 70px 64px;
}

.style-title {
    font-size: 48px;
    font-weight: 900;
    text-align: center;
    text-transform: uppercase;
    margin-bottom: 64px;
    color: #000000;
}

.style-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.style-card {
    position: relative;
    height: 289px;
    border-radius: 20px;
    overflow: hidden;
    background-color: #ffffff;
}

.card-w30 {
    flex: 1 1 calc(35% - 10px);
}

.card-w60 {
    flex: 1 1 calc(65% - 10px);
}

.style-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
}

.style-name {
    position: absolute;
    top: 25px;
    left: 36px;
    font-size: 36px;
    font-weight: bold;
    color: #000000;
    z-index: 2;
}
@media (max-width: 992px) {
    .style-browse {
        padding: 0 16px;
        margin: 40px auto;
    }

    .style-container {
        border-radius: 20px;
        padding: 40px 24px;
    }

    .style-title {
        font-size: 32px;
        margin-bottom: 28px;
        line-height: 1.2;
    }

    .style-grid {
        display: flex;
        flex-direction: column;
        gap: 16px;
    }

    .style-card {
        flex: 1 1 100% !important;
        width: 100%;
        height: 190px;
    }

    .style-name {
        top: 24px;
        left: 24px;
        font-size: 24px;
    }
}

.reviews-section {
    max-width: 1240px;
    margin: 80px auto;
    padding: 0 16px;
    font-family: sans-serif;
    position: relative;
    overflow: hidden;
}

.reviews-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 40px;
}

.reviews-title {
    font-size: 48px;
    font-weight: 900;
    text-transform: uppercase;
    color: #000000;
    margin: 0;
    line-height: 1.1;
}

.reviews-arrows {
    display: flex;
    gap: 15px;
}

.review-arrow {
    width: 44px;
    height: 44px;
    font-size: 24px;
    font-weight: bold;
    color: #000000;
    cursor: pointer;
    user-select: none;
    display: flex;
    align-items: center;
    justify-content: center;
}

.reviews-slider {
    width: 100%;
    overflow: visible;
}

.review-card {
    background: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 20px;
    padding: 28px 32px;
    box-sizing: border-box;
    height: auto;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.review-stars {
    color: #FFC633;
    font-size: 22px;
    letter-spacing: 2px;
}

.review-author {
    font-size: 20px;
    font-weight: bold;
    color: #000000;
    display: flex;
    align-items: center;
    gap: 8px;
}

.verified-icon {
    background-color: #01AB31;
    color: #ffffff;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    font-size: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
}

.review-text {
    font-size: 16px;
    line-height: 1.5;
    color: rgba(0, 0, 0, 0.6);
    margin: 0;
}

@media (max-width: 992px) {
    .reviews-section {
        margin: 50px auto;
    }

    .reviews-title {
        font-size: 32px;
    }

    .review-card {
        padding: 24px;
    }

    .review-author {
        font-size: 18px;
    }

    .review-text {
        font-size: 14px;
    }
}

.newsletter-banner {
  background-color: #000000;
  border-radius: 20px;
  padding: 36px 64px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: 'Integral CF', 'Arial Black', sans-serif; 
  max-width: 1200px;
  margin: 0 auto;
  box-sizing: border-box;
}

.newsletter-title {
  color: #ffffff;
  font-size: 36px;
  font-weight: 900;
  line-height: 1.1;
  margin: 0;
  text-transform: uppercase;
  letter-spacing: -0.5px;
  max-width: 550px;
}

.newsletter-form {
  display: flex;
  flex-direction: column;
  gap: 14px;
  width: 100%;
  max-width: 350px;
}

.input-wrapper {
  position: relative;
  display: flex;
  align-items: center;
}

.email-icon {
  position: absolute;
  left: 16px;
  width: 20px;
  height: 20px;
  color: #8c8c8c;
  pointer-events: none;
}

.newsletter-form input[type="email"] {
  width: 100%;
  padding: 14px 16px 14px 48px; /* Відступ зліва для іконки */
  border: none;
  border-radius: 50px;
  font-size: 14px;
  font-family: Arial, sans-serif;
  color: #000000;
  outline: none;
  box-sizing: border-box;
}

.newsletter-form input[type="email"]::placeholder {
  color: #a3a3a3;
}

.submit-btn {
  width: 100%;
  padding: 14px 16px;
  border: none;
  border-radius: 50px;
  background-color: #ffffff;
  color: #000000;
  font-size: 14px;
  font-weight: bold;
  font-family: Arial, sans-serif;
  cursor: pointer;
  transition: background-color 0.2s ease;
}

.submit-btn:hover {
  background-color: #e6e6e6; 
}

@media (max-width: 992px) {
  .newsletter-banner {
    flex-direction: column;
    align-items: flex-start;
    padding: 32px 24px;
    gap: 24px;
  }
  
  .newsletter-title {
    font-size: 28px;
    max-width: 100%;
  }
  
  .newsletter-form {
    max-width: 100%;
  }
  
  .mobile-break {
    display: none; 
  }
}


.main-footer {
    background-color: #f0f0f0;
    padding: 0 16px 40px 16px;
    font-family: Arial, sans-serif;
    position: relative;
    margin-top: 140px; 
}

.main-footer .newsletter-banner {
    position: relative;
    transform: translateY(-50%);
    margin-bottom: -30px;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 30px;
    padding-top: 20px;
}

.footer-brand-column {
    flex: 2 1 300px;
    max-width: 350px;
}

.footer-logo {
    font-size: 28px;
    font-weight: 900;
    color: #000000;
    text-transform: uppercase;
    margin-bottom: 16px;
    font-family: 'Arial Black', sans-serif;
}

.footer-about {
    font-size: 14px;
    color: #666666;
    line-height: 1.6;
    margin-bottom: 20px;
}

.social-icons {
    display: flex;
    gap: 12px;
}

.social-link {
    width: 28px;
    height: 28px;
    background-color: #ffffff;
    border: 1px solid #dddddd;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: #000000;
    font-size: 13px;
    transition: background-color 0.2s, color 0.2s;
}

.social-link:hover {
    background-color: #000000;
    color: #ffffff;
}

.footer-links-column {
    flex: 1 1 180px;
    display: flex;
    flex-direction: column;
}

.footer-links-column h3 {
    font-size: 14px;
    font-weight: bold;
    letter-spacing: 1px;
    color: #000000;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.footer-links-column a {
    font-size: 14px;
    color: #666666;
    text-decoration: none;
    margin-bottom: 12px;
    transition: color 0.2s;
}

.footer-links-column a:hover {
    color: #000000;
}

.footer-divider {
    border: 0;
    height: 1px;
    background-color: #dddddd;
    max-width: 1200px;
    margin: 40px auto 20px auto;
}

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.copyright {
    font-size: 13px;
    color: #666666;
    margin: 0;
}

.payment-methods {
    display: flex;
    gap: 8px;
}

.pay-card {
    background-color: #ffffff;
    border: 1px solid #e0e0e0;
    border-radius: 4px;
    padding: 4px 10px;
    font-size: 11px;
    font-weight: bold;
    color: #000000;
    font-style: italic;
    min-width: 45px;
    text-align: center;
    box-shadow: 0 1px 2px rgba(0,0,0,0.03);
}

@media (max-width: 768px) {
    .main-footer {
        margin-top: 140px; 
        padding: 0 16px 30px 16px;
        text-align: center; 
    }

    .main-footer .newsletter-banner {
        flex-direction: column;
        align-items: center;
        gap: 16px;
        padding: 24px;
        transform: translateY(-50%);
        margin-bottom: -20px;
    }

    .newsletter-title {
        font-size: 24px;
        line-height: 1.2;
        text-align: center;
    }

    .newsletter-form {
        flex-direction: column;
        gap: 12px;
        width: 100%;
    }

    .footer-container {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 24px;
    }

    .footer-brand-column {
        flex: 1 1 100%;
        max-width: 100%;
        margin-bottom: 10px;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .footer-about {
        text-align: center;
        max-width: 90%; 
    }

    .social-icons {
        justify-content: center;
        margin-bottom: 10px;
    }
    .footer-links-column {
        flex: 1 1 100%;
        width: 100%;
        align-items: center; 
        margin-bottom: 10px;
    }

    .footer-links-column h3 {
        margin-bottom: 12px;
        text-align: center;
    }

    .footer-links-column a {
        text-align: center;
        margin-bottom: 8px;
    }

    .footer-bottom {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 16px;
    }

    .payment-methods {
        justify-content: center;
    }
}
.search-bar {
    position: relative;
    display: flex;
    align-items: center;
    width: 100%;
    max-width: 400px; 
    background: transparent !important;
    padding: 0 !important;          
}

.search-bar input[type="text"] {
    width: 100%;
    padding: 12px 16px 12px 42px !important; 
    font-size: 16px;
    color: #333;
    background-color: #f2f2f2 !important;   
    border: none !important;                 
    border-radius: 50px !important;         
    box-sizing: border-box !important;
    outline: none !important;
}

.search-icon {
    position: absolute;
    left: 18px; 
    width: 14px;
    height: 14px;
    border: 2px solid #000000 !important; 
    border-radius: 50%;
    display: inline-block;
    box-sizing: border-box;
    z-index: 2;
}

.search-icon::after {
    content: "";
    position: absolute;
    right: -4px;
    bottom: -4px;
    width: 2px;
    height: 6px;
    background-color: #000000 !important; 
    transform: rotate(-45deg);
    display: block;
}
@media (max-width: 768px) {
    .search-bar {
        display: none !important;
    }
}
.burger-menu-wrapper {
    display: none !important;
}

@media (max-width: 768px) {
    .header-container {
        display: flex !important;
        justify-content: space-between !important;
        align-items: center !important;
        width: 100% !important;
        padding: 10px 15px !important;
        box-sizing: border-box !important;
    }

    .logo {
        margin-right: auto !important;
    }

    .header-icons {
        display: flex !important;
        align-items: center !important;
        gap: 15px !important;
    }

    .burger-menu-wrapper {
        display: block !important;
    }

    .burger-btn {
        display: flex !important;
        flex-direction: column !important;
        justify-content: space-between !important;
        width: 24px !important;
        height: 18px !important;
        background: transparent !important;
        border: none !important;
        cursor: pointer !important;
        padding: 0 !important;
        z-index: 1001 !important;
        position: relative !important;
    }

    .burger-btn span {
        width: 100% !important;
        height: 2.5px !important;
        background-color: #000000 !important;
        transition: all 0.3s ease !important;
    }

    .burger-btn.active span:nth-child(1) {
        transform: translateY(7.5px) rotate(45deg) !important;
    }

    .burger-btn.active span:nth-child(2) {
        opacity: 0 !important;
    }

    .burger-btn.active span:nth-child(3) {
        transform: translateY(-7.5px) rotate(-45deg) !important;
    }

    .burger-menu {
        display: flex !important;
        position: fixed !important;
        top: 0 !important;
        right: -100% !important;
        left: auto !important;
        width: 80% !important;
        max-width: 300px !important;
        height: 40vh !important;
        background-color: #ffffff !important;
        box-shadow: -2px 0 5px rgba(0,0,0,0.1) !important;
        transition: right 0.3s ease !important;
        padding: 80px 20px 20px 20px !important;
        box-sizing: border-box !important;
        flex-direction: column !important;
        gap: 20px !important;
        z-index: 1000 !important;
    }

    .burger-menu.active {
        right: 0 !important;
    }

    .burger-menu a {
        color: #000000 !important;
        text-decoration: none !important;
        font-size: 18px !important;
        font-weight: 500 !important;
        padding: 10px 0 !important;
        border-bottom: 1px solid #f2f2f2 !important;
        text-align: left !important;
    }
}
.brands-ticker {
    background-color: #000000;
    padding: 25px 0;
    overflow: hidden; 
    width: 100%;
    display: flex;
    align-items: center;
}

.brands-track {
    display: flex;
    width: max-content;
    animation: ticker-move 20s linear infinite; 
}

.brands-group {
    display: flex;
    align-items: center;
    justify-content: space-around;
    gap: 60px;        
    padding-right: 60px;
}


.brands-group span {
    white-space: nowrap;
    display: inline-block;
}

@keyframes ticker-move {
    0% {
        transform: translate3d(0, 0, 0);
    }
    100% {
        transform: translate3d(-50%, 0, 0); 
    }
}

.brand-polo { 
    font-family: 'Cinzel', serif !important; 
    color: #ffffff; 
    font-size: 26px; 
    font-weight: 700; 
    letter-spacing: 2px; 
}

.brand-nike { 
    font-family: 'Impact', sans-serif !important; 
    color: #ffffff; 
    font-size: 36px; 
    letter-spacing: 3px; 
    font-style: italic; 
    text-transform: uppercase;
}

.brand-ea7 { 
    font-family: 'Orbitron', sans-serif !important; 
    color: #ffffff; 
    font-size: 24px; 
    font-weight: 700; 
    letter-spacing: 6px; 
    text-transform: uppercase;
}

.brand-stone { 
    font-family: 'Courier Prime', monospace !important; 
    color: #ffffff; 
    font-size: 22px; 
    font-weight: 700; 
}

.brand-boss { 
    font-family: 'Montserrat', sans-serif !important; 
    color: #ffffff; 
    font-size: 32px; 
    font-weight: 800; 
    letter-spacing: -1px; 
}

.brand-jordan { 
    font-family: 'Bebas Neue', sans-serif !important; 
    color: #ffffff; 
    font-size: 38px; 
    font-weight: 400; 
    letter-spacing: 4px; 
}

@media (max-width: 768px) {
    .brands-ticker { padding: 15px 0; }
    .brands-group { gap: 40px; padding-right: 40px; }
    
    .brand-polo { font-size: 18px; }
    .brand-nike { font-size: 26px; }
    .brand-ea7 { font-size: 16px; }
    .brand-stone { font-size: 18px; }
    .brand-boss { font-size: 22px; }
    .brand-jordan { font-size: 25px; }
}

.hero-brands-section {
    position: relative;
    width: 100%;
    height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    font-family: Arial, sans-serif;
    color: #ffffff;
    text-align: center;
}

.hero-slider {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1.5s ease-in-out;
}

.slide.active {
    opacity: 1;
}

.glass-decoration {
    position: absolute;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 24px;
    z-index: 2;
    pointer-events: none;
}

.glass-top-right {
    width: 120px;
    height: 120px;
    top: 10%;
    right: 8%;
    transform: rotate(15deg);
}

.glass-mid-left {
    width: 90px;
    height: 90px;
    top: 40%;
    left: 5%;
    border-radius: 50%;
}

.glass-bottom-left {
    width: 140px;
    height: 140px;
    bottom: 5%;
    left: 10%;
    transform: rotate(-10deg);
}

.hero-content {
    position: relative;
    z-index: 3;
    max-width: 800px;
    padding: 20px;
}

.sparkle-icon {
    width: 50px;
    height: 50px;
    margin: 0 auto 15px;
    animation: spinAndPulse 4s infinite linear;
}

@keyframes spinAndPulse {
    0% { transform: rotate(0deg) scale(1); }
    50% { transform: rotate(180deg) scale(1.15); }
    100% { transform: rotate(360deg) scale(1); }
}

.hero-title {
    font-size: 80px;
    font-weight: 900;
    margin: 0 0 10px 0;
    letter-spacing: 4px;
}

.hero-subtitle {
    font-size: 28px;
    font-weight: 300;
    margin: 0 0 15px 0;
}

.hero-description {
    font-size: 16px;
    color: #e0e0e0;
    margin: 0 0 35px 0;
}

.hero-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background-color: #ffffff;
    color: #000000;
    text-decoration: none;
    padding: 16px 36px;
    border-radius: 30px;
    font-size: 16px;
    font-weight: bold;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

.hero-btn:hover {
    background-color: #f0f0f0;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.3);
}

.hero-btn .arrow {
    font-size: 18px;
    transition: transform 0.2s ease;
}

.hero-btn:hover .arrow {
    transform: translateX(4px);
}

.scroll-down {
    margin-top: 50px;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 2px;
    opacity: 0.6;
}

.scroll-down-container {
    margin-top: 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px; 
    z-index: 3;
}

.scroll-down-text {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 2px;
    opacity: 0.7;
}

.bouncing-arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    animation: bounce 1.6s infinite ease-in-out; 
}

@keyframes bounce {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(8px); 
    }
}

.brands-catalog-section {
    max-width: 1200px;
    margin: 60px auto;
    padding: 0 20px;
    box-sizing: border-box;
}
.brands-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr); 
    gap: 20px;
}

.brand-card {
    height: 380px;
    background-color: #1e2330; 
    background-size: cover;
    background-position: center;
    border-radius: 24px;
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    position: relative;
    overflow: hidden;
    box-sizing: border-box;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, sans-serif;
    transition: transform 0.3s cubic-bezier(0.25, 1, 0.5, 1);
}

.brand-card:hover {
    transform: scale(1.01);
}

.brand-title {
    color: #ffffff;
    font-size: 56px;
    font-weight: 800;
    margin: 0;
    line-height: 1;
    letter-spacing: -1px;
}

.brand-subtitle {
    color: #ffffff;
    font-size: 18px;
    font-weight: 700;
    margin: 12px 0 6px 0;
    line-height: 1.2;
}

.brand-tagline {
    color: #a4a9b6; 
    font-size: 14px;
    font-weight: 400;
    margin: 0;
    max-width: 90%;
}
.brand-footer-meta {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
}

.brand-counter-block {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.counter-label {
    color: #8a909f;
    font-size: 14px;
    font-weight: 500;
}

.counter-value {
    color: #ffffff;
    font-size: 38px; 
    font-weight: 700;
    line-height: 1;
}

.brand-action-arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    text-decoration: none;
    transition: transform 0.2s ease;
}

.brand-action-arrow svg {
    width: 100%;
    height: 100%;
}

.brand-card:hover .brand-action-arrow {
    transform: translateX(6px);
}

@media (max-width: 900px) {
    .brands-grid {
        grid-template-columns: 1fr;
    }
    .brand-card {
        height: 320px;
        padding: 30px;
    }
    .brand-title {
        font-size: 42px;
    }
    .counter-value {
        font-size: 32px;
    }
}

.brand-not-found-section {
    width: 100%;
    background-color: #ffffff;
    padding: 80px 20px; 
    text-align: center;
    box-sizing: border-box;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, sans-serif;
}

.not-found-container {
    max-width: 600px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.not-found-title {
    color: #000000;
    font-size: 36px;
    font-weight: 800; 
    margin: 0 0 12px 0;
    letter-spacing: -0.5px;
}

/* Сірий підзаголовок */
.not-found-subtitle {
    color: #7a7a7a; 
    font-size: 18px;
    font-weight: 400;
    margin: 0 0 32px 0;
}

.catalog-all-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background-color: #000000; 
    color: #ffffff;
    text-decoration: none;
    padding: 16px 36px;
    border-radius: 50px; 
    font-size: 15px;
    font-weight: 600;
    transition: background-color 0.2s ease, transform 0.2s ease;
}

.catalog-all-btn .btn-arrow {
    width: 18px;
    height: 18px;
    transition: transform 0.2s ease;
}

.catalog-all-btn:hover {
    background-color: #1a1a1a;
}

.catalog-all-btn:hover .btn-arrow {
    transform: translateX(4px);
}

@media (max-width: 480px) {
    .brand-not-found-section {
        padding: 60px 15px;
    }
    .not-found-title {
        font-size: 28px;
    }
    .not-found-subtitle {
        font-size: 15px;
    }
    .catalog-all-btn {
        width: 100%; 
        justify-content: center;
        padding: 14px 24px;
    }
}

        .search-form {
            position: relative;
            display: flex;
            align-items: center;
        }
        .search-btn {
            background: none;
            border: none;
            position: absolute;
            left: 12px;
            cursor: pointer;
            font-size: 14px;
            z-index: 5;
        }
        .search-form input {
            padding-left: 35px !important; 
        }

        .pricedrop-info-section {
            width: 100%;
            min-height: calc(100vh - 80px);
            background-color: #ffffff; 
            position: relative;
            display: flex;
            align-items: center;
            justify-content: center;
            overflow: hidden; 
            box-sizing: border-box;
            font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
            padding: 40px 20px;
        }

        .pricedrop-info-container {
            max-width: 900px;
            text-align: center;
            position: relative;
            z-index: 3; 
        }
        .pricedrop-brand-name {
            color: #000000;
            font-size: 110px; 
            font-weight: 900; 
            margin: 0 0 16px 0;
            letter-spacing: -3px; 
            text-transform: uppercase;
            line-height: 0.95;
        }

        .pricedrop-brand-desc {
            color: #000000;
            font-size: 26px;
            font-weight: 500;
            line-height: 1.4;
            margin: 0 auto;
            max-width: 700px;
            letter-spacing: -0.5px;
        }

        .bg-circle {
            position: absolute;
            border: 1px solid #e5e5e5; 
            border-radius: 50%;
            pointer-events: none;
            z-index: 1;
        }

        .circle-top-right {
            width: 550px;
            height: 550px;
            top: 5%;
            right: -10%;
        }

        .circle-bottom-left {
            width: 380px;
            height: 380px;
            bottom: 5%;
            left: -5%;
        }

@media (max-width: 768px) {
    .pricedrop-info-section {
        padding: 60px 16px;
        min-height: auto;
        position: relative; 
    }

    .pricedrop-info-container {
        width: 100%;
        position: relative;
        z-index: 5; 
    }

    .pricedrop-brand-name {
        font-size: 11vw;
        white-space: nowrap;
        letter-spacing: -1px;
        margin: 0 0 12px 0;
    }

    .pricedrop-brand-desc {
        font-size: 16px;
        line-height: 1.4;
        max-width: 100%;
        padding: 0;
    }


    .bg-circle {
        position: absolute;
        border: 1px solid #e5e5e5;
        border-radius: 50%;
        pointer-events: none;
        box-sizing: border-box;
        aspect-ratio: 1 / 1; 
        flex-shrink: 0;
    }

    .circle-top-right {
        width: 280px;
        height: auto; 
        top: -20px;
        right: -40px;
        left: auto;
        bottom: auto;
    }

    .circle-bottom-left {
        width: 190px;
        height: auto;
        bottom: -30px;
        left: -30px;
        right: auto;
        top: auto;
    }
}
.our-mission-section {
    width: 100%;
    background-color: #000000; 
    padding: 120px 20px; 
    display: flex;
    align-items: center;
    justify-content: center;
    box-sizing: border-box;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

.mission-container {
    max-width: 950px;
    text-align: center;
}

.mission-title {
    color: #ffffff;
    font-size: 64px; 
    font-weight: 900;
    margin: 0 0 28px 0;
    letter-spacing: -1.5px;
    line-height: 1.1;
}

.mission-text {
    color: #ffffff;
    font-size: 22px; 
    font-weight: 400;
    line-height: 1.6; 
    margin: 0;
    letter-spacing: -0.2px;
    opacity: 0.95; 
}

@media (max-width: 768px) {
    .our-mission-section {
        padding: 80px 20px;
    }

    .mission-title {
        font-size: 38px; 
        margin-bottom: 20px;
        letter-spacing: -0.5px;
    }

    .mission-text {
        font-size: 16px; 
        line-height: 1.5;
    }
}
.stats-counter-section {
    width: 100%;
    background-color: #ffffff; 
    padding: 60px 20px;
    box-sizing: border-box;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, sans-serif;
}

.stats-container {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
}

.stat-item {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.stat-icon-wrapper {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
    perspective: 1000px;
}

.stat-icon {
    width: 100%;
    height: 100%;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.stat-item:hover .stat-icon {
    transform: rotateY(360deg);
}

.stat-number {
    color: #000000;
    font-size: 52px;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 8px;
    letter-spacing: -1px;
}

.stat-label {
    color: #666666; 
    font-size: 16px;
    font-weight: 500;
}

@media (max-width: 768px) {
    .stats-container {
        flex-direction: column; 
        gap: 45px;
        padding: 20px 0;
    }
    
    .stat-number {
        font-size: 44px;
    }
    
    .stat-label {
        font-size: 15px;
    }
}

.values-section {
    max-width: 1200px;
    margin: 60px auto;
    padding: 0 20px;
    box-sizing: border-box;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

.values-main-title {
    color: #000000;
    font-size: 36px;
    font-weight: 800;
    text-align: center;
    margin: 0 0 40px 0;
    letter-spacing: -0.5px;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.value-card {
    background: linear-gradient(135deg, #191b20 0%, #222731 100%); 
    border-radius: 16px; 
    padding: 40px;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    min-height: 250px;
    transition: transform 0.3s cubic-bezier(0.25, 1, 0.5, 1);
}

.value-card:hover {
    transform: translateY(-4px);
}

.value-icon-wrapper {
    width: 42px;
    height: 42px;
    margin-bottom: 35px;
    perspective: 1000px;
}

.value-icon {
    width: 100%;
    height: 100%;
    transition: transform 0.7s cubic-bezier(0.4, 0, 0.2, 1); 
}

.value-card:hover .value-icon {
    transform: rotateY(360deg);
}

.value-title {
    color: #ffffff;
    font-size: 24px;
    font-weight: 700;
    margin: 0 0 12px 0;
    letter-spacing: -0.3px;
}

.value-desc {
    color: #a0a5b1; 
    font-size: 14px;
    line-height: 1.5;
    margin: 0;
    font-weight: 400;
}

@media (max-width: 768px) {
    .values-grid {
        grid-template-columns: 1fr; 
        gap: 16px;
    }

    .value-card {
        padding: 30px;
        min-height: auto; 
    }

    .values-main-title {
        font-size: 28px;
        margin-bottom: 24px;
    }

    .value-icon-wrapper {
        margin-bottom: 25px;
    }

    .value-title {
        font-size: 20px;
    }
}

.history-timeline-section {
    width: 100%;
    background-color: #ffffff; 
    padding: 80px 20px;
    box-sizing: border-box;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

.history-main-title {
    color: #000000;
    font-size: 48px; 
    font-weight: 800;
    text-align: center;
    margin: 0 0 60px 0;
    letter-spacing: -1px;
}

.timeline-container {
    max-width: 900px;
    margin: 0 auto;
    position: relative; 
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.timeline-line {
    position: absolute;
    left: 45px; 
    top: 40px;
    bottom: 40px;
    width: 2px;
    background-color: #e5e5e5; 
    z-index: 1;
}

.timeline-item {
    display: flex;
    align-items: flex-start;
    position: relative;
    z-index: 2; 
}

.timeline-badge-wrapper {
    flex-shrink: 0;
    margin-right: 32px; 
}

.timeline-badge {
    width: 90px;
    height: 90px;
    background-color: #000000;
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    font-weight: 700;
    letter-spacing: -0.5px;
}

.timeline-content {
    flex: 1;
    padding-top: 12px;
}

.timeline-title {
    color: #000000;
    font-size: 22px;
    font-weight: 700;
    margin: 0 0 10px 0;
    letter-spacing: -0.3px;
}

.timeline-text {
    color: #555555; 
    font-size: 15px;
    line-height: 1.6;
    margin: 0;
}

@media (max-width: 768px) {
    .history-main-title {
        font-size: 32px;
        margin-bottom: 40px;
    }

    .timeline-line {
        left: 30px; 
        top: 30px;
        bottom: 30px;
    }

    .timeline-badge-wrapper {
        margin-right: 16px;
    }

    .timeline-badge {
        width: 64px;
        height: 64px;
        font-size: 14px;
    }

    .timeline-content {
        padding-top: 6px;
    }

    .timeline-title {
        font-size: 18px;
        margin-bottom: 6px;
    }

    .timeline-text {
        font-size: 14px;
        line-height: 1.5;
    }
}

.contact-section {
    width: 100%;
    background-color: #ffffff; 
    padding: 60px 20px;
    box-sizing: border-box;
    display: flex;
    justify-content: center;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

.contact-card {
    width: 100%;
    max-width: 1100px;
    background: linear-gradient(135deg, #090b0e 0%, #13171f 100%); 
    border-radius: 24px; 
    padding: 60px 80px; 
    box-sizing: border-box;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.contact-main-title {
    color: #ffffff;
    font-size: 42px;
    font-weight: 800;
    text-align: center;
    margin: 0 0 50px 0;
    letter-spacing: -0.5px;
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    column-gap: 80px;
    row-gap: 35px;
}

.contact-item {
    position: relative;
    padding-left: 20px; 
}

.contact-item::before {
    content: "";
    position: absolute;
    left: 0;
    top: 4px;
    bottom: 4px;
    width: 2px; 
    background-color: #ffffff;
    opacity: 0.9;
}

.contact-label {
    color: #888e9b; 
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    margin-bottom: 8px;
    letter-spacing: 0.5px;
}

.contact-value {
    color: #ffffff;
    font-size: 18px;
    font-weight: 500;
    line-height: 1.4;
}

.contact-link {
    color: #ffffff;
    text-decoration: none;
    transition: opacity 0.2s ease;
}

.contact-link:hover {
    opacity: 0.8;
}

.instagram-highlight {
    font-weight: 700;
}

@media (max-width: 768px) {
    .contact-card {
        padding: 40px 24px; 
        border-radius: 16px;
    }

    .contact-main-title {
        font-size: 28px;
        margin-bottom: 35px;
    }

    .contact-grid {
        grid-template-columns: 1fr;
        row-gap: 28px;
    }

    .contact-value {
        font-size: 16px;
    }
}
.hero-images {
    width: 45% !important; 
    height: 100% !important;
    display: flex !important;
    justify-content: center !important;
    align-items: flex-end !important; 
    position: relative !important;
}

.images-wrapper {
    display: flex !important;
    justify-content: space-around !important; 
    align-items: flex-end !important;   
    width: 95% !important;       
    height: 120% !important;          
    position: relative !important;
    bottom: -10% !important;        
}

.main-models-img {
    width: 65% !important;         
    height: 100% !important;          
    object-fit: contain !important; 
    transform: none !important;      
    bottom: 0 !important;            
}

.main-models-img:nth-child(2) {
    bottom: 0 !important;
}

@media (max-width: 768px) {
    .hero-images {
        width: 100% !important;
        height: 400px !important;
        display: flex !important;
        justify-content: center !important;
        align-items: flex-end !important;
        margin-top: 20px !important;
    }

    .main-models-img {
        width: 58% !important;
        height: 100% !important;
        object-fit: contain !important;
    }
}
@media (max-width: 768px) {
    .stats-container {
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        gap: 20px !important;
        margin-bottom: 30px !important;
    }

    .stat-item {
        text-align: center !important;
        width: 100% !important;
        border: none !important;
    }

    .stat-item h2 {
        font-size: 2rem !important;
        margin-bottom: 5px !important;
    }

    .stat-item p {
        font-size: 1rem !important;
        margin: 0 !important;
    }

    .hero-images {
        display: flex !important;
        justify-content: center !important;
        gap: 10px !important;
        width: 100% !important;
        max-width: 100% !important;
        padding: 0 15px !important;
        box-sizing: border-box !important;
    }

    .main-models-img {
        width: 58% !important;
        height: auto !important;
        object-fit: contain !important;
    }
}




