
.creatego-slider-container .swiper-text {
	display: flex;
    flex-direction: column;
    width: 100%;
    padding-top: 40px;
    padding-left: 40px;
    padding-right: 40px;
}

.creatego-slider-container .swiper-text .title {
	font-family: 'Lato',serif;
	font-size: 4rem;
	font-weight: 400;
	line-height: 1.15em;
	text-transform: capitalize;
}

.creatego-slider-container .swiper-text .description {
	font-size: 20px;
}

/* --- HEADER SLIDER (Contine butoanele) --- */
.creatego-slider-container .swiper-header {
    display: flex;
    align-items: center;
    width: 100%;
    padding: 40px 40px;
    padding-top: 10px;
}

.creatego-slider-container .swiper-header .category {
	display: flex;
	gap: 10px;
	flex-direction: row;
}

.creatego-slider-container .swiper-header .category .item-category:hover {
	border: 1px solid black;
	color: white;
	background-color: black;
}

.creatego-slider-container .swiper-header .category .item-category {
	cursor: pointer;
	font-family: "Lato", "sans-serif";
	font-size: 16px;
	font-weight: 500;
	padding: 20px 30px;
	border: 1px solid #BCBDBD;
	color: black;
	background-color: #F9F9F9;
	transition: all .5s ease;
}

.creatego-slider-container .swiper-header .category .selected {
	border: 1px solid black;
	color: white;
	background-color: black;
}

.creatego-slider-container .button-prev {
    margin-left: auto; /* Impinge butoanele in dreapta */
    margin-right: 10px;
}

.creatego-slider-container .slide-button {
    width: 50px;
    height: 50px;
    border: 1px solid black;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    background: white;
}

.creatego-slider-container .slide-button i {
    font-size: 18px;
    color: black;
}

.creatego-slider-container .slide-button:hover {
    background: black;
}

.creatego-slider-container .slide-button:hover i {
    color: white;
}

/* --- CONTAINERUL SI CARDUL DE PRODUS --- */
.creatego-product-card {
    position: relative;
    width: 100%;
    background: #fff;
    display: flex;
    flex-direction: column;
}

/* ZONA IMAGINE */
.creatego-product-card .product-image {
    position: relative;
    overflow: hidden;
}

.creatego-product-card .image-hover-wrapper {
    display: flex;
    overflow: hidden;
    position: relative;
}

.creatego-product-card .image-hover-wrapper img {
    width: 100%;
    height: auto;
    transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    flex-shrink: 0;
}

.creatego-product-card .product-image:hover .main-img,
.creatego-product-card .product-image:hover .secondary-img {
    transform: translateX(-100%);
}

/* QUICK VIEW */
.creatego-product-card .quickshow {
    opacity: 0;
    visibility: hidden;
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translate(-50%, 0);
    background: black;
    padding: 10px 25px;
    display: flex;
    align-items: center;
    z-index: 10;
    transition: all 0.4s ease;
}

.creatego-product-card .product-image:hover .quickshow {
    opacity: 1;
    visibility: visible;
}

.creatego-product-card .quickshow:hover { background: white; }
.creatego-product-card .quickshow span { color: white; margin-left: 10px; font-size: 13px; }
.creatego-product-card .quickshow:hover span, 
.creatego-product-card .quickshow:hover i { color: black; }

/* INFO PRODUS JOS */
.creatego-product-card .bottom-slider {
    display: flex;
    flex-direction: column;
    align-items: center; /* Centrare ceruta */
    text-align: center;
    padding: 20px 0;
}

.creatego-product-card .title-slide {
    font-size: 14px;
    color: #000;
    text-decoration: none !important;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2; /* Max 2 randuri */
    -webkit-box-orient: vertical;
    overflow: hidden;
    min-height: 2.8em; /* Inaltime fixa pentru aliniere */
    margin-bottom: 10px;
}

/* PRET SI CULORI */
.creatego-product-card .price-row {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.creatego-product-card .price-slide {
    font-size: 18px;
    font-weight: 700;
    color: black;
}

.product-swatches {
	margin-top: 10px;
    display: flex;
    gap: 6px;
    justify-content: center;
}

.swatch-circle {
    width: 16px;
    height: 16px;
    border-radius: 50%;
    cursor: pointer;
    border: 1px solid #e2e2e2;
}

.swatch-circle.active {
    border: 1px solid #000;
    transform: scale(1.15);
    box-shadow: inset 0 0 0 1px #fff;
}

/* ============================================================
   CreateGo Slider — Adăugiri v2.0
   (Adăugate automat — nu modifica manual)
   ============================================================ */

/* Loading overlay la filtrare AJAX */
.creatego-slider-container {
    position: relative;
}

.cgs-loading-overlay {
    position: absolute;
    inset: 0;
    background: rgba(255, 255, 255, 0.80);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 20;
}

.cgs-spinner {
    width: 38px;
    height: 38px;
    border: 3px solid #e0e0e0;
    border-top-color: #111;
    border-radius: 50%;
    animation: cgs-spin 0.65s linear infinite;
}

@keyframes cgs-spin {
    to { transform: rotate(360deg); }
}

/* Mesaj fără produse */
.cgs-no-products {
    padding: 60px 20px;
    text-align: center;
    color: #999;
    font-size: 15px;
    width: 100%;
    margin: 0;
}

/* Preț lipsă (fallback vizual) */
.cgs-no-price {
    color: #bbb;
    font-size: 14px;
}
