:root{
	--primary-color:#db5079;
	--secondary-color:#0ba19e;
}
/* Buttons */
.btn-primary {
  display: inline-block;
  background:var(--primary-color);
  color: #fff;
  padding: 13px 29px;
  border: none;
  border-radius: 0px;
  text-decoration: none;
  cursor: pointer;
  transform: translateY(0);
  transition: all 0.3s ease;
  font-size:14px;
  text-transform:uppercase;
}
.btn-primary:hover {
  background: var(--secondary-color);
  transform: translateY(-3px);
  box-shadow: 0 4px 10px rgba(0,0,0,0.15);
  color:#fff;
}
/* Hero */
.hero-product{
  background-size:cover;
  background-repeat:no-repeat;
  color: #fff;
  text-align: left;
  padding: 160px 40px;
  position: relative;
  overflow: hidden;
}
.hero-product::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.4);
}

.hero-product-content {
  position: relative;
  z-index: 2;
}
.hero-product h1 {
    font-size: 3.5rem;
    margin-bottom: 10px;
    margin-top: 0;
    line-height: 1.2;
}
.hero-product p {
    margin-bottom: 20px;
    font-size: 24px;
	margin-top: 0;
}
/* Product */
.product-main-wrapper {
  background:#ccf9f5;
  padding: 60px 20px;
}
.product-container {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  align-items: center;
  margin: auto;
}
.product-img img {
  width: 100%;
  max-width: 480px;
  border-radius:0px;
}
.product-info {
  flex: 1;
}
.product-img{
	position:relative;
	overflow:hidden;
}
.badge-pro {
    display: inline-flex;
    align-items: center;
    background: var(--secondary-color);
    color: #fff;
    font-size: 0.8rem;
    padding: 6px 12px;
    border-radius: 25px;
    line-height: 1;
}
.product-info h2 {
    margin: 0;
}
.product-container {
    display: flex;
}
.product-img, .product-info {
    width: 46%;
}
.product-info p {
    margin-top: 0;
    line-height: 1.4;
}
.features {
    list-style: none;
    margin: 0 0 20px;
    padding-left: 0;
}
.price {
  margin: 10px 0;
}
.price .current {
  font-size: 1.5rem;
  font-weight: bold;
  color: #a76c3d;
}
.price .old {
  text-decoration: line-through;
  color: #888;
  margin-left: 10px;
}
.price .discount {
  background: #ff5252;
  color: #fff;
  padding: 2px 6px;
  border-radius: 3px;
  font-size: 0.8rem;
  margin-left: 8px;
}
.features {
  list-style: none;
}
.features li {
  margin-bottom: 6px;
  padding-left: 20px;
  background: url('https://cdn-icons-png.flaticon.com/512/845/845646.png') no-repeat left center;
  background-size: 14px;
}
.recommend h2 {
    margin: 0;
}
/* Gallery */
.product-gallery{
  padding: 60px 20px;
  
}
.gallery-row{
	display:flex;
	flex-wrap:wrap;
	gap:2%;
}
.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    width: calc(33% - 2%);
    background: #7497b5;
    height: 400px;
	margin-bottom:20px;
}
.gallery-item img {
    width: 100%;
    border-radius: 10px;
    object-fit: contain;
    transform: scale(1);
    transition: transform 0.4s ease;
    cursor: pointer;
    height: 100%;
}
.gallery-item::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.3);
  opacity: 0;
  transition: opacity 0.4s ease;
  border-radius: 10px;
}
.gallery-item:hover img {
  transform: scale(1.07);
}
.gallery-item:hover::after {
  opacity: 1;
}
.product-img {
    display: flex;
}
.prduct-img.back-img {
    margin-top: 80px;
    margin-left: -20px;
}
.prduct-img img {
    padding: 10px;
    background: #fff;
}
/* Recommend */
.recommend {
  text-align: center;
  padding: 60px 20px;
  background:#ccf9f5;
}
.recommend-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
  margin-top: 30px;
}
.recommend .card {
    background: #fff;
    border-radius: 10px;
    padding: 0;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    overflow: hidden;
    position: relative;
}
.recommend .card-content{
	padding:0 20px 20px;
}
.recommend .card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 15px rgba(0,0,0,0.15);
}

.recommend .card img {
  width: 100%;
  border-radius: 10px;
  margin-bottom: 10px;
  transition: transform 0.4s ease;
}
.recommend .card img:hover {
  transform: scale(1.05);
}
.recommend .card h4 {
  margin: 8px 0;
  font-size:18px;
}

