﻿*{
    margin:0;
    padding:0;
    box-sizing:border-box;

}

/*Header Section*/
body{
    font-family: 'Poppins', sans-serif;
}

/* Header */

.main-header{
    transition:.4s;
    z-index:999;
    background:#fff;
}

.main-header.scrolled{
    background:#8B3A4A;
    box-shadow:0 8px 25px rgba(0,0,0,.12);
}

.navbar-brand{
    color:#fff;
    font-weight:700;
    padding:0;
}

.navbar-brand img{
    width:280px;
    height:auto;
}

.nav-link{
    font-size:16px;
    font-weight:500;
    margin:0 12px;
    transition:.3s;
    color:#111;
}

.nav-link:hover,
.navbar-nav .nav-link.active{
    color:#8B3A4A;
}

.shop-btn{
    background:#8B3A4A;
    color:#fff;
    padding:11px 28px;
    border-radius:50px;
    font-weight:600;
    transition:.3s;
}

.shop-btn:hover{
    background:#111;
    color:#fff;
}

.navbar-toggler{
    background:#fff;
    border-radius:8px;
}

@media(max-width:768px){
.navbar-brand img {
  width: 260px;
  height: auto;
}
}

/*Hero section*/
.hero-section{
    min-height:100vh;
    display:flex;
    align-items:center;
    padding:140px 0 80px;
    background:linear-gradient(to right, rgba(112, 29, 46, 0.93),rgba(61, 8, 20, 0.06)), 
        url(../img/hero1.png) center/cover;
    color:#fff;
}

.hero-tag{
    display:inline-block;
    background:rgba(255,255,255,.15);
    padding:10px 22px;
    border-radius:50px;
    margin-bottom:25px;
    font-weight:500;
}

.hero-section h1{
    font-size:50px;
    font-weight:700;
    line-height:1.2;
    margin-bottom:25px;
}

.hero-section h1 span{
    color:#FFD7DE;
}

.hero-section p{
    font-size:18px;
    line-height:1.9;
    margin-bottom:35px;
    color:#f3f3f3;
}

.hero-btns{
    margin-bottom:40px;
}

.btn-primary-custom{
    background:#fff;
    color:#8B3A4A;
    padding:14px 35px;
    border-radius:50px;
    font-weight:600;
    text-decoration:none;
    margin-right:15px;
}

.btn-primary-custom:hover{
    background:#4C1F29;
    color: #fff;
}

.btn-outline-custom{
    border:2px solid #fff;
    color:#fff;
    padding:14px 35px;
    border-radius:50px;
    text-decoration:none;
}

.btn-outline-custom:hover{
    background:#fff;
    color:#8B3A4A;
}

.hero-features{
    display:flex;
    gap:25px;
    flex-wrap:wrap;
}

.hero-features div{
    font-weight:500;
}

.hero-features i{
    color:#FFD7DE;
    margin-right:8px;
}

.hero-img{
    max-width:550px;
    width:100%;
    height:auto;
    border-radius:40px;
}

@media(max-width:768px){
    .hero-section{
    min-height:50vh;
    display:flex;
    align-items:center;
    padding:100px 0 50px;
    background:linear-gradient(to right, rgba(112, 29, 46, 0.7),rgba(61, 8, 20, 0.62)),
         url(../img/hero.png) center/cover;
    color:#fff;
}
    .right-hero{
        display:none;
    }
 .btn-primary-custom, .btn-outline-custom {
  padding: 10px 15px;
  border-radius: 50px;
  font-size: 14px;
    margin-right: 0;

}
 .hero-section h1 {
  font-size: 45px;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 25px;
}
 .hero-tag {
  padding: 5px 20px;
  margin-bottom: 20px;
  font-weight: 500;
  font-size: 13px;
}
 .hero-features {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  font-size: 14px;
}
 .hero-section p {
  font-size: 14px;
  line-height: 1.9;
  margin-bottom: 25px;
  color: #f3f3f3;
}

}


/*Footer section*/
.footer-section{
    background:#2B2526;
    color:#fff;
    padding:70px 0 25px;
}

.footer-section img {
  width: 300px;
  height: auto;
  background: #fff;
  border-radius: 5px;
  margin-bottom: 10px;
}

.footer-text{
    line-height:1.9;
    color:#f3e8ea;
}

.footer-section h5{
    margin-bottom:22px;
    font-weight:600;
}

.footer-links{
    list-style:none;
    padding:0;
    margin:0;
}

.footer-links li{
    margin-bottom:12px;
}

.footer-links a{
    color:#f3e8ea;
    text-decoration:none;
    transition:.3s;
}

.footer-links a:hover{
    color:#FFD6DC;
    padding-left:6px;
}

.footer-section p{
    color:#f3e8ea;
    line-height:1.8;
}

.footer-section i{
    margin-right:10px;
}

.social-icons{
    margin-top:20px;
}
.social-icons i{
    margin-right:0px;
}

.social-icons a{
    width:42px;
    height:42px;
    display:inline-flex;
    justify-content:center;
    align-items:center;
    background:rgba(255,255,255,.12);
    color:#fff;
    border-radius:50%;
    margin-right:10px;
    text-decoration:none;
    transition:.3s;
}

.social-icons a:hover{
    background:#fff;
    color:#7B2F3E;
    transform:translateY(-4px);
}

.footer-section hr{
    border-color:rgba(255,255,255,.15);
    margin:35px 0 25px;
}

.footer-bottom{
    display:flex;
    justify-content:space-between;
    align-items:center;
    flex-wrap:wrap;
}

.footer-bottom p{
    margin:0;
    font-size:15px;
}

/*About section*/
.about-section{
    background:#fff;
    padding:90px 0 50px;
}

.about-tag{
    display:inline-block;
    background:#f8e6ea;
    color:#8B3A4A;
    padding:8px 22px;
    border-radius:30px;
    font-size:14px;
    font-weight:600;
    margin-bottom:20px;
}

.about-section h2{
    font-size:42px;
    font-weight:600;
    margin-bottom:25px;
    color:#222;
}

.about-section h2 span{
    color:#8B3A4A;
}

.about-section p{
    color:#666;
    line-height:1.9;
    margin-bottom:18px;
}

.about-img img{
    width:100%;
}

.feature-box{
    background:#fff;
    border:1px solid #eee;
    border-radius:12px;
    padding:22px;
    text-align:center;
    transition:.3s;
    height:100%;
}

.feature-box:hover{
    transform:translateY(-6px);
}

.feature-box i{
    font-size:32px;
    color:#8B3A4A;
    margin-bottom:15px;
}

.feature-box:hover i{
    color:#222;
}

.about-btn{
    background:#8B3A4A;
    color:#fff;
    padding:12px 32px;
    border-radius:40px;
    text-decoration:none;
}

.about-btn:hover{
    background:#6f2936;
    color:#fff;
}

.counter-box{
    border-radius:15px;
    padding:35px 20px;
    transition:.3s;
}
.counter-box:hover{
    background:rgba(139, 58, 74, 0.16);
}

.counter-box h2{
    color:#222;
    font-size:42px;
    font-weight:700;
    margin-bottom:10px;
}

.counter-box:hover h2{
    color:#8B3A4A;
}

.counter-box p{
    margin:0;
    color:#555;
    font-weight:500;
}

.counter-box:hover p{
    color:#8B3A4A;
}
@media(max-width:768px){
    .about-section h2 {
  font-size: 35px;
  font-weight: 600;
  margin-bottom: 25px;
  color: #222;
}
}

/*category Section*/
.categories-section{
    padding:70px 0;
    background:#8b3a4a17;
}

.section-tag{
    display:inline-block;
    padding:8px 20px;
    border-radius:30px;
    background:#f6e8ea;
    color:#8B3A4A;
    font-size:14px;
    font-weight:600;
    margin-bottom:15px;
}

.categories-section h2{
    font-size:42px;
    font-weight:600;
    margin-bottom:15px;
}

.categories-section p{
    color:#666;
    max-width:700px;
    margin:auto;
}

.category-card{
    background:#fff;
    border-radius:20px;
    overflow:hidden;
    transition:.4s;
    box-shadow:0 10px 30px rgba(0,0,0,.08);
    height:100%;
}

.category-card:hover{
    transform:translateY(-10px);
}

.category-card img{
    width:100%;
    aspect-ratio:4/5;
    object-fit:cover;
}

.category-content{
    padding:15px;
}

.category-content h4{
    font-weight:500;
    margin-bottom:15px;
}

.category-content p{
    color:#666;
    line-height:1.5;
    margin-bottom:20px;
    font-size: 15px;
}

.category-content a{
    color:#8B3A4A;
    text-decoration:none;
    font-weight:600;
}
@media(max-width:768px){
  .categories-section h2 {
  font-size: 30px;
  font-weight: 600;
  margin-bottom: 15px;
}
  .category-content h4 {
  font-weight: 700;
  margin-bottom: 10px;
  font-size: 15px;
}
  .category-content {
  padding: 10px;
}
  .category-content a {
  color: #8B3A4A;
  text-decoration: none;
  font-weight: 600;
  font-size: 13px;
}
}

/*Products section*/
.container{
    max-width:1140px;
    margin:0 auto;
    padding:0 10px;
    box-sizing:border-box;
  
}
  .product-types{
    background: #E5E5E55C;
}
  .product-types p{
    color: #666;
  max-width: 700px;
  margin: auto;
}
.product-img-grid {
    display: flex;
    gap: 25px;
    margin-top: 40px;
    overflow:hidden;
}
 #productSlider {
    scroll-behavior: smooth;
}


.product-img-card {
    width:23%;
    position: relative;
    border-radius: 12px;
    cursor: pointer;
    background: #7b2f3e69;
    padding: 5px;
    aspect-ratio:4/5;
    box-sizing: border-box;
  
}

.product-img-card img {
    width: 100%;
    height:100%;
    object-fit: cover;
    display: block;
    transition: 0.4s ease;
    border-radius: 12px;
}

.product-img-card .overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 0%;
    background: linear-gradient(to top,#000,transparent);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    font-size: 20px;
    font-weight: 600;
    transition: 0.4s ease;
}

.product-img-card:hover img {
    transform: scale(1.08);
}

.product-img-card:hover .overlay {
    height: 40%;
    opacity: 1;
}
.product-types h2{
    font-size: 42px;
  font-weight: 600;
  margin-bottom: 15px;
}
.carousel-wrapper {
    position: relative;
    width: 100%;
}

.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    background: #00000090;
    border: none;
    padding: 5px 16px;
    color: white;
    font-size: 23px;
    cursor: pointer;
    border-radius: 50%;
}

.carousel-btn:hover {
    background: #000000cc;
}

.carousel-btn.prev {
    left: -10px;
}

.carousel-btn.next {
    right: -10px;
}

/* Prevent shrinking */
.product-img-card {
    flex-shrink: 0;
    min-width: 230px;
    overflow: clip;
}


@media (max-width: 768px) {

    .product-img-grid {
        height: auto !important;             
    }

    .product-img-card {
  flex-shrink: 0;
  min-width: 156px;
  overflow: clip;
}
    .product-types h2 {
  font-size: 30px;
  font-weight: 600;
  margin-bottom: 15px;
}
}

/*Features*/
.why-choose{
    background:#faf8f8;
    padding:100px 0;
}

.sub-title{
    display:inline-block;
    background:#f6e7ea;
    color:#8B3A4A;
    padding:8px 22px;
    border-radius:30px;
    font-size:14px;
    font-weight:600;
    letter-spacing:1px;
    margin-bottom:18px;
}

.section-heading h2{
    font-size:42px;
    font-weight:600;
    margin-bottom:15px;
}

.section-heading p{
    color:#666;
    max-width:700px;
    margin:auto;
}

.why-card{
    background:#fff;
    border-radius:20px;
    padding:25px 20px;
    text-align:center;
    transition:.4s;
    height:100%;
    border:1px solid #f1f1f1;
    position:relative;
    overflow:hidden;
}

.why-card::before{
    content:"";
    position:absolute;
    left:0;
    top:0;
    width:0;
    height:4px;
    background:#8B3A4A;
    transition:.4s;
}

.why-card:hover::before{
    width:100%;
}

.why-card:hover{
    transform:translateY(-10px);
    box-shadow:0 20px 45px rgba(139,58,74,.12);
}

.icon-box{
    width:90px;
    height:90px;
    border:2px solid #8B3A4A;
    border-radius:50%;
    display:flex;
    justify-content:center;
    align-items:center;
    margin:auto auto 25px;
    transition:.4s;
}

.icon-box i{
    font-size:38px;
    color:#8B3A4A;
}

.why-card:hover .icon-box{
    background:#8B3A4A;
}

.why-card:hover .icon-box i{
    color:#fff;
}

.why-card h4{
    font-size: 20px;
  font-weight: 600;
  margin-bottom: 10px;
}

.why-card p{
    color:#666;
    line-height:1.5;
    margin:0;
    font-size: 15px;
}
@media(max-width:768px){
    .section-heading h2 {
  font-size: 34px;
  font-weight: 600;
  margin-bottom: 15px;
}
    .icon-box {
  width: 50px;
  height: 50px;
  border: 2px solid #8B3A4A;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: auto 0px 25px;
  transition: .4s;
}
    .icon-box i {
  font-size: 25px;
  color: #8B3A4A;
}
    .why-card {
  background: #fff;
  border-radius: 20px;
  padding: 10px 10px;
  text-align: start;
  transition: .4s;
  height: 100%;
  border: 1px solid #f1f1f1;
  position: relative;
  overflow: hidden;
}
    .why-card p {
  color: #666;
  line-height: 1.5;
  margin: 0;
  font-size: 13px;
}
 }

/*Founder msg*/
.founder-section{
    padding:100px 0;
    background:#fff;
}

.section-tag{
    display:inline-block;
    padding:8px 22px;
    background:#f8e9ec;
    color:#8B3A4A;
    border-radius:30px;
    font-size:14px;
    font-weight:600;
    letter-spacing:1px;
    margin-bottom:20px;
}

.founder-section h2{
    font-size:42px;
    font-weight:600;
    margin-bottom:30px;
    color:#222;
}

.founder-image{
    position:relative;
}

.founder-image img{
    width:100%;
    border-radius:25px;
    box-shadow:0 20px 45px rgba(0,0,0,.12);
}

.quote-box{
    background:#faf8f8;
    border-left:5px solid #8B3A4A;
    padding:35px;
    border-radius:0 20px 20px 0;
    position:relative;
}

.quote-icon{
    font-size:55px;
    color:#8B3A4A;
    opacity:.15;
    position:absolute;
    top:18px;
    right:25px;
}

.quote-box p{
    color:#555;
    line-height:1.9;
    margin-bottom:20px;
    font-size:16px;
}

.quote-box p:last-child{
    margin-bottom:0;
}

.founder-info{
    margin-top:35px;
}

.founder-info h4{
    font-size:28px;
    margin-bottom:5px;
    color:#8B3A4A;
    font-weight:600;
}

.founder-info span{
    color:#777;
    font-size:15px;
    letter-spacing:.5px;
}
@media(max-width:768px){
    .founder-section h2 {
  font-size: 30px;
  font-weight: 600;
  margin-bottom: 30px;
  color: #222;
}
}

/*Water & wellness*/
.water-section{
    padding:25px 0;
    background:url("../img/waterion.png")  center/cover;
    background-position-x:75%;
    overflow:hidden;
}

.water-image{

    position:relative;
}

.water-image img{

    width:100%;

    border-radius:30px;

    transition:.5s;

    filter:drop-shadow(0 25px 35px rgba(0,0,0,.15));

}

.water-image:hover img{

    transform:scale(1.03);

}

.water-content{

    background:rgba(255,255,255,.75);

    backdrop-filter:blur(15px);

    padding:40px;

    border-radius:30px;

    box-shadow:0 20px 50px rgba(0,0,0,.08);

}

.section-tag{

    display:inline-block;

    padding:8px 22px;

    background:#f7e6e9;

    color:#8B3A4A;

    border-radius:40px;

    font-weight:600;

    margin-bottom:20px;

    letter-spacing:1px;

}

.water-content h2{

    font-size:48px;

    font-weight:600;

    margin-bottom:20px;

    color:#222;

}

.water-content p{

    color:#666;

    line-height:1.9;

    margin-bottom:35px;

}

.feature-list{

    display:grid;

    grid-template-columns:1fr 1fr;

    gap:20px;

    margin-bottom:35px;

}

.feature-item{

    display:flex;

    align-items:center;

    gap:12px;

}

.feature-item i{

    font-size:24px;

    color:#8B3A4A;

}

.feature-item span{

    font-weight:500;

    color:#444;

}

.water-btn{

    display:inline-block;

    padding:15px 35px;

    background:#8B3A4A;

    color:#fff;

    text-decoration:none;

    border-radius:50px;

    transition:.4s;

}

.water-btn:hover{

    background:#6f2936;

    color:#fff;

    transform:translateY(-3px);

}
@media(max-width:768px){
    .water-content h2 {
  font-size: 36px;
  font-weight: 600;
  margin-bottom: 20px;
  color: #222;
}
    .water-content {
  background: rgba(255,255,255,.75);
  backdrop-filter: blur(15px);
  padding: 25px;
  border-radius: 30px;
  box-shadow: 0 20px 50px rgba(0,0,0,.08);
}
    .feature-item span {
  font-weight: 500;
  color: #444;
  font-size: 12px;
}
    .feature-item i {
  font-size: 15px;
  color: #8B3A4A;
}
    .feature-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 20px;
}
    .water-content p {
  color: #666;
  line-height: 1.7;
  margin-bottom: 35px;
}
}

/*cta section*/
.cta-section{

    padding:60px 0;

    background:#faf7f7;

}

.cta-box{

    background:linear-gradient(135deg,#8B3A4A,#430d17);

    border-radius:30px;

    padding:30px 60px;

    text-align:center;

    color:#fff;

    position:relative;

    overflow:hidden;

}

.cta-box::before{

    content:"";

    position:absolute;

    width:350px;

    height:350px;

    background:rgba(255,255,255,.05);

    border-radius:50%;

    top:-120px;

    left:-120px;

}

.cta-box::after{

    content:"";

    position:absolute;

    width:280px;

    height:280px;

    background:rgba(255,255,255,.05);

    border-radius:50%;

    bottom:-100px;

    right:-100px;

}

.cta-tag{

    display:inline-block;

    padding:10px 24px;

    background:rgba(255,255,255,.15);

    border:1px solid rgba(255,255,255,.25);

    border-radius:30px;

    font-size:14px;

    letter-spacing:1px;

    margin-bottom:25px;

}

.cta-box h2{

    font-size:36px;

    font-weight:600;

    line-height:1.3;

    max-width:800px;

    margin:auto;

}

.cta-box p{

    max-width:700px;

    margin:20px auto 25px;

    line-height:1.9;

    font-size:17px;

    color:#f2f2f2;

}

.cta-buttons{

    display:flex;
    justify-content:center;
    align-items: center;
    gap:20px;
    flex-wrap:wrap;

}


@media(max-width:768px){
    .cta-box {
  background: linear-gradient(135deg,#8B3A4A,#430d17);
  border-radius: 30px;
  padding: 25px 20px;
  text-align: center;
  color: #fff;
  position: relative;
  overflow: hidden;
}
    .cta-box h2 {
  font-size: 30px;
  font-weight: 600;
  line-height: 1.3;
  max-width: 800px;
  margin: auto;
}
}

/*contact page*/
.contact-banner{

    padding:110px 0 40px;

    background:#faf7f7;

    text-align:center;

}

.page-tag{

    display:inline-block;

    background:#f5e5e8;

    color:#8B3A4A;

    padding:8px 22px;

    border-radius:30px;

    font-weight:600;

    margin-bottom:20px;

}

.contact-banner h1{

    font-size:32px;

    font-weight:600;

    margin-bottom:20px;

}

.contact-banner p{

    max-width:650px;

    margin:auto;

    color:#666;

}

.contact-info{

    background:#8B3A4A;

    color:#fff;

    padding:45px;

    border-radius:25px;

    height:100%;

}

.contact-info h3{

    margin-bottom:20px;

}

.contact-info>p{

    opacity:.9;

    margin-bottom:40px;

}

.info-box{

    display:flex;

    gap:20px;

    margin-bottom:35px;

    align-items:flex-start;

}

.info-box i{

    width:60px;

    height:60px;

    background:rgba(255,255,255,.12);

    border-radius:50%;

    display:flex;

    justify-content:center;

    align-items:center;

    font-size:22px;

}

.info-box h5{

    margin-bottom:6px;

}

.contact-form{

    background:#fff;

    padding:30px;

    border-radius:25px;

    box-shadow:0 10px 35px rgba(0,0,0,.08);

}

.contact-form h3{

    margin-bottom:30px;

}

.form-control{

    border-radius:12px;

    padding:15px;

    border:1px solid #ddd;

    box-shadow:none;

}

.form-control:focus{

    border-color:#8B3A4A;

    box-shadow:none;

}

textarea{

    resize:none;

}

.contact-btn{

    background:#8B3A4A;

    color:#fff;

    border:none;

    padding:16px 40px;

    border-radius:50px;

    transition:.3s;

}

.contact-btn:hover{

    background:#6d2435;

}

.map-section{

    margin-top:80px;

}

.map-section iframe{

    width:100%;

    height:450px;

    border:none;

}

/*About page*/
.about-story{

    padding:100px 0;

    background:#fff;

}

.story-image{

    overflow:hidden;

    border-radius:30px;

}

.story-image img{

    width:100%;

    border-radius:30px;

    transition:.5s;

}

.story-image:hover img{

    transform:scale(1.05);

}

.section-tag{

    display:inline-block;

    padding:8px 22px;

    background:#f6e7ea;

    color:#8B3A4A;

    border-radius:30px;

    font-size:14px;

    font-weight:600;

    letter-spacing:1px;

    margin-bottom:20px;

}

.about-story h2{

    font-size:37px;

    font-weight:600;

    margin-bottom:25px;

    color:#222;

}

.about-story p{

    color:#666;

    line-height:1.9;

    margin-bottom:20px;

}

.story-counter{

    display:flex;

    gap:25px;

    margin-top:40px;

}

.counterbox{

    background:#faf7f7;

    padding:30px;

    border-radius:20px;

    text-align:center;

    min-width:170px;

    transition:.4s;

}

.counterbox:hover{

    background:#8B3A4A;

    transform:translateY(-8px);

}

.counterbox h3{

    font-size:38px;

    font-weight:700;

    color:#8B3A4A;

    margin-bottom:10px;

}

.counterbox span{

    color:#666;

    font-weight:500;

}

.counterbox:hover h3,

.counterbox:hover span{

    color:#fff;

}

.vision-mission{

    padding:100px 0;

    background:#faf7f7;

}

.section-desc{

    max-width:700px;

    margin:auto;

    color:#666;

    line-height:1.8;

}

.vm-card{

    background:#fff;

    border-radius:30px;

    padding:30px;

    height:100%;

    position:relative;

    overflow:hidden;

    transition:.4s;

    border:1px solid #eee;

}

.vm-card::before{

    content:"";

    position:absolute;

    top:0;

    left:0;

    width:6px;

    height:100%;

    background:#8B3A4A;

}

.vm-card:hover{

    transform:translateY(-10px);

    box-shadow:0 20px 45px rgba(0,0,0,.08);

}

.vm-icon{

    width:65px;

    height:65px;

    border:2px solid #8B3A4A;

    border-radius:50%;

    display:flex;

    justify-content:center;

    align-items:center;

    margin-bottom:30px;

    transition:.4s;

}

.vm-icon i{

    font-size:34px;

    color:#8B3A4A;

}

.vm-card:hover .vm-icon{

    background:#8B3A4A;

}

.vm-card:hover .vm-icon i{

    color:#fff;

}

.vm-card h3{

    font-size:30px;

    font-weight:700;

    margin-bottom:20px;

}

.vm-card p{

    color:#666;

    line-height:1.7;

    margin:0;

}
@media(max-width:768px) {
    .about-story h2 {
        font-size: 30px;
        font-weight: 600;
        margin-bottom: 25px;
        color: #222;
    }

    .counter-box {
        background: #faf7f7;
        padding: 15px;
        border-radius: 20px;
        text-align: center;
        min-width: 90px;
        transition: .4s;
    }

    .story-counter {
        display: flex;
        gap: 10px;
        margin-top: 40px;
    }

    .about-story {
        padding: 100px 0 80px;
        background: #fff;
    }

    .vm-card {
        background: #fff;
        border-radius: 30px;
        padding: 30px;
        height: 100%;
        position: relative;
        overflow: hidden;
        transition: .4s;
        border: 1px solid #eee;
    }

    .vm-icon i {
        font-size: 25px;
        color: rgb(139, 58, 74);
    }

    .vm-icon {
        width: 50px;
        height: 50px;
        border: 2px solid rgb(139, 58, 74);
        border-radius: 50%;
        display: flex;
        justify-content: center;
        align-items: center;
        margin-bottom: 10px;
        transition: 0.4s;
    }

    .vm-card h3 {
        font-size: 25px;
        font-weight: 600;
        margin-bottom: 10px;
    }
}

/*product page*/
.products-page{

    padding:100px 0;
    background:#fff;

}

.product-filter{

    display:flex;
    justify-content:center;
    gap:15px;
    margin-bottom:50px;
    flex-wrap:wrap;

}

.product-filter button{

    border:1px solid #8B3A4A;
    background:#fff;
    color:#8B3A4A;
    padding:12px 25px;
    border-radius:30px;
    transition:.3s;
    cursor:pointer;

}

.product-filter button.active,
.product-filter button:hover{

    background:#8B3A4A;
    color:#fff;

}

.product-card{

    border-radius:20px;
    overflow:hidden;
    background:#fff;
    box-shadow:0 10px 30px rgba(0,0,0,.08);
    transition:.4s;

}

.product-card:hover{

    transform:translateY(-8px);

}

.product-card img{

    width:100%;
    aspect-ratio:4/5;
    object-fit:cover;

}

.product-content{

    padding:25px;
    text-align:center;

}

.product-content h4{

    font-size:22px;
    margin-bottom:15px;
    font-weight:700;

}

.product-content a{

    display:inline-block;
    text-decoration:none;
    color:#8B3A4A;
    font-weight:600;

}

.product-content a:hover{

    text-decoration:underline;

}.products-page{

    padding:100px 0;
    background:#fff;

}

.product-filter{

    display:flex;
    justify-content:center;
    gap:15px;
    margin-bottom:50px;
    flex-wrap:wrap;

}

.product-filter button{

    border:1px solid #8B3A4A;
    background:#fff;
    color:#8B3A4A;
    padding:12px 25px;
    border-radius:30px;
    transition:.3s;
    cursor:pointer;

}

.product-filter button.active,
.product-filter button:hover{

    background:#8B3A4A;
    color:#fff;

}

.product-card{

    border-radius:20px;
    overflow:hidden;
    background:#fff;
    box-shadow:0 10px 30px rgba(0,0,0,.08);
    transition:.4s;

}

.product-card:hover{

    transform:translateY(-8px);

}

.product-card img{

    width:100%;
    aspect-ratio:4/5;
    object-fit:cover;

}

.product-content{

    padding:20px;
    text-align:center;

}

.product-content h4{

    font-size:20px;
    margin-bottom:15px;
    font-weight:600;

}

.product-content a{

    display:inline-block;
    text-decoration:none;
    color:#8B3A4A;
    font-weight:600;

}

.product-content a:hover{

    text-decoration:underline;

}
@media(max-width:768px){
    .product-content h4 {
  font-size: 15px;
  margin-bottom: 10px;
  font-weight: 600;
}
    .product-content {
  padding: 10px;
  text-align: start;
}
    .product-content a {
  display: inline-block;
  text-decoration: none;
  color: rgb(139, 58, 74);
  font-weight: 500;
  font-size: 15px;
}
}