
/* =========================================
   1. GLOBAL STYLES & VARIABLES
   ========================================= */
  :root {
	--principal-color: #007456;
	--primary-color: #1e4356;
	--accent-color: #3498db;
	--fresh-green: #28a745;
	--warm-orange: #e67e22;
	--bg-soft: #f8faff;
	--text-dark: #2c3e50;
  }

  body { background-color: #fdfdfd; }
  .text-fresh { color: var(--fresh-green); font-weight: 600; }
  .text-warm { color: var(--warm-orange); font-weight: 600; }

/* =========================================
   2. HEADER SEARCH BAR (PREMIUM & ANIMATED)
   ========================================= */
  .header-search-form { position: relative; width: 260px; }
  .header-search-input {
	width: 100%; padding: 8px 40px 8px 15px; border-radius: 20px;
	border: 1px solid #dce1e6; font-size: 14px; background-color: #fff;
	color: #444; transition: all 0.3s ease; outline: none;
  }
  .header-search-input:focus {
	border-color: var(--principal-color);
	box-shadow: 0 0 0 3px rgba(0, 116, 86, 0.1);
  }
  .header-search-btn {
	position: absolute; right: 5px; top: 50%; transform: translateY(-50%);
	background: none; border: none; color: #8898aa; cursor: pointer;
	padding: 5px 10px; transition: color 0.3s;
  }
  .header-search-btn:hover { color: var(--principal-color); }

  /* --- MOBILE SEARCH --- */
  .mobile-search-toggle {
	background: #ffffff; border: 1px solid #e1e6ea; color: var(--principal-color);
	width: 40px; height: 40px; border-radius: 50%; display: flex; align-items: center; justify-content: center;
	cursor: pointer; font-size: 18px; box-shadow: 0 4px 10px rgba(0,0,0,0.05);
	transition: all 0.4s cubic-bezier(0.68, -0.55, 0.27, 1.55); padding: 0; outline: none; z-index: 20;
  }
  .mobile-search-toggle i { transition: transform 0.4s ease; }
  .mobile-search-toggle.active {
	  background: var(--principal-color); color: #fff; border-color: var(--principal-color);
	  box-shadow: 0 5px 15px rgba(0, 116, 86, 0.3); transform: scale(1.1); 
  }
  .mobile-search-toggle.active i { transform: rotate(180deg); }

  .mobile-search-expand {
	  display: none; margin-top: 15px; background: transparent; padding: 0; box-shadow: none;
	  animation: slideDown 0.4s cubic-bezier(0.165, 0.84, 0.44, 1) forwards;
	  position: relative; z-index: 10; width: 100%;
  }
  .mobile-search-expand.active { display: block; }
  .mobile-search-form { position: relative; width: 100%; }
  .mobile-search-input {
	  width: 100%; padding: 14px 50px 14px 25px; border-radius: 50px; 
	  border: 1px solid #e1e6ea; background-color: #ffffff;
	  font-size: 16px; outline: none; transition: 0.3s;
	  box-shadow: 0 5px 20px rgba(0,0,0,0.05);
  }
  .mobile-search-input:focus {
	  border-color: var(--principal-color); box-shadow: 0 5px 20px rgba(0, 116, 86, 0.15);
  }
  .mobile-search-submit {
	  position: absolute; right: 10px; top: 50%; transform: translateY(-50%);
	  background: transparent; color: #8898aa; border: none; width: 40px; height: 40px;
	  border-radius: 50%; display: flex; align-items: center; justify-content: center;
	  cursor: pointer; transition: all 0.3s; font-size: 18px;
  }
  .mobile-search-submit:hover { color: var(--principal-color); background: rgba(0, 116, 86, 0.05); }
  @keyframes slideDown { from { opacity: 0; transform: translateY(-15px); } to { opacity: 1; transform: translateY(0); } }

/* =========================================
   3. SECȚIUNE PRODUSE SIMILARE
   ========================================= */
  .related-products-section {
	padding: 100px 0; background: #f9fbfd; border-top: 1px solid #edf2f7;
	position: relative; overflow: hidden;
  }
  .section-header-styled {
	text-align: left; margin-bottom: 60px; position: relative; z-index: 2;
	background-image: radial-gradient(#007456 1px, transparent 1px);
	background-size: 20px 20px; background-position: right center;
	background-repeat: no-repeat; max-width: 800px;
  }
  .subtitle-badge {
	display: inline-flex; align-items: center; background: transparent; border: none; padding: 0;
	color: var(--principal-color); font-size: 12px; font-weight: 800;
	text-transform: uppercase; letter-spacing: 3px; margin-bottom: 15px;
  }
  .subtitle-badge::before {
	  content: ''; display: inline-block; width: 40px; height: 3px;
	  background: var(--principal-color); margin-right: 15px; border-radius: 2px;
  }
  .section-header-styled h2 {
	font-size: 42px; font-weight: 900; color: #1a3c4d; margin-bottom: 20px;
	line-height: 1.1; letter-spacing: -1px;
  }
  .section-header-styled p {
	font-size: 16px; line-height: 1.6; color: #666;
	max-width: 600px; margin-top: 15px; margin-bottom: 0; text-align: left; 
  }

  /* --- CARD UNIC & COLORAT --- */
  .product-card-unique {
	background: #ffffff; border-radius: 20px; position: relative;
	border: 2px solid var(--theme-color, #e1e6ea); 
	box-shadow: 0 10px 30px -10px rgba(0,0,0,0.1), 0 5px 15px -5px var(--theme-color);
	transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
	height: 100%; display: flex; flex-direction: column; margin: 15px 5px; overflow: hidden;
  }
  .product-card-unique:hover {
	transform: translateY(-10px);
	box-shadow: 0 20px 40px -10px rgba(0,0,0,0.15), 0 10px 25px -5px var(--theme-color);
  }
  .card-badge {
	position: absolute; top: 15px; left: 15px; background: var(--theme-color);
	color: #fff; font-size: 10px; font-weight: 800; text-transform: uppercase;
	padding: 6px 12px; border-radius: 8px; z-index: 5; box-shadow: 0 4px 10px rgba(0,0,0,0.15);
  }
  .card-image-wrap {
	height: 240px; display: flex; align-items: center; justify-content: center;
	padding: 20px; background: transparent; position: relative; overflow: hidden;
  }
  .card-image-wrap img {
	max-height: 100%; max-width: 85%; object-fit: contain; transition: transform 0.6s ease;
	filter: drop-shadow(0 5px 10px rgba(0,0,0,0.05));
  }
  .product-card-unique:hover .card-image-wrap img { transform: scale(1.12) rotate(2deg); }

  .shine-effect {
	position: absolute; top: 0; left: -100%; width: 50%; height: 100%;
	background: linear-gradient(to right, transparent, rgba(255,255,255,0.8), transparent);
	transform: skewX(-25deg); transition: 0.5s; z-index: 2; pointer-events: none;
  }
  .product-card-unique:hover .shine-effect { left: 200%; transition: 0.7s; }

  .card-info { padding: 25px; text-align: center; flex-grow: 1; display: flex; flex-direction: column; }
  .card-info h3 { font-size: 18px; font-weight: 700; margin-bottom: 10px; }
  .card-info h3 a { color: #333; text-decoration: none; transition: 0.3s; }
  .card-info h3 a:hover { color: var(--theme-color); }

  /* --- FIX TEXT: LIMITĂ LA 3 RÂNDURI PENTRU ALINIERE PERFECTĂ --- */
  .card-info p {
	font-size: 13px; color: #888; margin-bottom: 20px; flex-grow: 1;
	display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical;
	overflow: hidden; text-overflow: ellipsis;
	min-height: 55px; line-height: 1.4;
  }

  .btn-unique {
	display: inline-flex; align-items: center; justify-content: center; padding: 10px 20px;
	border-radius: 30px; font-size: 14px; font-weight: 600; text-decoration: none;
	background: #fff; color: var(--theme-color); border: 2px solid #f0f0f0; transition: all 0.3s ease;
  }
  .btn-unique:hover {
	background: var(--theme-color); border-color: var(--theme-color); color: #fff;
	box-shadow: 0 5px 15px rgba(0,0,0,0.2);
  }
  .btn-unique i { margin-left: 5px; transition: transform 0.3s; }
  .btn-unique:hover i { transform: translateX(5px); }

  /* --- FIX PAGINARE: SPAȚIU MARE ȘI Z-INDEX --- */
  .wow-pagination {
	  margin-top: 85px; 
	  padding-bottom: 10px;
	  display: flex; justify-content: center; align-items: center;
	  position: relative; z-index: 20; 
  }

  .wow-pagination .swiper-pagination-bullet {
	  width: 10px; height: 10px; background-color: #d1d9e6; opacity: 1;
	  margin: 0 6px !important; border-radius: 20px;
	  transition: all 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
	  cursor: pointer; box-shadow: inset 0 1px 3px rgba(0,0,0,0.1);
  }
  .wow-pagination .swiper-pagination-bullet:hover { background-color: #b0bec5; transform: scale(1.1); }
  .wow-pagination .swiper-pagination-bullet-active {
	  width: 45px; background-color: var(--principal-color);
	  box-shadow: 0 4px 15px rgba(0, 116, 86, 0.35);
	  animation: breathingGlow 3s ease-in-out infinite; 
  }

  @keyframes breathingGlow {
	  0% { box-shadow: 0 4px 15px rgba(0, 116, 86, 0.35); transform: scale(1); }
	  50% { box-shadow: 0 4px 25px rgba(0, 116, 86, 0.6); transform: scale(1.02); }
	  100% { box-shadow: 0 4px 15px rgba(0, 116, 86, 0.35); transform: scale(1); }
  }

  .swiper-pagination-bullet { opacity: 0.4; transition: 0.3s; background: #ccc;}
  .swiper-pagination-bullet-active { opacity: 1; background: var(--principal-color); transform: scale(1.3); }

  @media (max-width: 768px) {
	.section-header-styled { text-align: center; background-image: none; }
	.section-header-styled h2 { font-size: 32px; }
	.subtitle-badge { justify-content: center; }
	.section-header-styled p { max-width: 100%; font-size: 15px; }
	.new-breadcrumbs-section { padding-bottom: 15px; }
	.new-breadcrumbs-list { font-size: 14px; padding-right: 10px; }
  }

/* =========================================
   4. REST OF STYLES
   ========================================= */
  .new-breadcrumbs-section {
	padding-bottom: 20px; background-color: #f4f7fb; border-bottom: 1px solid #e1e6ea;
	width: 100%; position: relative; z-index: 5;
  }
  .new-breadcrumbs-list {
	display: flex; flex-wrap: wrap; list-style: none; padding: 0; margin: 0; align-items: center;
  }
  .new-breadcrumb-item { font-size: 16px; color: #6c757d; display: flex; align-items: center; }
  .new-breadcrumb-item a {
	text-decoration: none; color: #1e4356; font-weight: 600;
	transition: color 0.3s ease; display: flex; align-items: center; gap: 5px;
  }
  .new-breadcrumb-item + .new-breadcrumb-item::before {
	content: "/"; padding: 0 10px; color: #b0b8c1; font-weight: 400;
  }
  .new-breadcrumb-item.active { color: #007456; font-weight: 700; padding-left: 2px; }

  /* Ulaizer/ReO Slider & Main */
  .reo-slider {
	position: relative; overflow: hidden; padding-bottom: 50px;
	border-radius: 15px; box-shadow: 0 5px 20px rgba(0,0,0,0.05);
	background: #fff; margin-bottom: 30px; min-height: 500px;
  }
  .reo-slider .swiper-slide {
	display: flex; justify-content: center; align-items: center;
	background-color: #fff; padding: 20px 10px; height: auto;
  }
  .reo-slider img {
	width: auto; max-width: 100%; height: auto; max-height: 750px;
	object-fit: contain; display: block;
  }
  .reo-slider video {
	width: 100%; max-height: 750px; object-fit: contain; border-radius: 8px; outline: none;
  }
  .reo-slider .swiper-pagination { bottom: 20px; }
  .reo-slider .swiper-pagination-bullet {
	  width: 10px; height: 10px; background-color: #d1d9e6; opacity: 1;
	  margin: 0 6px !important; border-radius: 20px;
	  transition: all 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55); cursor: pointer;
	  box-shadow: inset 0 1px 3px rgba(0,0,0,0.1);
  }
  .reo-slider .swiper-pagination-bullet:hover { background-color: #b0bec5; transform: scale(1.1); }
  .reo-slider .swiper-pagination-bullet-active {
	  width: 45px; background-color: var(--principal-color); border-radius: 20px;
	  box-shadow: 0 4px 15px rgba(0, 116, 86, 0.35);
	  animation: breathingGlow 3s ease-in-out infinite; 
  }

  /* Footer */
  #footer {
	background: linear-gradient(to bottom, #ffffff, #fcfcfc); padding: 0 0 30px 0;
	color: #444; font-size: 14px; position: relative; box-shadow: 0 -5px 15px rgba(0,0,0,0.03); overflow: hidden;
  }
  #footer .footer-top { padding: 60px 0 30px 0; }
  #footer img { max-width: 100%; height: auto; }
  #footer h4 {
	font-size: 16px; font-weight: 800; color: var(--primary-color);
	position: relative; padding-bottom: 12px; margin-bottom: 20px;
	text-transform: uppercase; letter-spacing: 0.5px;
  }
  #footer h4::after {
	content: ''; position: absolute; display: block; width: 40px; height: 3px;
	background: var(--principal-color); bottom: 0; left: 0; border-radius: 2px;
  }
  #footer .footer-links ul { list-style: none; padding: 0; margin: 0; }
  @media (min-width: 769px) {
	  #footer .footer-links { padding-left: 30px; }
	  #footer .footer-links ul li a { padding-left: 5px; display: inline-block; transition: transform 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94), color 0.3s ease; }
	  #footer .footer-links ul li:hover a { transform: translateX(5px); color: var(--principal-color); }
  }
  #footer .footer-links ul li {
	padding: 8px 0; display: flex; align-items: center;
	border-bottom: 1px dashed #f0f0f0; transition: all 0.3s ease;
  }
  #footer .footer-links ul li:last-child { border-bottom: none; }
  #footer .footer-links ul li i {
	padding-right: 8px; color: var(--principal-color); font-size: 14px;
	font-weight: bold; line-height: 1; transition: transform 0.3s ease;
  }
  #footer .footer-links ul li i::before { content: "»"; }
  #footer .footer-links ul li a { display: inline-block; text-decoration: none; }

  .contact-item { display: flex; align-items: center; margin-bottom: 18px; transition: transform 0.3s ease; }
  .contact-item:hover { transform: translateX(5px); }
  .contact-icon {
	background: #fff; color: var(--principal-color); width: 38px; height: 38px;
	display: flex; align-items: center; justify-content: center; border-radius: 50%;
	margin-right: 12px; font-size: 18px; flex-shrink: 0; box-shadow: 0 4px 10px rgba(0,0,0,0.08); border: 1px solid #f0f0f0;
  }
  .contact-info { display: flex; flex-direction: column; }
  .contact-label { font-size: 10px; text-transform: uppercase; color: #999; font-weight: 700; margin-bottom: 2px; }
  .contact-value { color: #333; font-size: 14px; font-weight: 600; line-height: 1.3; }
  .contact-value a { color: #333; text-decoration: none; transition: 0.3s; }
  .contact-value a:hover { color: var(--principal-color); }

  #footer .footer-info p {
	  margin-top: 25px !important; margin-bottom: 35px; font-size: 14px;
	  line-height: 1.8; color: #666; max-width: 320px;
  }
  #footer .social-links { display: flex; gap: 12px; margin-top: 20px; }
  #footer .social-links a {
	  display: flex; align-items: center; justify-content: center; width: 42px; height: 42px;
	  background: transparent; border: 1px solid #b0b8c1; border-radius: 50%;
	  color: #6c757d; font-size: 20px; text-decoration: none; transition: all 0.3s ease-in-out;
  }
  #footer .social-links a:hover {
	  background: var(--principal-color); border-color: var(--principal-color);
	  color: #ffffff; box-shadow: 0 5px 15px rgba(0, 116, 86, 0.25); transform: translateY(-2px);
  }
  #footer .social-links a:hover i { transform: scale(1.05); }

  /* Footer Arrows Fix */
  #footer .footer-top .col-md-6:nth-child(1) ul li i { margin-right: 6px !important; }
  #footer .footer-top .col-md-6:nth-child(2) ul li i { margin-left: 12px !important; }

  #footer .copyright-container { border-top: 1px solid #e1e6ea; padding-top: 20px; margin-top: 10px; }
  #footer .copyright-section { text-align: center; color: #777; font-size: 13px; }
  #footer .copyright-section strong { color: var(--principal-color); }

  /* Sidebar & Details */
  .sidebar-card { background: #ffffff; padding: 25px; border-radius: 16px; box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04); margin-bottom: 25px; border: 1px solid rgba(0,0,0,0.03); transition: transform 0.3s ease; }
  .sidebar-card:hover { transform: translateY(-3px); box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08); }
  .sidebar-title { font-weight: 700; font-size: 18px; color: var(--primary-color); margin-bottom: 20px; padding-bottom: 10px; border-bottom: 2px solid #eff2f7; position: relative; }
  .sidebar-title::after { content: ''; position: absolute; bottom: -2px; left: 0; width: 50px; height: 2px; background-color: var(--accent-color); }

  .shop-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-top: 20px; }
  .shop-btn {
	display: flex; align-items: center; justify-content: center; padding: 14px 10px;
	border-radius: 8px; font-weight: 600; font-size: 14px; text-align: center;
	transition: all 0.3s ease; width: 100%; line-height: 1.2; gap: 8px;
  }
  a.shop-btn { background-color: #fff; border: 1px solid var(--principal-color); color: var(--primary-color); text-decoration: none; cursor: pointer; box-shadow: 0 2px 5px rgba(0,0,0,0.05); }
  a.shop-btn:hover { background-color: var(--principal-color); color: #fff; border-color: var(--accent-color); transform: translateY(-2px); box-shadow: 0 5px 12px rgba(52, 152, 219, 0.3); }
  div.shop-btn { background-color: #f8f9fa; border: 1px solid #e9ecef; color: #8898aa; cursor: default; }

  .info-list-styled { list-style: none; padding: 0; margin: 0; }
  .info-item { display: flex; align-items: flex-start; margin-bottom: 15px; padding-bottom: 12px; border-bottom: 1px dashed #f0f0f0; }
  .info-item:last-child { border-bottom: none; }
  .info-icon { background-color: #eff2f7; color: var(--primary-color); width: 32px; height: 32px; display: flex; align-items: center; justify-content: center; border-radius: 50%; margin-right: 12px; font-size: 16px; flex-shrink: 0; }
  .info-content { display: flex; flex-direction: column; }
  .info-label { font-size: 11px; text-transform: uppercase; font-weight: 700; color: #8898aa; letter-spacing: 0.5px; margin-bottom: 2px; }
  .info-value { font-size: 15px; font-weight: 600; color: var(--text-dark); }

  .presentation-box { background: linear-gradient(to right, #f9fbfd, #fff); border: 1px solid #e1e6ea; border-left: 4px solid var(--fresh-green); padding: 10px 15px; border-radius: 8px; display: flex; align-items: center; gap: 12px; margin-top: 15px; }
  .presentation-box img { width: 40px; height: auto; }
  .presentation-text strong { display: block; color: var(--primary-color); font-size: 15px; }
  .presentation-text span { font-size: 12px; color: #666; }

  .portfolio-description h2 { font-size: 26px; font-weight: 700; margin-bottom: 25px; color: var(--primary-color); border-bottom: 2px solid #f0f2f5; padding-bottom: 15px; text-align: center; }
  .description-text { font-size: 16px; line-height: 1.8; color: #444; }
  .section-subtitle { font-size: 1.2rem; font-weight: 700; color: var(--primary-color); margin-top: 20px; margin-bottom: 15px; display: flex; align-items: center; gap: 10px; }
  .section-subtitle i { color: var(--accent-color); font-size: 1.3rem; }

  .table-responsive { width: 100%; overflow-x: auto; }
  .pro-table { width: 100%; border-collapse: separate; border-spacing: 0; margin-bottom: 1rem; border-radius: 8px; overflow: hidden; border: 1px solid #e9ecef; font-size: 14px; }
  .pro-table thead th { background-color: var(--primary-color); color: #ffffff; font-weight: 600; padding: 12px 15px; text-transform: uppercase; font-size: 12px; letter-spacing: 0.5px; border-bottom: 2px solid var(--accent-color); }
  .pro-table thead th:nth-child(2), .pro-table tbody td:nth-child(2) { text-align: right; }
  .pro-table tbody td { padding: 12px 15px; vertical-align: middle; border-bottom: 1px solid #e9ecef; color: #495057; }
  .pro-table tbody tr:nth-of-type(even) { background-color: #f8faff; }
  .pro-table tbody tr:hover { background-color: #eef2f7; }
  .indication-row td:first-child { font-weight: 700; color: var(--primary-color); }
  .indication-row i { color: var(--warm-orange); font-size: 18px; margin-right: 8px; vertical-align: middle; }

  .benefits-box { background: linear-gradient(135deg, #ffffff 0%, #f0f9ff 100%); padding: 30px; border-radius: 15px; border: 1px solid #dbeafe; margin-top: 15px; box-shadow: 0 8px 25px rgba(52, 152, 219, 0.08); position: relative; overflow: hidden; }
  .benefits-box::before { content: ''; position: absolute; top: 0; left: 0; width: 5px; height: 100%; background: var(--fresh-green); }

  @media (max-width: 768px) {
	  #footer .footer-top { padding-top: 40px; }
	  #footer .footer-top .row { display: flex; flex-wrap: wrap; }
	  #footer .footer-top .col-md-6:nth-child(1), #footer .footer-top .col-md-6:nth-child(2) { width: 50%; margin-bottom: 30px; }
	  #footer .footer-top .col-md-6:nth-child(1) { padding-right: 5px; }
	  #footer .footer-top .col-md-6:nth-child(2) { padding-left: 5px; text-align: right; }
	  #footer .footer-top .col-md-6:nth-child(2) h4::after { left: auto; right: 0; }
	  #footer .footer-top .col-md-6:nth-child(2) ul li { flex-direction: row-reverse; justify-content: flex-start; }
	  #footer .footer-top .col-md-6:nth-child(2) ul li:hover i { transform: rotate(180deg) scale(1.1); }
	  #footer .footer-top .col-md-6:nth-child(2) ul li i { padding-right: 0; padding-left: 0; transform: rotate(180deg); margin-left: 10px; }
	  #footer .footer-top .col-md-6:nth-child(3), #footer .footer-top .col-md-6:nth-child(4) { width: 100%; display: flex; flex-direction: column; align-items: center; }
	  #footer .footer-top .col-md-6:nth-child(3) h4::after { left: 50%; transform: translateX(-50%); }
	  .contact-item { width: 100%; max-width: 280px; justify-content: flex-start; }
	  #footer .social-links { justify-content: center; margin-top: 15px; }
  }