@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@500;600;800&display=swap');

*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html, body {
    width: 100%;
    max-width: 100%;
    overflow-x: hidden; 
    margin: 0;
    padding: 0;
}

img {
    max-width: 100%;
    height: auto;
}

body {
    font-family: 'Manrope', sans-serif;
    background-color: #ffffff;
    min-height: 100vh;
    overflow-x: hidden;
    position: relative;
}

.bg-shape {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    width: 42%;
    background-color: #FDF4ED;
    clip-path: polygon(25% 0, 100% 0, 100% 100%, 0% 100%);
    z-index: -1;
}

header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 35px 8%;
    position: relative;
    z-index: 10;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 20px;
    font-weight: 800;
    color: #111;
    letter-spacing: -0.3px;
    text-transform: uppercase;
}

nav ul {
    display: flex;
    list-style: none;
    gap: 45px;
}

nav a {
    text-decoration: none;
    color: #333;
    font-size: 15px;
    font-weight: 600;
}

.icons {
    display: flex;
    align-items: center;
    gap: 25px;
}

.icons svg {
    width: 22px;
    height: 22px;
    cursor: pointer;
    fill: none;
    stroke: #111;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}

h1 {
    font-size: 96px;
    font-weight: 800;
    color: #261B14;
    line-height: 1.05;
    letter-spacing: -2px;
    margin-bottom: 45px;
}

.buttons {
    display: flex;
    gap: 20px;
}

.btn {
    padding: 18px 40px;
    border-radius: 40px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
}

.btn-primary {
    background: #DD7A3B;
    color: #ffffff;
    border: 2px solid #DD7A3B;
}

.btn-secondary {
    background: #ffffff;
    color: #DD7A3B;
    border: 1px solid #F1E5DC;
}

.hero {
    display: flex;
    align-items: flex-start; 
    padding: 80px 8% 0; 
    min-height: calc(100vh - 80px);
    position: relative;
    z-index: 1;
}

.hero-content {
    flex: 1;
    max-width: 550px;
    padding-top: 5vh; 
}

.hero-image {
    flex: 1;
    display: flex;
    justify-content: flex-end; 
    align-items: center; 
    position: relative;
}

.hero-image img {
    max-width: 100%;
    height: auto;
    transform: translateX(12%); 
    z-index: 2;
    margin-top: -300px; 
}

.logo-img {
    width: 56px; 
    height: 56px; 
    object-fit: contain; 
}

@media (max-width: 1024px) {
    h1 {
        font-size: 72px;
    }
    nav ul {
        gap: 20px;
    }
    .hero-image img {
        max-width: 110%;
        transform: translateX(0);
    }
}

.mobile-menu {
    position: absolute;
    top: 70px; 
    width: 100%; 
    background-color: #ffffff;
    border-radius: 20px; 
    padding: 30px 20px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.1); 
    opacity: 0;
    visibility: hidden;
    transform: translateY(-20px);
    transition: all 0.3s ease-in-out;
    z-index: 999;
}

.mobile-menu.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.mobile-menu ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    padding: 0;
    margin: 0;
}

.mobile-menu li {
    width: 100%;
    border-bottom: 1px solid #f0eaef; 
}

.mobile-menu li:last-child {
    border-bottom: none;
}

.mobile-menu a {
    text-decoration: none;
    color: #111;
    font-size: 22px;
    font-weight: 600;
    display: block;
    padding: 20px 10px;
}

.icons svg:last-child {
    display: none;
}

.product-cards-section {
    width: 100%;
    padding: 80px 4%;
}

.cards-container {
    display: flex;
    justify-content: space-between;
    width: 100%;
    gap: 40px; 
}

.product-card {
    background-color: #ffffff;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    padding: 60px 40px;
    flex: 1; 
    text-align: center;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.icon-badge {
    position: absolute;
    top: -30px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-color: #ffffff;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    display: flex;
    justify-content: center;
    align-items: center;
}

.icon-badge svg {
    width: 30px;
    height: 30px;
    fill: #f2743a;
}

.card-content h3.main-title {
    font-size: 22px;
    font-weight: 700;
    color: #333333;
    margin-bottom: 12px;
}

.card-content h4.sub-title {
    font-size: 16px;
    font-weight: 600;
    color: #333333;
    margin-bottom: 20px;
}

.card-content p.description {
    font-size: 15px;
    color: #777777;
    line-height: 1.6;
    margin-bottom: 30px;
    max-width: 300px;
    margin-left: auto;
    margin-right: auto;
}

.card-content a.details-link {
    font-size: 15px;
    color: #f2743a;
    text-decoration: none;
    font-weight: 600;
}

.card-content a.details-link:hover {
    text-decoration: underline;
}

@media (max-width: 900px) {
    .cards-container {
        flex-direction: column;
        align-items: center;
        gap: 60px;
    }
    
    .product-card {
        width: 100%;
        max-width: 500px; 
    }
    
    .store-approach-container {
        flex-direction: column;
        gap: 50px;
        text-align: center;
    }

    .store-approach-img-wrapper img {
        max-width: 450px;
    }

    .store-approach-actions {
        justify-content: center;
    }
}

.popular-products {
    padding: 80px 20px;
    text-align: center;
}

.container {
    max-width: 1100px;
    margin: 0 auto;
}

.section-title {
    font-size: 32px;
    font-weight: 700;
    color: #111;
    margin-bottom: 15px;
}

.section-subtitle {
    font-size: 14px;
    color: #777;
    line-height: 1.6;
    max-width: 520px;
    margin: 0 auto 50px auto;
}

.products-grid {
    display: flex;
    flex-direction: column;
    gap: 30px;
    margin-bottom: 50px;
}

.products-row-top {
    display: flex;
    gap: 30px;
}

.products-row-bottom {
    display: flex;
    gap: 30px;
}

.image-wrapper {
    width: 100%;
    background-color: #FDF4ED;
    border-radius: 12px;
    padding: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 20px;
}

.products-row-top .image-wrapper {
    aspect-ratio: 1.5;
}

.products-row-bottom .image-wrapper {
    aspect-ratio: 1.1;
}

.image-wrapper img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.product-title {
    font-size: 18px;
    font-weight: 700;
    color: #222;
    margin-bottom: 8px;
}

.product-link {
    font-size: 13px;
    color: #DD7A3B;
    text-decoration: none;
    font-weight: 600;
}

.product-link:hover {
    text-decoration: underline;
}

.btn-outline {
    display: inline-block;
    padding: 12px 30px;
    border: 1px solid #F1E5DC;
    border-radius: 4px;
    color: #DD7A3B;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s ease;
    cursor: pointer;
}

.btn-outline:hover {
    border-color: #DD7A3B;
}

.hidden-row {
    display: none;
}

.hidden-row.show {
    display: flex;
    animation: fadeInDown 0.5s ease forwards;
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 800px) {
    .products-row-top, 
    .products-row-bottom,
    .hidden-row.show {
        flex-direction: column;
    }
    
    .products-row-top .image-wrapper,
    .products-row-bottom .image-wrapper {
        aspect-ratio: 1.2;
    }
}

.store-approach-section {
    font-family: 'Manrope', sans-serif;
    padding: 100px 20px;
    background-color: #ffffff;
    box-sizing: border-box;
}

.store-approach-section * {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

.store-approach-container {
    max-width: 1150px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 70px;
}

.store-approach-img-wrapper {
    flex: 1;
    display: flex;
    justify-content: center;
}

.store-approach-img-wrapper img {
    width: 100%;
    max-width: 550px;
    height: auto;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    border-radius: 38% 62% 63% 37% / 41% 44% 56% 59%;
}

.store-approach-content {
    flex: 1;
}

.store-approach-label {
    color: #DD7A3B;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 13px;
    display: block;
    margin-bottom: 15px;
}

.store-approach-title {
    font-size: 40px;
    font-weight: 800;
    color: #222;
    margin-bottom: 25px;
    line-height: 1.15;
}

.store-approach-desc {
    color: #777;
    line-height: 1.7;
    font-size: 15px;
    margin-bottom: 40px;
}

.store-approach-actions {
    display: flex;
    gap: 20px;
}

.store-approach-btn-main {
    background: #DD7A3B;
    color: #ffffff;
    padding: 15px 35px;
    border-radius: 40px;
    text-decoration: none;
    font-weight: 700;
    font-size: 15px;
    border: 2px solid #DD7A3B;
    transition: all 0.3s ease;
}

.store-approach-btn-main:hover {
    background: #c6672c;
    border-color: #c6672c;
}

.store-approach-btn-alt {
    background: #ffffff;
    color: #DD7A3B;
    padding: 15px 35px;
    border-radius: 40px;
    text-decoration: none;
    font-weight: 700;
    font-size: 15px;
    border: 1px solid #F1E5DC;
    transition: all 0.3s ease;
}

.store-approach-btn-alt:hover {
    border-color: #DD7A3B;
}

@media (max-width: 500px) {
    .store-approach-title {
        font-size: 32px;
    }
    
    .store-approach-actions {
        flex-direction: column;
        gap: 15px;
    }
    
    .store-approach-btn-main, .store-approach-btn-alt {
        width: 100%;
        text-align: center;
    }
}

.clothing-showcase {
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 20px;
    text-align: center;
}

.clothing-showcase h2 {
    font-size: 32px;
    font-weight: 500;
    margin-bottom: 60px;
    color: #222;
}

.cards-container {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    margin-bottom: 50px;
}

@media (min-width: 768px) {
    .cards-container {
        grid-template-columns: repeat(3, 1fr);
    }
}

.card {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.img-wrapper {
    width: 250px;
    height: 230px;
    overflow: hidden;
    border-radius: 45% 45% 35% 35% / 55% 55% 45% 45%;
    margin-bottom: 30px;
    background-color: #f5f5f5;
}

.img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.card h3 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 15px;
    color: #333;
    line-height: 1.4;
    max-width: 280px;
}

.card p {
    font-size: 14px;
    color: #888;
    line-height: 1.6;
    margin-bottom: 25px;
    max-width: 320px;
}

.card a {
    color: #e27b43;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: color 0.3s ease;
}

.card a:hover {
    color: #c46532;
}

.catalog-btn {
    background-color: #e27b43;
    color: #ffffff;
    border: none;
    padding: 15px 45px;
    border-radius: 30px;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.catalog-btn:hover {
    background-color: #c46532;
}

.testimonial-section {
    width: 100%;
    max-width: 1000px;
    padding: 40px 20px;
    text-align: center;
    margin: 0 auto;
}

.testimonial-section h2 {
    font-size: 32px;
    font-weight: 600;
    margin-bottom: 60px;
    color: #222;
}

.slider-wrapper {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    max-width: 700px;
    margin: 0 auto;
}

.cards-stack {
    position: relative;
    width: 100%;
    height: 350px;
}

.review-card {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    max-width: 600px;
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.04);
    padding: 40px 50px;
    text-align: center;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    opacity: 0;
    visibility: hidden;
    z-index: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border: 1px solid #f0f0f0;
}

.review-card.active {
    opacity: 1;
    visibility: visible;
    z-index: 3;
    transform: translate(-50%, -50%);
}

.review-card.stack-1 {
    opacity: 0.6;
    visibility: visible;
    z-index: 2;
    transform: translate(calc(-50% - 15px), calc(-50% - 15px));
    box-shadow: 0 10px 25px rgba(0,0,0,0.02);
}

.review-card.stack-2 {
    opacity: 0.3;
    visibility: visible;
    z-index: 1;
    transform: translate(calc(-50% - 30px), calc(-50% - 30px));
    box-shadow: none;
    border-color: transparent;
}

.quote-icon {
    position: absolute;
    font-size: 80px;
    color: #f0f0f0;
    font-family: Georgia, serif;
    line-height: 1;
}

.quote-left {
    top: 20px;
    left: 20px;
}

.quote-right {
    bottom: -10px;
    right: 20px;
    transform: rotate(180deg);
}

.avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 20px;
    position: relative;
    z-index: 2;
}

.review-text {
    font-size: 15px;
    color: #888;
    line-height: 1.7;
    margin-bottom: 20px;
    position: relative;
    z-index: 2;
}

.stars {
    margin-bottom: 15px;
    position: relative;
    z-index: 2;
}

.stars svg {
    width: 18px;
    height: 18px;
}

.star-filled {
    fill: #e27b43;
}

.star-empty {
    fill: #e0e0e0;
}

.reviewer-name {
    font-size: 16px;
    font-weight: 600;
    color: #333;
    margin-bottom: 5px;
    position: relative;
    z-index: 2;
}

.reviewer-role {
    font-size: 13px;
    color: #aaa;
    position: relative;
    z-index: 2;
}

.slider-controls {
    position: absolute;
    right: -50px;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.control-btn {
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.3s ease, transform 0.2s ease;
}

.control-btn svg {
    width: 24px;
    height: 24px;
    stroke: #333;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
    fill: none;
}

.control-btn:hover {
    transform: scale(1.1);
}

.control-btn.down svg {
    stroke: #aaa;
}

.control-btn.down:hover svg {
    stroke: #333;
}

.contact-section {
    width: 100%;
    padding: 60px 20px;
}

.banner-container {
    background-color: #318ffd;
    max-width: 1000px;
    margin: 0 auto;
    border-radius: 8px;
    padding: 60px 50px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
    transform: rotate(-1.5deg);
    box-shadow: 0 10px 30px rgba(49, 143, 253, 0.2);
}

.banner-text {
    flex: 1;
    color: #ffffff;
    max-width: 500px;
}

.banner-text h2 {
    font-size: 28px;
    font-weight: 500;
    margin-bottom: 15px;
    line-height: 1.3;
}

.banner-text p {
    font-size: 14px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
}

.banner-form {
    flex: 1;
    max-width: 400px;
    display: flex;
    height: 50px;
    border-radius: 4px;
    overflow: hidden;
    background-color: #ffffff;
}

.banner-form input {
    flex: 1;
    border: none;
    padding: 0 20px;
    font-size: 14px;
    color: #333;
    outline: none;
}

.banner-form input::placeholder {
    color: #a0a0a0;
}

.banner-form button {
    background-color: #e27b43;
    color: #ffffff;
    border: none;
    padding: 0 30px;
    font-size: 15px;
    font-weight: 500;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.banner-form button:hover {
    background-color: #c46532;
}

@media (max-width: 480px) {
    .banner-form {
        flex-direction: column;
        height: auto;
        border-radius: 0;
        background-color: transparent;
        gap: 10px;
    }

    .banner-form input {
        height: 50px;
        border-radius: 4px;
    }

    .banner-form button {
        height: 50px;
        border-radius: 4px;
    }
}

.footer-section {
    background-color: #0f0b09; 
    color: #ffffff;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    position: relative;
    padding: 80px 20px 40px; 
    margin-top: 50px; 
    clip-path: polygon(0 15%, 50% 0, 100% 15%, 100% 100%, 0 100%);
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    align-items: center;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 30px; 
}

.footer-links a {
    color: #a0a0a0; 
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #e27b43; 
}

.footer-links.left-links {
    text-align: left;
}

.footer-links.right-links {
    text-align: right;
}

.contact-info {
    color: #a0a0a0;
    font-size: 14px;
}

.contact-email {
    color: #e27b43; 
    text-decoration: none;
}

.footer-center {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.footer-logo {
    width: 50px;
    height: auto;
    margin-bottom: 10px;
}

.footer-title {
    font-size: 24px;
    font-weight: 600;
    letter-spacing: 1px;
    margin-bottom: 30px;
}

.social-icons {
    display: flex;
    gap: 15px;
}

.social-btn {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    background-color: #d8d8d8;
    border-radius: 50%;
    color: #0f0b09;
    text-decoration: none;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.social-btn:hover {
    background-color: #ffffff;
    transform: translateY(-3px);
}

.social-btn svg {
    width: 20px;
    height: 20px;
    fill: currentColor;
}

@media (max-width: 768px) {
    header {
        padding: 20px 5%;
    }
    
    nav {
        display: none;
    }

 
    .icons {
        display: flex !important;
        flex-direction: row !important; 
        align-items: center !important;
        gap: 20px !important;
    }

    .icons > svg:first-child {
        display: none !important;
    }

    .cart-wrapper {
        display: flex !important;
        align-items: center !important;
        margin: 0 !important;
    }

    .icons > svg:last-child {
        display: block !important;
        margin: 0 !important;
    }
    
    .hero {
        flex-direction: column;
        padding: 20px 5% 40px;
        text-align: center;
        height: auto;
    }

    .hero-content {
        display: contents; 
    }

    h1 {
        font-size: 72px;
        margin-top: 20px;
        margin-bottom: 0; 
        order: 1;
        width: 100%; 
        margin-left: auto; 
        margin-right: auto;
    }

    .hero-image {
        width: 100%;
        justify-content: center;
        order: 2;
        height: auto;
    }

    .hero-image img {
        max-width: 130%;
        max-height: 80vh; 
        transform: none;
        margin-top: 20px; 
    }

    .buttons {
        order: 3;
        flex-direction: column;
        width: 100%;
        gap: 15px;
        z-index: 5;
    }

    .btn {
        width: 100%;
        text-align: center;
    }

    .bg-shape {
        width: 100%;
        height: 50%;
        top: auto;
        bottom: 0;
        clip-path: polygon(0 20%, 100% 0, 100% 100%, 0% 100%);
    }

    .mobile-menu {
        display: block !important; 
        position: absolute;
        top: 80px;
        right: 5%;
        width: 90%;
        background-color: #ffffff;
        border-radius: 20px;
        padding: 10px 20px;
        box-shadow: 0 15px 35px rgba(0,0,0,0.1);
        z-index: 999;
        opacity: 0;
        visibility: hidden;
        transform: translateY(-20px);
        transition: all 0.3s ease-in-out;
    }

    .mobile-menu.active {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }

    .product-cards-section {
        padding: 30px 15px;
    }

    .product-cards-section .cards-container {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 20px;
    }

    .product-cards-section .product-card {
        width: calc(50% - 10px);
        min-width: 280px;
    }

    .popular-products .section-title,
    .popular-products .section-subtitle {
        text-align: center;
    }

    .products-grid {
        display: flex;
        flex-direction: column;
        align-items: center; 
        gap: 30px; 
    }

    .products-row-top,
    .products-row-bottom {
        display: flex;
        flex-direction: column; 
        align-items: center; 
        gap: 30px; 
        width: 100%;
    }

    .product-card {
        width: 90%; 
        max-width: 550px; 
        text-align: center; 
    }

    .clothing-showcase {
        padding: 40px 15px; 
        text-align: center; 
    }

    .clothing-showcase h2 {
        font-size: 26px; 
        margin-bottom: 30px;
    }

    .clothing-showcase .cards-container {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 25px; 
    }

    .clothing-showcase .card {
        width: 100%;
        max-width: 320px; 
        padding: 15px; 
    }

    .clothing-showcase .img-wrapper img {
        width: 100%;
        max-width: 680px; 
        height: auto;
        margin: 0 auto; 
        display: block;
    }

    .clothing-showcase .card h3 {
        font-size: 20px; 
        margin: 15px 0 10px;
    }

    .clothing-showcase .card p {
        font-size: 14px; 
        line-height: 1.4;
        margin-bottom: 15px;
    }

    .clothing-showcase .card a {
        font-size: 14px;
    }

    .clothing-showcase .catalog-btn {
        font-size: 16px;
        padding: 12px 24px;
        width: 100%;
        max-width: 280px; 
        margin-top: 30px;
    }

    .slider-wrapper {
        flex-direction: column;
    }
    
    .slider-controls {
        position: static;
        flex-direction: row;
        transform: none;
        margin-top: 20px;
    }

    .review-card {
        padding: 30px 20px;
        width: 90%;
    }

    .quote-icon {
        font-size: 50px;
    }
    
    .cards-stack {
        height: 380px;
    }

    .banner-container {
        flex-direction: column;
        padding: 40px 30px;
        transform: rotate(0);
        text-align: center;
    }

    .banner-text {
        max-width: 100%;
    }

    .banner-form {
        width: 100%;
        max-width: 100%;
    }

    .footer-section {
        clip-path: polygon(0 5%, 50% 0, 100% 5%, 100% 100%, 0 100%); 
        padding-top: 60px;
    }

    .footer-container {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }

    .footer-links.left-links,
    .footer-links.right-links {
        text-align: center;
        gap: 20px;
    }

    .footer-center {
        order: -1; 
    }
}

@media (max-width: 768px) {
    .icons {
        display: flex !important;
        flex-direction: row !important;
        align-items: center !important;
        gap: 20px !important;
    }
    .search-icon {
        display: none !important;
    }
    .burger-icon {
        display: block !important;
    }

    .cart-wrapper {
        display: flex !important;
        align-items: center !important;
    }
}
.mobile-menu.active {
        opacity: 1 !important;
        visibility: visible !important;
        transform: translateY(0) !important;
        pointer-events: auto !important; 
    }

@media (max-width: 1024px) {
    h1 {
        font-size: 84px;
        margin-bottom: 30px;
    }
    
    nav ul {
        gap: 20px;
    }

    .hero {
        min-height: 65vh; 
        padding-top: 80px;
        padding-bottom: 100px;
        align-items: center;
    }

    .hero-content {
        padding-top: 0; 
        max-width: 450px; 
    }
    .hero-image img {
        max-width: 135%;
        margin-top: 0; 
    }

    .btn {
        padding: 20px 45px; 
        font-size: 16px;
    }
}
@media (min-width: 769px) and (max-width: 1024px) {
    h1 {
        font-size: 84px; 
        margin-bottom: 30px;
    }
    
    nav ul {
        gap: 20px;
    }

    .hero {
        min-height: 65vh; 
        padding-top: 80px;
        padding-bottom: 100px; 
        align-items: center;
    }

    .hero-content {
        padding-top: 0; 
        max-width: 450px; 
    }

    .hero-image img {
        max-width: 135%; 
        margin-top: 0; 
        transform: translateX(15%); 
    }

    .btn {
        padding: 20px 45px; 
        font-size: 16px;
    }
}
    .hidden-row {
        display: none !important; 
    }


    .hidden-row.show {
        display: flex !important; 
        flex-direction: column !important; 
        align-items: center !important;
        gap: 30px !important;
        width: 100% !important;
    }

@media (min-width: 769px) {
    #extraProducts.show {
        display: flex !important; 
        flex-direction: row !important; 
        flex-wrap: wrap !important; 
        justify-content: center !important; 
        gap: 30px !important; 
        width: 100% !important;
    }

    #extraProducts .product-card {
        width: calc(45% - 15px) !important; 
        max-width: 280px !important; 
        margin: 0 !important; 
    }

    #extraProducts .image-wrapper {
        height: 220px !important; 
    }
    
    #extraProducts .product-title {
        font-size: 15px !important; 
    }
}

@media (max-width: 768px) {
    #extraProducts.show {
        display: flex !important; 
        flex-direction: column !important;
        align-items: center !important;
        gap: 20px !important;
        width: 100% !important;
    }
    
    #extraProducts .product-card {
        width: 100% !important;
        max-width: 320px !important;
        margin: 0 auto !important; 
    }
}


.clothing-showcase .img-wrapper {
    border-radius: 50% !important; /* Робимо блок круглим */
    overflow: hidden !important; /* Обрізаємо все, що вилазить за межі круга */
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    /* Можеш змінити цей розмір (ширину та висоту) під потреби дизайну */
    width: 250px !important; 
    height: 250px !important; 
    background-color: #f5f5f5; /* Світлий фон під фото */
}

.clothing-showcase .img-wrapper img {
    width: 100% !important; /* Зображення займає всю ширину круга */
    height: 100% !important; /* Зображення займає всю висоту круга */
    object-fit: cover !important; /* ГОЛОВНА МАГІЯ: заповнює круг без спотворень */
    object-position: center !important; /* Центруємо фото */
}


