body {
    font-family: Satoshi, sans-serif;
    margin: 0;
    padding: 0;
    background-color: white;
}

header {
    background-color: #333;
    color: white;
    padding: 10px;
    display: flex;
    align-items: center;
    justify-content: center; /* centrează titlul */
    position: relative; /* pentru iconiță */
}

/* Titlu centrat */
header h3 {
    margin: 0;
    text-align: center;
}

.menu-icon {
    position: absolute;
    left: 15px;
    font-size: 28px;
    cursor: pointer;
    color: white;
    transition: transform 0.3s ease;
    z-index: 1100;
}

/* Sidebar */
#sidebar {
  position: fixed;
  top: 0;
  left: -250px; /* ascuns */
  width: 250px;
  height: 100%;
  background: #333;
  color: white;
  transition: left 0.3s ease;
  padding-top: 60px;
  z-index: 1000;
}

#sidebar ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

#sidebar ul li {
  display: block;         /* fiecare item pe un rând */
  padding: 15px 20px;
  border-bottom: 1px solid #444; /* linie subtilă între ele */
}

#sidebar ul li a {
  color: white;
  text-decoration: none;
  font-size: 18px;
}

#sidebar.show {
  left: 0; /* apare din stânga */
}

/* Iconița când e rotită */
.menu-icon.rotate {
  transform: rotate(90deg);
}





nav ul {
    list-style-type: none;
    margin: 0;
    padding: 0;
}

nav ul li {
    display: inline;
    margin-right: 1rem;
}

nav ul li a {
    color: white;
    text-decoration: none;
}

section {
    padding: 2rem;
    text-align: center;
}

article {
    background-color: white;
    padding: 1rem;
    margin: 1rem 0;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

footer {
    background-color: #333;
    color: white;
    bottom: 0;
    padding: 15px 10px;
    text-align: center;
    border-top: 1px solid #ddd;
    font-family: Arial, sans-serif;
	margin-top: 40px;
}


.footer_link {
	color: white;
}


.footer-links {
    margin-top: 6px;
}

.footer-links a {
    font-size: 12px; 
    color: white;   
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #ffcc00;
    text-decoration: underline;
}






.post_link {
	color: blue;
	text-decoration: none;
}

.post_link:hover {
	text-decoration: underline;
}



.square_1 {
    background-color: white;
   /* border: 1.5px solid #2f3136; */
    border-radius: 1.25rem;
   /* padding: 3rem 2rem;
	
	padding-left: 1.5rem;*/
    padding: 1rem;
	width: auto;
	height: 350px;
	color: #333;
}

.square_1:hover {
	box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.3);
}



.square_important {
    background-color: #FFF59D;
   /* border: 1.5px solid #2f3136; */
    border-radius: 1.25rem;
   /* padding: 3rem 2rem;
	
	padding-left: 1.5rem;*/
    padding: 1rem;
	width: auto;
	height: 350px;
	color: #333;
}

.square_important:hover {
	box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.3);
}


.hidden {
    display: none;
}


.limiter {
	width: 300px;
}



.text_bold {
	font-weight: bold;
}

.text_italic {
	font-style: italic;
}

.text_underline {
    text-decoration: underline;
}




.text_center {
	text-align: center;
}


.space_20px {
	padding: 20px;
}

.space_10px {
	padding: 10px;
}

.space_5px {
	padding: 5px;
}



.main-photo {
    position: relative; 
    display: inline-block;
}

.heart-icon {
    position: absolute;
    top: 10px;
    right: 10px;
    font-size: 20px;
    color: #fff; /* alb implicit */
    background: rgba(0,0,0,0.6); /* cerc negru transparent */
    border-radius: 50%;
    padding: 8px 10px;
    cursor: pointer;
    user-select: none;

    transition: transform 0.25s ease, color 0.25s ease, box-shadow 0.25s ease;
    box-shadow: 0 2px 6px rgba(0,0,0,0.3); /* umbră discretă */
}

/* Hover: doar un mic efect */
.heart-icon:hover {
    transform: scale(1.15);
    box-shadow: 0 4px 12px rgba(0,0,0,0.5);
}

/* Când e activă (click) */
.heart-icon.liked {
    color: #ff4d6d; /* roșu aprins */
}






.fullscreen {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    justify-content: center;
    align-items: center;
    z-index: 1000;
}

.fullscreen img {
    max-width: 90%;
    max-height: 90%;
}



.gallery_section {
    width: 80%;
    max-width: 600px;
    display: flex;
    flex-direction: column;
    align-items: center;
	padding-bottom: 0px;
}



.gallery-container {
    display: flex;
    flex-direction: column;
	width: 120%;
}

.main-photo {
    width: 100%;
    position: relative;
}

.main-photo img,
.main-photo video {
    width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.thumbnail-container {
    display: flex;
    gap: 10px;
    overflow-x: auto;
    padding: 10px 0;
}

.thumbnail {
    width: 40px;
    height: 40px;
    object-fit: cover;
    border-radius: 5px;
    cursor: pointer;
    transition: transform 0.2s;
}

.thumbnail:hover {
    transform: scale(1.05);
}





#text_countdown {
	font-size: 16px;
   
    margin-top: 10px;
	color: #0F743B;
}

#countdown_sale {
    font-size: 16px;
    
    margin-top: 10px;
	color: #0F743B;
}


.price-section {
	width: auto;
    text-align: left;
	margin: 1rem 1rem;
}

.product-title {
    font-size: 14px;
    margin: 0;
    margin-bottom: 10px;
    color: #c60c30;
	text-transform: uppercase;
}

.product-description {
    font-size: 14px;
    margin: 0;
    margin-bottom: 10px;
    color: black;
}


.price-details {
 /*   display: flex;
    justify-content: center;
    align-items: baseline;*/
    gap: 10px;
    margin-bottom: 15px;
}

.current-price {
    font-size: 26px;
    font-weight: 5px;
 /*   color: #c60c30;*/
	color: #0F743B;
}

.original-price {
    font-size: 18px;
    text-decoration: line-through;
    color: #666;
}

.discount {
    font-size: 14px;
    color: black;
	background-color: #A0E193;
	border-radius: 50px;
	padding: 7px;
}

.add-to-cart {
    background-color: #000;
    color: #fff;
    border: none;
    padding: 10px 80px;
    font-size: 16px;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.add-to-cart:hover {
    background-color: #333;
}

.vat-info {
    font-size: 14px;
    color: #666;
    margin-top: 10px;
}




.current-price_pop {
    font-size: 18px;
    font-weight: 5px;
 /*   color: #c60c30;*/
	color: #0F743B;
}

.original-price_pop {
    font-size: 14px;
    text-decoration: line-through;
    color: #666;
}

.discount_pop {
    font-size: 12px;
    color: black;
	background-color: #A0E193;
	border-radius: 50px;
	padding: 4px;
}

.add-to-cart_pop {
    background-color: #000;
    color: #fff;
    border: none;
    padding: 10px 80px;
    font-size: 14px;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.add-to-cart_pop:hover {
    background-color: #333;
}









.bestseller-section {
    background-color: #fffbd8;
    padding: 10px;
    text-align: center;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    margin: 10px;
}

.bestseller-title {
    font-size: 13px;
    font-weight: bold;
    color: #333;
    margin: 0;
}

.bestseller-info {
    font-size: 13px;
    color: #666;
    margin-top: 5px;
}






.question {
    font-weight: bold;
    color: black;
    cursor: pointer;
    margin-top: 10px;
    display: flex;
    align-items: center;
}
        
.question span {
    margin-left: 5px;
    transition: transform 0.3s ease;
}

.answer {
    display: none;
    margin-top: 5px;
    font-family: Arial, sans-serif;
}

.rotate {
    transform: rotate(180deg);
}





/* Pop-up container */
.popup {
    display: none;
    position: fixed;
    bottom: 0;
	left: 0;
	right: 0;
    background-color: white;
    padding: 5px;
    text-align: center;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.3);
    z-index: 1000;
}

.popup p {
    margin: 0;
}

/* Close button */
.close-btn {
    position: absolute;
    right: 20px;
    top: 10px;
    font-size: 20px;
    cursor: pointer;
    color: black; /* Close button color */
}






@media only screen and (min-width: 1024px) {
	
.flex_horizontal_center {
	display: flex;
	align-items: center;
	justify-content: center;
}

.product-description {
    font-size: 16px;
    margin: 0;
    margin-bottom: 10px;
    color: black;
}

.price-section {
	width: auto;
    text-align: left;
	margin: 1rem 1rem;
	padding-top: 30px;
}

.gallery-container {
    display: flex;
    flex-direction: column;
	width: 100%;
}
}

@media only screen and (max-width: 1023px) {
	
.flex_vertical_center {
	display: flex;
	align-items: center;
	justify-content: center;
	flex-direction: column;
}
}



