
.top-announcement-bar {
    background: linear-gradient(90deg, #2f7c8a 0%, #3a8a98 100%);
    color: white;
    padding: 12px 0;
    text-align: center;
    font-size: 0.95rem;
    position: relative;
    z-index: 1001;
}

.announcement-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    padding: 0 2rem;
}

.announcement-text {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.announcement-text .highlight {
    color: #ff6b35;
    font-weight: 600;
}

.announcement-btn {
    background: rgba(0,0,0,0.3);
    color: white;
    border: 1px solid rgba(255,255,255,0.3);
    padding: 6px 20px;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.9rem;
	    margin-left: 10px;
}

.announcement-btn:hover {
    background: rgba(0,0,0,0.5);
    border-color: rgba(255,255,255,0.5);
}


.logo-section {
    text-align: center;
    padding: 1.5rem 0 1rem;
    background: white;
}

.main-logo {
    display: inline-block;
}

.main-logo a {
    display: inline-block;
    text-decoration: none;
}

.logo-image {
    max-width: 100%;
    height: auto;
    max-height: 120px; 
    display: block;
    transition: opacity 0.3s ease;
}

.logo-image:hover {
    opacity: 0.85;
}


@media (max-width: 768px) {
    .logo-image {
        max-height: 80px;
    }
}

@media (min-width: 769px) and (max-width: 1024px) {
    .logo-image {
        max-height: 100px;
    }
}


.logo-title {
    font-size: 3.5rem;
    font-weight: 900;
    letter-spacing: 8px;
    margin: 0;
    line-height: 1;
}

.logo-jp {
    color: #d32f2f;
}

.logo-carpets {
    color: #333333;
}

.logo-subtitle {
    font-size: 1.1rem;
    color: #333333;
    margin: 8px 0 0;
    letter-spacing: 3px;
}

.logo-tagline {
    font-size: 0.95rem;
    color: #666666;
    margin: 5px 0 0;
    font-weight: 500;
}


.main-navigation {
    background: #f5f1e8;
    border-top: 1px solid #e0d5c1;
    border-bottom: 1px solid #e0d5c1;
    padding: 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center; 
    padding: 0 2rem;
    position: relative; 
}

.nav-links {
    display: flex;
    gap: 0;
    align-items: center;
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-links li {
    margin: 0;
}

.nav-links a {
    display: block;
    padding: 20px 28px; 
    color: #333333;
    font-size: 0.95rem;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    white-space: nowrap; 
}

.nav-links a:hover,
.nav-links a.active {
    background: rgba(47, 124, 138, 0.08);
    color: #2f7c8a;
}

.nav-links a.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: #2f7c8a;
}


.nav-tools {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    position: absolute; 
    right: 2rem; 
    top: 50%; 
    transform: translateY(-50%); 
}

.social-icons {
    display: flex;
    gap: 12px;
}

.social-icon {
    width: 24px;
    height: 24px;
    color: #333333;
    transition: all 0.3s ease;
}

.social-icon:hover {
    color: #2f7c8a;
    transform: translateY(-2px);
}

.language-selector {
    display: flex;
    align-items: center;
    gap: 5px;
    padding: 6px 12px;
    background: white;
    border: 1px solid #d0d0d0;
    border-radius: 4px;
    cursor: pointer;
    font-size: 0.9rem;
    color: #333333;
    transition: all 0.3s ease;
}

.language-selector:hover {
    border-color: #2f7c8a;
    background: #f9f9f9;
}


.hero-banner {
    width: 100%;
    overflow: hidden;
    position: relative;
    margin: 0;
    background: #f5f1e8; 
}

.hero-banner-image {
    width: 100%;
    height: auto; 
    max-height: 800px; 
    object-fit: contain; 
    display: block;
    margin: 0 auto; 
}


@media (max-width: 768px) {
    .hero-banner-image {
        max-height: 500px;
    }
}

@media (min-width: 769px) and (max-width: 1024px) {
    .hero-banner-image {
        max-height: 650px;
    }
}


.floating-buttons {
    position: fixed;
    right: 30px;
    bottom: 30px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    z-index: 999;
}

.floating-btn {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
    transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    position: relative;
}

.floating-btn:hover {
    transform: scale(1.1) translateY(-3px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.3);
}

.floating-btn:active {
    transform: scale(0.95);
}

.btn-chat {
    background: #25d366;
}

.btn-email {
    background: #ff4757;
}

.floating-btn svg,
.floating-btn::before {
    color: white;
    font-size: 28px;
}


.btn-chat::before {
    content: '💬';
    font-size: 28px;
}

.btn-email::before {
    content: '✉️';
    font-size: 26px;
}


.wix-btn {
    background: #2f7c8a;
    color: white;
    border: none;
    border-radius: 50px;
    padding: 14px 40px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(47, 124, 138, 0.3);
    text-decoration: none;
    display: inline-block;
}

.wix-btn:hover {
    background: #267080;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(47, 124, 138, 0.4);
}

.wix-btn-outline {
    background: transparent;
    color: #2f7c8a;
    border: 2px solid #2f7c8a;
}

.wix-btn-outline:hover {
    background: #2f7c8a;
    color: white;
}


.section-header-wix {
    text-align: center;
    margin-bottom: 3rem;
}

.section-header-wix h2 {
    font-size: 2.5rem;
    font-weight: 300;
    color: #333333;
    margin-bottom: 1rem;
    letter-spacing: 1px;
}

.section-header-wix p {
    font-size: 1.1rem;
    color: #666666;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}


.download-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin: 3rem 0;
}

.download-btn {
    background: #2f7c8a;
    color: white;
    padding: 16px 50px;
    border-radius: 50px;
    text-decoration: none;
    font-size: 1.05rem;
    font-weight: 500;
    transition: all 0.3s ease;
    box-shadow: 0 4px 10px rgba(47, 124, 138, 0.2);
    border: none;
    cursor: pointer;
}

.download-btn:hover {
    background: #267080;
    transform: translateY(-3px);
    box-shadow: 0 6px 16px rgba(47, 124, 138, 0.3);
}


.wix-image-hover {
    position: relative;
    overflow: hidden;
    border-radius: 0;
}

.wix-image-hover img {
    transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.wix-image-hover:hover img {
    transform: scale(1.08);
}

/*.wix-image-hover::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, transparent 0%, rgba(0,0,0,0.3) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
}*/

.wix-image-hover:hover::after {
    opacity: 1;
}


@media (max-width: 768px) {
    .top-announcement-bar {
        font-size: 0.85rem;
        padding: 10px 0;
    }
    
    .announcement-content {
        flex-direction: column;
        gap: 8px;
        padding: 0 1rem;
    }
    
    .logo-title {
        font-size: 2.5rem;
        letter-spacing: 4px;
    }
    
    .logo-subtitle {
        font-size: 0.9rem;
        letter-spacing: 2px;
    }
    
    .main-navigation {
        position: relative;
    }
    
    .nav-container {
        flex-direction: column;
        padding: 0;
    }
    
    .nav-links {
       /* flex-direction: column;*/
        width: 100%;
		    overflow-x: auto;
    }
    
    .nav-links a {
        width: 100%;
        text-align: center;
        border-bottom: 1px solid #e0d5c1;
    }
    
    .nav-tools {
        padding: 15px;
        border-top: 1px solid #e0d5c1;
    }
    
    .floating-buttons {
        right: 15px;
        bottom: 15px;
    }
    
    .floating-btn {
        width: 50px;
        height: 50px;
    }
    
    .carousel-slide img {
        height: 300px;
    }
}

 @media (max-width: 767px) {
.announcement-text {
    display: unset;
  
}

.back-to-top {
;
    bottom: 130px!important;
    right: 10px!important;

}

 
}

