/* nav style start  */

.navbar {
    position: fixed;
    top: 3rem;
    left: 0;
    right: 0;
    padding: 1rem;
    background: transparent;
    z-index: 1000;
}

.nav-center {
    max-width: 750px;
    background: #FCFCFC;
    border-radius: 2rem;
    width: 100%;
    margin: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 1.5rem;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: relative;
    gap: 1.5rem;
}

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

.logo img {
    width: 100%;
    height: auto;
}

.nav-links {
    display: flex;
    align-items: center;
    justify-content: center;
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-links li {
    margin: 0;
}

.nav-links a {
    color: var(--color-font-primary);
    text-decoration: none;
    font-family: var(--font-primary-title);
    font-weight: 500;
    padding: 0.5rem 0.5rem;
    border-radius: 1rem;
    transition: background-color 0.3s ease;
}

.nav-links a:hover {
    background-color: #f0f0f0;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: 0.5rem;
    border: none;
    background: none;
    z-index: 1001;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background-color: var(--color-font-primary);
    margin: 3px 0;
    transition: 0.3s;
    border-radius: 2px;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(-45deg) translate(-5px, 6px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(45deg) translate(-5px, -6px);
}

@media screen and (max-width: 768px) {
    .nav-center {
        max-width: 90%;
        padding: 0.5rem 1rem;
    }

    .logo {
        width: 120px;
    }

    .hamburger {
        display: flex;
    }

    .nav-links {
        position: fixed;
        top: 0;
        right: 0;
        height: 100vh;
        width: 100%;
        background: #FCFCFC;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 2rem;
        transform: translateX(100%);
        transition: transform 0.3s ease-in-out;
        box-shadow: -2px 0 10px rgba(0, 0, 0, 0.1);
    }

    .nav-links.active {
        transform: translateX(0);
    }

    .nav-links a {
        font-size: 1.2rem;
        padding: 1rem 2rem;
    }
}

@media screen and (max-width: 480px) {
    .nav-center {
        max-width: 95%;
        padding: 0.5rem 0.75rem;
    }

    .logo {
        width: 100px;
    }
}

.dropdown-menu {
    min-width: 200px;
}

.profile-avatar {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    object-fit: cover;
}

.profile-info {
    max-width: 150px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: white;
        flex-direction: column;
        box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    }

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

    .hamburger {
        display: block;
        background: none;
        border: none;
        cursor: pointer;
    }
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 16px;
    font-size: 14px;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    border: none;
    border-radius: 12px;
    font-weight: 500;
    font-size: 14px;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.btn:hover::before {
    left: 100%;
}

.btn-login {
    background: rgba(255, 255, 255, 0.9);
    color: #1f2937;
    border: 1px solid rgba(156, 163, 175, 0.3);
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.btn-login:hover {
    background: rgba(255, 255, 255, 1);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    border-color: rgba(99, 102, 241, 0.3);
}

.btn-register {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.4);
}

.btn-register:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.6);
}

.dropdown {
    position: relative;
}

.profile-btn {
    background: rgba(255, 255, 255, 0.95);
    color: #1f2937;
    border: 1px solid rgba(156, 163, 175, 0.2);
    padding: 8px 16px;
    border-radius: 50px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    min-width: 160px;
}

.profile-btn:hover {
    background: rgba(255, 255, 255, 1);
    transform: translateY(-1px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

.profile-avatar {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid rgba(255, 255, 255, 0.8);
}

.profile-icon {
    font-size: 24px;
}

.profile-info {
    font-weight: 500;
    max-width: 100px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.dropdown-chevron {
    font-size: 12px;
    transition: transform 0.3s ease;
}

.dropdown.active .dropdown-chevron {
    transform: rotate(180deg);
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(156, 163, 175, 0.2);
    border-radius: 16px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    min-width: 240px;
    padding: 8px;
    margin-top: 8px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1000;
}

.dropdown-menu.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-header {
    padding: 12px 16px 8px;
    font-weight: 600;
    color: #1f2937;
    font-size: 16px;
    border-bottom: 1px solid rgba(156, 163, 175, 0.2);
    margin-bottom: 8px;
}

.dropdown-item-text {
    padding: 0 16px 8px;
    color: #6b7280;
    font-size: 13px;
}

.dropdown-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 16px;
    color: #374151;
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.2s ease;
    font-size: 14px;
    margin: 2px 0;
}

.dropdown-item:hover {
    background: rgba(99, 102, 241, 0.1);
    color: #6366f1;
    transform: translateX(4px);
}

.dropdown-item.logout {
    color: #ef4444;
}

.dropdown-item.logout:hover {
    background: rgba(239, 68, 68, 0.1);
    color: #dc2626;
}

.dropdown-divider {
    height: 1px;
    background: rgba(156, 163, 175, 0.2);
    border: none;
    margin: 8px 0;
}

.hamburger {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 28px;
    height: 20px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    position: relative;
}

.hamburger span {
    display: block;
    height: 2px;
    width: 100%;
    background: #374151;
    border-radius: 1px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
}

@media (max-width: 768px) {
    .header-actions {
        gap: 12px;
    }

    .btn {
        padding: 8px 16px;
        font-size: 13px;
    }

    .profile-btn {
        min-width: auto;
        padding: 8px 12px;
    }

    .profile-info {
        display: none;
    }

    .hamburger {
        display: flex;
    }

    .dropdown-menu {
        right: -8px;
        min-width: 200px;
    }
}





/* Mobile Auth Section Styles */
.mobile-auth-section {
    display: none;
}

.mobile-auth-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
    padding: 2rem 1rem;
    border-top: 1px solid rgba(156, 163, 175, 0.2);
    margin-top: 2rem;
}

.mobile-profile {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
    padding: 2rem 1rem;
    border-top: 1px solid rgba(156, 163, 175, 0.2);
    margin-top: 2rem;
}

.mobile-profile-info {
    text-align: center;
}

.mobile-profile-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid rgba(102, 126, 234, 0.3);
    margin-bottom: 1rem;
}

.mobile-profile-icon {
    font-size: 40px;
    color: #6b7280;
    margin-bottom: 1rem;
}

.mobile-profile-info h3 {
    margin: 0;
    font-size: 1.3rem;
    color: #1f2937;
    font-weight: 600;
}

.mobile-profile-actions {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    width: 100%;
    max-width: 250px;
}

.mobile-nav-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 1rem 2rem;
    border: none;
    border-radius: 12px;
    font-weight: 500;
    font-size: 1.1rem;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
    min-width: 200px;
}

.mobile-login-btn {
    background: rgba(255, 255, 255, 0.9);
    color: #1f2937;
    border: 1px solid rgba(156, 163, 175, 0.3);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.mobile-login-btn:hover {
    background: rgba(255, 255, 255, 1);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
}

.mobile-register-btn {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.4);
}

.mobile-register-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.6);
}

.mobile-orders-btn {
    background: rgba(99, 102, 241, 0.1);
    color: #6366f1;
    border: 1px solid rgba(99, 102, 241, 0.3);
}

.mobile-orders-btn:hover {
    background: rgba(99, 102, 241, 0.2);
    transform: translateY(-2px);
}

.mobile-logout-btn {
    background: rgba(239, 68, 68, 0.1);
    color: #dc2626;
    border: 1px solid rgba(239, 68, 68, 0.3);
}

.mobile-logout-btn:hover {
    background: rgba(239, 68, 68, 0.2);
    transform: translateY(-2px);
}

/* Hide desktop elements on mobile */
@media screen and (max-width: 768px) {
    .desktop-only {
        display: none !important;
    }

    .mobile-auth-section {
        display: block;
    }

    .nav-center {
        max-width: 90%;
        padding: 0.5rem 1rem;
    }

    .logo {
        width: 120px;
    }

    .hamburger {
        display: flex;
    }

    .nav-links {
        position: fixed;
        top: 0;
        right: 0;
        height: 100vh;
        width: 100%;
        background: #FCFCFC;
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        gap: 0;
        transform: translateX(100%);
        transition: transform 0.3s ease-in-out;
        box-shadow: -2px 0 10px rgba(0, 0, 0, 0.1);
        padding-top: 6rem;
        overflow-y: auto;
    }

    .nav-links.active {
        transform: translateX(0);
    }

    .nav-links li {
        margin: 0.5rem 0;
    }

    .nav-links a {
        font-size: 1.2rem;
        padding: 1rem 2rem;
    }
}

@media screen and (max-width: 480px) {
    .nav-center {
        max-width: 95%;
        padding: 1rem 1rem;
    }

    .logo {
        width: 100px;
    }

    .mobile-nav-btn {
        min-width: 180px;
        font-size: 1rem;
    }
}

/* nav style end  */



.hero-section {
    position: relative;
    height: 100vh;
    /* min-height: 500px; */
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    transition: background-image 1s ease-in-out;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.4) 0%, rgba(139, 115, 85, 0.3) 100%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    color: white;
    padding: 20px;
}

.hero-title {
    color: var(--color-secondary);
    font: 400 5rem var(--font-primary-title);
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    animation: fadeInUp 1s ease-out;
    max-width: 800px;
    line-height: 1.3;
}

.carousel-container {
    position: absolute;
    bottom: 0;
    right: 0;
    z-index: 3;
    background: #ffff;
    padding: 3rem 2rem 1rem 3rem;
    border-top-left-radius: 2rem;
}

.carousel-wrapper {
    position: relative;
}

.card-stack {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    gap: 1rem;
}

.carousel-card {
    width: 100px;
    height: 100px;
    border-radius: 12px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.carousel-card.active {
    transform: scale(1.1);
    z-index: 5;
    box-shadow: 0 12px 30px rgba(139, 115, 85, 0.5);
}

.card-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

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

/* MOBILE FIXES */
@media screen and (max-width: 768px) {
    .hero-section {
        background-attachment: scroll;
        background-size: cover;
        background-position: center center;
        min-height: 100vh;
        height: 100vh;
    }

    .hero-title {
        font-size: 2.5rem;
        letter-spacing: 1px;
        line-height: 1.2;
        margin-bottom: 15px;
        text-align: center;
    }

    .carousel-container {
        bottom: 0px;
        right: 0px;
        padding: 2rem 1.5rem 1rem 2rem;
        border-top-left-radius: 1rem;
    }

    .card-stack {
        gap: 0.5rem;
    }

    .carousel-card {
        width: 60px;
        height: 60px;
        border-radius: 8px;
    }

    .carousel-card.active {
        transform: scale(1.05);
    }
}

/* SMALLER MOBILE SCREENS */
@media screen and (max-width: 480px) {
    .hero-section {
        background-attachment: scroll;
        background-position: center top;
    }

    .hero-title {
        font-size: 2rem;
        padding: 0 10px;
        text-align: center;
    }

    .carousel-container {
        bottom: 0px;
        right: 0px;
        padding: 1.5rem 1rem 0.5rem 1.5rem;
        border-top-left-radius: 1rem;
    }

    .carousel-card {
        width: 50px;
        height: 50px;
    }

    .container {
        padding: 0 15px;
    }
}

/* LANDSCAPE MOBILE */
@media screen and (max-height: 500px) and (orientation: landscape) {
    .hero-section {
        height: 100vh;
        background-position: center center;
    }

    .hero-title {
        font-size: 2rem;
    }

    .carousel-container {
        bottom: 10px;
        right: 10px;
        padding: 1rem;
    }
}

/* Image loading state */
.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, #f0f0f0 25%, transparent 25%, transparent 75%, #f0f0f0 75%, #f0f0f0),
        linear-gradient(45deg, #f0f0f0 25%, transparent 25%, transparent 75%, #f0f0f0 75%, #f0f0f0);
    background-size: 20px 20px;
    background-position: 0 0, 10px 10px;
    z-index: 0;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.hero-section.loading::before {
    opacity: 1;
}

/* Preload images */
.image-preloader {
    position: absolute;
    top: -9999px;
    left: -9999px;
    width: 1px;
    height: 1px;
    opacity: 0;
    pointer-events: none;
}


/* hero section style end  */

/* sec2 style stayle start  */
.sec2 {
    padding: 120px 0;
}

.sec-two-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
}

.left-content,
.right-content {
    flex: 1;
}

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

.right-content {
    min-width: 600px;
    width: 100%;
}

.left-content .content {
    font-size: 2.5rem;
    max-width: 610px;
    line-height: 1.5;
    font-family: 'Adamina';
}

.content p img {
    display: inline;
    height: 1em;
    width: 2.5em;
    border-radius: 1.5rem;
    margin: 0 0.5rem;
}

.collection-button {
    background: var(--color-primary);
    font: 500 1rem var(--font-primary-title);
    border-radius: 1rem;
    padding: 1rem 2rem;
    text-decoration: none;
    color: var(--color-secondary);
    gap: 1rem;
    display: flex;
    width: fit-content;
    align-items: center;
    cursor: pointer;
}

.collection-button svg {
    width: 2rem;
    fill: var(--color-secondary);
    z-index: 9;
    transform: rotate(-45deg);
}

.collection-button:hover {
    color: var(--color-secondary);
}

.swiper {
    width: 100%;
    height: 100%;
}

.swiper-slide {
    text-align: center;
    font-size: 18px;
    display: flex;
    justify-content: center;
    align-items: center;
}

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

.card-slide-image {
    width: 300px;
    height: 400px;
    border-radius: 2rem;
    overflow: hidden;
}

.card-slide-image img {
    width: 100%;
}


@media screen and (min-width: 360px) and (max-width: 559px) {
    .sec2 {
        padding: 5rem 1rem;
    }

    .sec-two-wrapper {
        display: flex;
        flex-direction: column-reverse;
        gap: 3rem;
    }

    .left-content .content {
        font-size: 1.4rem;
        line-height: 1.3;
        font-family: 'Adamina';
        width: 100%;
    }

    .right-content {
        width: 100%;
        min-width: 100%;
    }

    .card-slide-image {
        width: 100%;
    }
}

@media screen and (min-width: 560px) and (max-width: 768px) {
    .sec-two-wrapper {
        display: flex;
        flex-direction: column-reverse;
        gap: 3rem;
    }

    .left-content {
        padding: 0 1rem;
    }

    .left-content .content {
        width: 100%;
    }
}

@media screen and (min-width: 769px) and (max-width: 991px) {
    .sec-two-wrapper {
        display: flex;
        flex-direction: column-reverse;
        gap: 3rem;
    }

    .left-content {
        padding: 0 1rem;
    }

    .left-content .content {
        width: 100%;
    }
}

@media screen and (min-width: 992px) and (max-width: 1200px) {}

@media screen and (min-width: 1201px) and (max-width: 1400px) {}

/* sec2 style end */


/* sec 3 style start  */
.sec3 {
    padding: 5rem 0;
}

.embro-title {
    margin: 0 0 5rem;
}

.embro-title h2 {
    font: 500 3rem var(--font-primary-title);
    text-align: center;
}

.left-image {
    width: fit-content;
    border-radius: 3rem;
    overflow: hidden;
}


.embro-wrapper {
    display: flex;
    align-items: center;
    gap: 5rem;
    justify-content: space-evenly;
}

.embro-c-wrap p {
    max-width: 450px;
}


.left-image {
    width: 600px;
    height: 400px;
    border-radius: 3rem;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    position: relative;
}

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

.image-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.6s ease-in-out;
}

.image-slide.active {
    opacity: 1;
}

.image-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.right-embro-wrp {
    flex: 1;
    max-width: 500px;
    position: relative;
}

.content-container {
    position: relative;
    min-height: 300px;
}

.content-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.6s ease-in-out;
}

.content-slide.active {
    opacity: 1;
    transform: translateY(0);
}

.embro-c-wrap h6 {
    font-size: 1.2rem;
    color: #888;
    margin-bottom: 1rem;
    font-weight: 300;
}

.embro-c-wrap h3 {
    font-family: var(--font-primary-title);
    font-size: 2.5rem;
    color: #333;
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.embro-c-wrap p {
    font-family: var(--font-primary-title);
    font-size: 1.286rem;
    line-height: 1.8;
    color: #666;
    max-width: 450px;
    margin-bottom: 2rem;
}

.progress-bar-container {
    width: 100%;
    height: 4px;
    background-color: #e0e0e0;
    border-radius: 2px;
    overflow: hidden;
    margin-top: 2rem;
}

.progress-bar {
    height: 100%;
    background: linear-gradient(90deg, #d4af37, #ffd700);
    border-radius: 2px;
    width: 0%;
    transition: width 0.1s linear;
}

@media screen and (min-width: 360px) and (max-width: 559px) {
    .embro-wrapper {
        flex-direction: column;
        gap: 2rem;
        text-align: center;
    }

    .left-image {
        width: 350px;
        height: 320px;
    }

    .embro-title h2 {
        font-size: 2rem;
    }

    .embro-c-wrap h3 {
        font-size: 2rem;
    }

    .right-embro-wrp {
        width: 350px;
    }
}

@media screen and (min-width: 560px) and (max-width: 768px) {
    .embro-wrapper {
        flex-direction: column;
        gap: 2rem;
        text-align: center;
    }


    .embro-title h2 {
        font-size: 2rem;
    }

    .embro-c-wrap h3 {
        font-size: 2rem;
    }

    .right-embro-wrp {
        width: 100%;
    }
}

@media screen and (min-width: 769px) and (max-width: 991px) {
    .embro-wrapper {
        flex-direction: column;
        gap: 2rem;
        text-align: center;
    }

    .right-embro-wrp {
        width: 100%;
    }
}

@media screen and (min-width: 992px) and (max-width: 1200px) {}

@media screen and (min-width: 1201px) and (max-width: 1400px) {}

/* sec 3 style end  */


/* sec bls style start  */
.sec-bls {
    padding: 5rem 0;
}

.aheader {
    margin-bottom: 3rem;
}

.bls-title {
    font: 500 3rem var(--font-primary-title);
    color: var(--color-font-primary);
    margin-bottom: 0.7rem;
}

.adescription {
    font-size: 1.1rem;
    color: #4a4a4a;
    max-width: 400px;
}

.image-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    gap: 1rem;
    align-items: start;
}

.image-item {
    border-radius: 1.5rem;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 460px;
}

.image-item:hover {
    transform: translateY(-0.3rem);
}

.image-item img {
    width: 100%;
    height: 100%;
    display: block;
}

.image-item:nth-child(1) {
    grid-row: span 1;
}

.image-item:nth-child(2) {
    grid-row: span 1;
    margin-top: 5rem;
}

.image-item:nth-child(3) {
    grid-row: span 1;
    margin-top: 2rem;
}

.image-item:nth-child(4) {
    grid-row: span 1;
}

.image-item {
    border-radius: 1.5rem;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 460px;
    position: relative;
}

.hover-text {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.6);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    font-weight: 500;
    opacity: 0;
    transition: opacity 0.3s ease;
    text-align: center;
    padding: 1rem;
}

.image-item:hover .hover-text {
    opacity: 1;
}


/* Responsive design */

@media screen and (min-width: 360px) and (max-width: 559px) {
    .image-grid {
        grid-template-columns: 1fr;
        gap: 1.2rem;
    }

    .image-item:nth-child(2),
    .image-item:nth-child(3),
    .image-item:nth-child(4) {
        margin-top: 0;
    }

    .title {
        font-size: 3.5rem;
    }
}

@media screen and (min-width: 560px) and (max-width: 768px) {
    .image-grid {
        grid-template-columns: 1fr 1fr;
        gap: 1.2rem;
    }

    .image-item:nth-child(2),
    .image-item:nth-child(3),
    .image-item:nth-child(4) {
        margin-top: 0;
    }

    .title {
        font-size: 3.5rem;
    }
}

@media screen and (min-width: 769px) and (max-width: 991px) {
    .image-grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 1rem;
        align-items: start;
    }

    .image-item:nth-child(2),
    .image-item:nth-child(3),
    .image-item:nth-child(4) {
        margin-top: 0;
    }
}

@media screen and (min-width: 992px) and (max-width: 1200px) {}

@media screen and (min-width: 1201px) and (max-width: 1400px) {}

/* sec bls style end  */

/* footer style start  */
.footer {
    background: #FFFAF4;
    padding: 5rem 0 2rem;
}

.top-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 2rem 0;
}

.footer-menu {
    display: flex;
    gap: 1rem;
    list-style: none;
    text-decoration: none;
    padding: 0;
}

.footer-menu a {
    text-decoration: none;
    font: 400 1rem var(--font-primary-title);
    color: var(--color-font-primary);
}

.copyright {
    text-align: center;
    font: 400 0.7rem var(--font-primary-title);
}

.divider hr {
    background: #9C9C9C;
}

.footer .logo {
    width: 150px;
    display: flex;
    align-items: center;
}

.logo-link-wrap {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.social-icons {
    display: flex;
    gap: 0.5rem;
}

.social-icons a {
    width: 30px;
    height: 30px;
    display: flex;
    background: var(--color-primary);
    align-items: center;
    justify-content: center;
    border-radius: 2rem;
    text-decoration: none;
}

@media screen and (min-width: 360px) and (max-width: 559px) {
    .top-row {
        display: flex;
        padding: 2rem 0;
        flex-direction: column;
        align-items: center;
    }

    .footer-menu {
        display: flex;
        gap: 1rem;
        list-style: none;
        text-decoration: none;
        padding: 0;
        flex-direction: column;
        align-items: center;
    }

    .logo-link-wrap {
        display: flex;
        flex-direction: column;
        gap: 2rem;
        padding: 2rem 0;
    }

    .footer {
        background: #FFFAF4;
        padding: 0rem 0 2rem;
    }
}

@media screen and (min-width: 560px) and (max-width: 768px) {
    .top-row {
        display: flex;
        padding: 2rem 0;
        flex-direction: column;
        align-items: center;
    }

    .footer-menu {
        display: flex;
        gap: 1rem;
        list-style: none;
        text-decoration: none;
        padding: 0;
        flex-direction: column;
        align-items: center;
    }

    .logo-link-wrap {
        display: flex;
        flex-direction: column;
        gap: 2rem;
        padding: 2rem 0;
    }

    .footer {
        background: #FFFAF4;
        padding: 0rem 0 2rem;
    }
}

@media screen and (min-width: 769px) and (max-width: 991px) {}

@media screen and (min-width: 992px) and (max-width: 1200px) {}

@media screen and (min-width: 1201px) and (max-width: 1400px) {}

/* footer style end  */




/* about page style start  */
.about-p-sec {
    padding: 120px 0;
}

.about-page-wrap {
    padding: 5rem 0;
    display: flex;
    align-items: center;
    gap: 3rem;
}

.about-page-content-wrap {
    width: 100%;
}

.about-image-wrap {
    border-radius: 2rem;
    overflow: hidden;
}

.about-page-content-wrap {
    flex: 2;
}

.about-page-content-wrap p {
    font: 400 1.286rem var(--font-primary-title);
    line-height: 1.5;
}

@media screen and (max-width: 559px) {
    .about-page-wrap {
        display: flex;
        flex-direction: column;
    }

    .about-p-sec {
        padding: 90px 0 0;
    }

    .about-page-content-wrap p {
        font: 400 1rem var(--font-primary-title);
        line-height: 1.5;
    }
}


@media screen and (min-width: 360px) and (max-width: 559px) {
    .about-p-sec {
        padding: 90px 0 0;
    }

    .about-page-wrap {
        display: flex;
        flex-direction: column;
    }

    .about-page-content-wrap p {
        font: 400 1rem var(--font-primary-title);
        line-height: 1.5;
    }
}

@media screen and (min-width: 560px) and (max-width: 768px) {
    .about-page-wrap {
        display: flex;
        flex-direction: column;
    }

    .about-p-sec {
        padding: 90px 0 0;
    }

    .about-image-wrap {
        border-radius: 2rem;
        overflow: hidden;
        width: 100%;
    }

    .about-image-wrap img {
        width: 100%;
    }
}

@media screen and (min-width: 769px) and (max-width: 991px) {
    .about-page-wrap {
        display: flex;
        flex-direction: column;
    }

    .about-p-sec {
        padding: 90px 0 0;
    }

    .about-image-wrap {
        border-radius: 2rem;
        overflow: hidden;
        width: 100%;
    }

    .about-image-wrap img {
        width: 100%;
    }
}

@media screen and (min-width: 992px) and (max-width: 1200px) {
    .about-page-wrap {
        display: flex;
        flex-direction: column;
    }

    .about-p-sec {
        padding: 90px 0 0;
    }

    .about-image-wrap {
        border-radius: 2rem;
        overflow: hidden;
        width: 100%;
    }

    .about-image-wrap img {
        width: 100%;
    }
}

@media screen and (min-width: 1201px) and (max-width: 1400px) {
    .about-page-content-wrap p {
        font: 400 1.1rem var(--font-primary-title);
        line-height: 1.5;
    }
}

/* about page style end  */





/* b2b page style start  */
.b2b-wrap {
    padding: 120px 0 0;
}


.b2b-content p {
    font: 400 1.286rem var(--font-primary-title);
    line-height: 1.5;
}

.b2b-row {
    display: flex;
    align-items: center;
    gap: 5rem;
    padding: 5rem 0;
}

.call-to-action-wrap {
    background: #F9BC6E;
    padding: 5rem 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-top: 2rem;
}

.call-to-action-wrap h5 {
    font: 600 1.429rem var(--font-primary-title);
}

.call-to-action-wrap p {
    max-width: 800px;
    text-align: center;
    font: 400 1.286rem var(--font-primary-title);
}

@media screen and (max-width: 360px) {
    .b2b-row {
        display: flex;
        flex-direction: column-reverse;
        gap: 3rem;
    }

    .b2b-row-btm {
        display: flex;
        flex-direction: column;
    }

    .b2b-img img {
        width: 100%;
    }

    .b2b-content p {
        font: 400 1rem var(--font-primary-title);
        line-height: 1.5;
    }

    .call-to-action-wrap p {
        padding: 0 1rem;
        font: 400 1rem var(--font-primary-title);
    }
}

@media screen and (min-width: 360px) and (max-width: 559px) {
    .b2b-row {
        display: flex;
        flex-direction: column-reverse;
        gap: 3rem;
    }

    .b2b-row-btm {
        display: flex;
        flex-direction: column;
    }

    .b2b-img img {
        width: 100%;
    }

    .b2b-content p {
        font: 400 1rem var(--font-primary-title);
        line-height: 1.5;
    }

    .call-to-action-wrap p {
        padding: 0 1rem;
        font: 400 1rem var(--font-primary-title);
    }
}

@media screen and (min-width: 560px) and (max-width: 768px) {
    .b2b-row {
        display: flex;
        flex-direction: column-reverse;
        gap: 3rem;
    }

    .b2b-row-btm {
        display: flex;
        flex-direction: column;
    }

    .call-to-action-wrap p {
        padding: 0 1rem;
        font: 400 1rem var(--font-primary-title);
    }
}

@media screen and (min-width: 769px) and (max-width: 991px) {
    .b2b-row {
        display: flex;
        flex-direction: column-reverse;
        gap: 3rem;
    }

    .b2b-row-btm {
        display: flex;
        flex-direction: column;
    }

    .call-to-action-wrap p {
        padding: 0 1rem;
        font: 400 1rem var(--font-primary-title);
    }
}

@media screen and (min-width: 992px) and (max-width: 1200px) {
    .b2b-row {
        display: flex;
        flex-direction: column-reverse;
        gap: 3rem;
    }

    .b2b-row-btm {
        display: flex;
        flex-direction: column;
    }
}

@media screen and (min-width: 1201px) and (max-width: 1400px) {}

/* b3b page style end  */

/* collections page style start  */
.collections {
    padding: 120px 0;
}

.tabs-container {
    padding: 5rem 0;
}

.tabs {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
    position: relative;
    width: fit-content;
}

.tab {
    font: 500 1.143rem var(--font-primary-title);
    padding: 0.8rem 1.5rem;
    background: var(--color-primary);
    color: var(--color-secondary);
    border: none;
    border-radius: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.tab::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.6s;
}

.tab:hover::before {
    left: 100%;
}

.tab.active {
    background: #6d5940;
    box-shadow: 0 6px 20px rgba(109, 89, 64, 0.3);
}

.tab:hover {
    background: #6d5940;
    transform: translateY(-1px);
    box-shadow: 0 4px 15px rgba(139, 115, 85, 0.3);
}

.fabric-wrap {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
}

.fabric-card {
    max-width: 300px;
    /* max-height: 456px; */
    background: #FFFFFF;
    border: 0.1rem solid #E0E0E0;
    border-radius: 1.428571rem;
    padding: 1.5rem;
    overflow: hidden;
    height: 100%;
}

.fabric-card-image {
    border-radius: 1rem;
    overflow: hidden;
}

.fabric-card-image img {
    width: 100%;
}

.fabric-card-detail h2 {
    font: 500 1.428571rem var(--font-primary-title);
    color: #4F4F4F;
}

.fabric-card-detail p {
    color: #828282;
    font-size: 1rem;
    line-height: 1.3;
}

.fabric-card-detail {
    margin: 1rem 0 0;
    overflow: hidden;
}

.tab-content {
    display: none;
}

.tab-content.active {
    display: block;
}

.tab-content.active {
    display: block;
    animation: fadeIn 0.5s ease-in-out;
}

.product-bottom {
    display: flex;
    justify-content: space-between;
    margin-bottom: 15px;
    flex-direction: column;
}

.product-button:hover {
    cursor: pointer;
}

.product-button {
    background: linear-gradient(45deg, #18181B, #27272A);
    color: white;
    border: none;
    border-radius: 12px;
    padding: 8px 28px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    position: relative;
    overflow: hidden;
    width: 100%;
    text-align: center;
    justify-content: center;
    margin-top: 0.5rem;
}

.product-button:disabled {
    background: #3f3f46;
    /* dimmed neutral color */
    color: #a1a1aa;
    /* lighter text */
    cursor: not-allowed;
    box-shadow: none;
    opacity: 0.7;
}

/* Optional: Remove hover effects on disabled buttons */
.product-button:disabled:hover {
    transform: none;
}

/* Tooltip on hover when disabled */
.product-button:disabled::after {
    content: attr(title);
    position: absolute;
    top: -32px;
    left: 50%;
    transform: translateX(-50%);
    background: #111827;
    color: #fff;
    font-size: 12px;
    padding: 6px 10px;
    border-radius: 6px;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.2s ease-in-out;
    z-index: 100;
}

.product-button:disabled:hover::after {
    opacity: 1;
}

.price-now {
    font-size: 18px;
    font-weight: 600;
    font-family: 'Adamina';
}

/* .product-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}

.price-now {
    font-size: 18px;
    font-weight: 500;
    font-family: 'Adamina';
}



.product-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transition: all 0.6s ease;
}

.product-button:hover {
    background: linear-gradient(45deg, #27272A, #3F3F46);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}

.product-button:hover::before {
    left: 100%;
}

.button-icon {
    transition: transform 0.3s ease;
    width: 18px;
    height: 18px;
}

.product-button:hover .button-icon {
    transform: rotate(-10deg) scale(1.1);
} */

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateX(20px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@media screen and (max-width: 360px) {
    .fabric-wrap {
        display: flex;
        flex-wrap: wrap;
        gap: 2rem;
        justify-content: center;
    }

    .tabs {
        width: 100%;
        justify-content: center;
    }
}

@media screen and (min-width: 360px) and (max-width: 559px) {
    .fabric-wrap {
        display: flex;
        flex-wrap: wrap;
        gap: 2rem;
        justify-content: center;
    }

    .tabs {
        width: 100%;
        justify-content: center;
    }
}

@media screen and (min-width: 560px) and (max-width: 768px) {

    .fabric-wrap {
        display: flex;
        flex-wrap: wrap;
        gap: 2rem;
        justify-content: center;
    }
}

@media screen and (min-width: 769px) and (max-width: 991px) {}

@media screen and (min-width: 992px) and (max-width: 1200px) {}

@media screen and (min-width: 1201px) and (max-width: 1400px) {}

/* collections page style end  */