/* Cotishop Menu - Based on Figma Design */

/* Navigation Bar */
.cotishop-nav {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    padding: 8px 54px;
    gap: 10px;
    width: 100%;
    height: 38px;
    background: #781F95;
    backdrop-filter: blur(40px);
    position: fixed;
    z-index: 100;
}

.cotishop-nav-container {
    width: 100%;
    display: flex;
    justify-content: center;
}

.cotishop-nav-menu {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 40px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.cotishop-nav-item {
    position: relative;
    display: flex;
    align-items: center;
}

.cotishop-nav-link {
    color: #FEFBFF;
    text-decoration: none;
    font-weight: 500;
    font-size: 12px;
    line-height: 14px;
    text-transform: uppercase;
    transition: color 0.3s ease;
    padding: 8px 12px;
    border-radius: 4px;
}

.cotishop-nav-link:hover {
    color: #E6E1E6;
    background-color: rgba(255, 255, 255, 0.1);
}

/* Megamenu */

.cotishop-megamenu-dropdown {
    position: fixed;
    top: 15%;
    left: 0;
    right: 0;
    width: 100vw;
    height: 320px;
    background: #FEFBFF;
    box-shadow: 0px 4px 12px rgba(0, 0, 0, 0.1);
    display: none;
    z-index: 998;
}

.cotishop-megamenu-content {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: flex-start;
    padding: 40px 64px;
    gap: 40px;
    width: 100%;
    height: 100%;
}

/* Category Section */
.cotishop-category-section {
    flex: 1;
    max-width: 50%;
}

.cotishop-category-title {
    font-weight: 700;
    font-size: 16px;
    line-height: 18px;
    color: #1D1B20;
    margin: 0 0 24px 0;
    text-transform: uppercase;
}

.cotishop-category-grid {
    display: flex;
    flex-direction: row;
    gap: 32px;
    flex-wrap: wrap;
}

.cotishop-category-column {
    display: flex;
    flex-direction: column;
    gap: 12px;
    min-width: 140px;
}

.cotishop-category-link {
    font-weight: 400;
    font-size: 12px;
    line-height: 14px;
    color: #49454F;
    text-decoration: none;
    transition: color 0.3s ease;
    padding: 4px 0;
}

.cotishop-category-link:hover {
    color: #781F95;
    text-decoration: underline;
}

.cotishop-category-link--see-all {
    font-weight: 600;
    color: #781F95;
    text-transform: uppercase;
    font-size: 12px;
    margin-top: 8px;
}

.cotishop-category-link--see-all:hover {
    color: #5D1A75;
}

/* Products Section */
.cotishop-products-section {
    flex: 1;
    max-width: 50%;
    border-left: 1px solid #E6E1E6;
    padding-left: 40px;
}

.cotishop-products-title {
    font-weight: 700;
    font-size: 16px;
    line-height: 20px;
    color: #1D1B20;
    margin: 0 0 24px 0;
    text-transform: uppercase;
}

.cotishop-products-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    width: 100%;
}

.cotishop-product-item {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 12px;
    border: 1px solid #E6E1E6;
    border-radius: 8px;
    background: #FEFBFF;
    transition: box-shadow 0.3s ease;
    text-decoration: none;
    color: inherit;
    position: relative;
    min-height: 140px;
}

.cotishop-product-item:hover {
    box-shadow: 0px 2px 8px rgba(0, 0, 0, 0.1);
    text-decoration: none;
    color: inherit;
}

.cotishop-product-category {
    background: #781F95;
    color: #FEFBFF;
    font-size: 10px;
    font-weight: 600;
    line-height: 12px;
    text-transform: uppercase;
    padding: 4px 8px;
    border-radius: 12px;
    margin-bottom: 8px;
    letter-spacing: 0.5px;
}

.cotishop-product-image {
    width: 60px;
    height: 60px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 8px;
    align-self: center;
}

.cotishop-product-name {
    font-weight: 400;
    font-size: 12px;
    line-height: 14px;
    color: #49454F;
    text-align: left;
    margin: 0;
    max-width: 100%;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    flex-grow: 1;
}

.cotishop-products-loading {
    grid-column: 1 / -1;
    text-align: center;
    padding: 40px;
    color: #49454F;
    font-size: 14px;
}

/* Responsive Design */
@media (max-width: 1440px) {
    .cotishop-nav {
        padding: 8px 32px;
    }
    
    .cotishop-megamenu-content {
        padding: 40px 32px;
    }
}

@media (max-width: 1024px) {
    .cotishop-nav-menu {
        gap: 24px;
    }
    
    .cotishop-nav-link {
        font-size: 13px;
        padding: 6px 8px;
    }
    
    .cotishop-megamenu-content {
        padding: 32px 24px;
        gap: 24px;
    }
    
    .cotishop-category-grid {
        gap: 24px;
    }
    
    .cotishop-products-section {
        padding-left: 24px;
    }
}

@media (max-width: 768px) {
    .cotishop-nav {
        display: none; /* Hide on mobile, use mobile menu instead */
    }
    
    .cotishop-megamenu-dropdown {
        display: none !important;
    }
}

/* Animation for dropdown */
.cotishop-megamenu-dropdown {
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.cotishop-megamenu-dropdown.show {
    opacity: 1;
    visibility: visible;
}

/* Ensure proper stacking */
.cotishop-nav-item.has-dropdown {
    z-index: 1001;
}