/*
Theme Name: Elessi Theme Child
Theme URI: https://elessi.nasatheme.com/demo/
Description: This is a child theme for Elessi Theme
Author: NasaTheme team
Author URI: https://nasatheme.com
Template: elessi-theme
Version: 1.0
*/


/*************** ADD YOUR CUSTOM CSS IN THIS AREA ***************/








/* Design Variations Section */
.design-variations-section {
/*     margin: 15px 0; */
    padding: 30px 0;
    border-top: 1px solid #eee;
}

.design-variations-section h3 {
    font-size: 24px;
    margin-bottom: 20px;
    text-align: center;
    font-weight: 600;
}

/* Category Tabs */
.design-category-tabs {
	max-width:1140px;
	margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
/*     gap: 12px; */
    margin-bottom: 25px;
}

.design-category-tabs button {
	flex:1;
    padding: 8px 16px;
	border:none;
	border-radius:0px !important;
    border-bottom:1px solid #d9d9d9;
	background-color:transparent;
	color:#333;
    cursor: pointer;
    font-size: 14px;
    transition: all 0.3s;
}

.design-category-tabs button:hover,
.design-category-tabs button.active {
	background-color:transparent;
 	border-bottom:1px solid #00b2a5;
    color: #00b2a5;
}

/* Products Grid Container */
.design-variations-container {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
}

.scroll-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    font-size: 18px;
    cursor: pointer;
    z-index: 1;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
}

.left-arrow {
    left: -14px;
	border-radius:50% !important;
	background:none;
	padding:12px;
	border:1px solid #777;
}

.left-arrow:hover  {
	background:none;
	border:1px solid #00b2a5;
}

.left-arrow i{
	color:#777 !important; 	
}
.left-arrow:hover i{
	color:#00b2a5 !important; 	
}

.right-arrow {
    right: -14px;
    border-radius: 50% !important;
    background: none;
    padding: 12px;
    border: 1px solid #777;
}

.right-arrow:hover {
    background: none;
    border: 1px solid #00b2a5;
}

.right-arrow i {
    color: #777 !important;
}
.right-arrow:hover i {
    color: #00b2a5 !important;
}

/* Products Grid */
.design-variations-grid {
    display: flex;
/*     gap: 20px; */
    overflow-x: auto;
    scroll-behavior: smooth;
    scrollbar-width: none;
    -ms-overflow-style: none;
    padding: 0px 0;
    margin: 0 -10px;
}

.design-variations-grid::-webkit-scrollbar {
    display: none;
}

.design-variation-item {
    flex: 0 0 auto;
    width: 228px;
    transition: transform 0.3s;
    padding: 0 10px;
}

.design-variation-item.hidden {
    display: none;
}

.design-variation-item:hover {
    transform: translateY(-5px);
}

.variation-thumb {
    margin-bottom: 10px;
    background: #f9f9f9;
    border-radius: 8px;
    overflow: hidden;
}

.variation-thumb img {
    width: 100%;
    height: auto;
    display: block;
}



.variation-title {
    font-size: 15px;
    font-weight: 500;
    margin: 5px 0;
    color: #333;
    line-height: 1.3;
}

.variation-price {
    font-size: 14px;
    color: #666;
    font-weight: 500;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .design-variation-item {
        width: 160px;
    }
    
    .design-category-tabs {
        justify-content: flex-start;
        padding: 0 15px;
    }
}
