*{
    body {
    font-family: 'Poppins', sans-serif;
}
    margin:0; padding:0; box-sizing:border-box;
    font-family:Arial, sans-serif;
}
.offer-bar{
    background:#7B0036;color:#fff;
    text-align:center;padding:7px;font-size:14px;
}
/* NAVBAR */
header{
    width:100%;
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:1.5rem 6%;
    background:#fff;
    position:sticky;
    top:0;
    z-index:100;
}

.logo {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 28px; 
    font-weight: 700;
    color: #000;
    transform: scale(1.9); 
    transform-origin: left center; 
}


.logo img {
   width: 50px;
    object-fit: contain;
    display: block;
}

nav ul{
    display:flex;
    gap:25px;
    list-style:none;
}

nav ul li a{
    text-decoration:none;
    font-weight:600;
    color:#000;
    cursor:pointer;
}

.icons i{
    font-size:18px;
    margin-left:18px;
    cursor:pointer;
}

.menu-btn{
    display:none;
    font-size:23px;
    cursor:pointer;
}

/* HIDE MOBILE ICON ROW IN DESKTOP VIEW */
.mobile-icons {
    display: none;
}

/* MOBILE MENU */
@media(max-width:900px){

    /* NAV MENU */
    nav ul{
        position:absolute;
        top:75px;
        right:0;
        flex-direction:column;
        background:#fff;
        width:100%;
        padding:20px;
        display:none;
    }

    nav.open ul{
        display:flex;
    }

    /* DESKTOP ICON ROW HIDE ON MOBILE */
    .icons{
        display:none;
    }

    /* SHOW MOBILE ICON ROW */
    .mobile-icons {
        display:flex;
        gap:20px;
        margin-top:15px;
        font-size:22px;
        justify-content:flex-start;
        padding-left:10px;
    }

    .menu-btn{
        display:block;
    }
}


/* ================= BANNER SLIDER ================= */
.banner-slider{
    width:100%;
    height: auto;
    position:relative;
    overflow:hidden;
    background:#000;  
}

.banner-slide{
    width:100%;
    display:none;
}

.banner-slide.active{
    display:block;
}

.banner-slide img{
    width:100%;
    height:auto;
    object-fit:contain;   
    display:block;
    background:#000;
}

/* ARROWS */
.banner-arrow{
    position:absolute;
    top:50%;
    transform:translateY(-50%);
    font-size:40px;
    color:white;
    background:rgba(0,0,0,0.45);
    width:50px;
    height:50px;
    border-radius:50%;
    display:flex;
    justify-content:center;
    align-items:center;
    cursor:pointer;
    z-index:10;
    transition:.3s ease-in-out;
}

.prev{ left:25px; }
.next{ right:25px; }

.banner-arrow:hover{
    background:black;
    transform:translateY(-50%) scale(1.1);
}

/* Responsive */
@media(max-width:900px){
    .banner-slide img{
        width:100%;
        height:auto;
    }
    .banner-arrow{
        font-size:32px;
        width:42px;
        height:42px;
    }
}

@media(max-width:600px){
    .banner-arrow{
        font-size:26px;
        width:35px;
        height:35px;
    }
    .prev{ left:12px; }
    .next{ right:12px; }
}


/* ABOUT SECTION */
.about {
    width: 100%;
    padding: 40px 8%;
    background: #faf4f7;
    text-align: center;
}

.about-heading {
    font-size: 46px;
    font-weight: 600;
    font-family: 'DM Serif Display', serif;
    text-transform: uppercase;
    margin-bottom: 40px;
    color: #111;
    letter-spacing: 2px;
}

.about-heading span {
    color: #7B0036;
}

/* Wrapper */
.about-wrapper {
    display: flex;
    width: 100%;
    gap: 40px;
    align-items: stretch;
}

/* Left (Image) */
.about-left, .about-right {
    flex: 1;
}

.about-left img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 18px;
    box-shadow: 0 10px 18px rgba(0,0,0,0.2);
}

/* Right (Text) */
.about-right {
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    border-radius: 18px;
    padding: 40px;
    font-size: 18px;
    line-height: 1.8;
    color: #2a2a2a;
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    box-shadow: 0 10px 18px rgba(0,0,0,0.15);
    text-align: left;
}
.about-right p b {
    font-family: 'DM Serif Display', serif;
    font-size: 22px;
    color: #7B0036;
}

/* Responsive */
@media (max-width: 900px) {
    .about-wrapper {
        flex-direction: column;
    }
    .about-heading {
        font-size: 32px;
    }
    .about-right{
        font-size: 14px;
        padding: 1rem;
    }
}



/* GENDER SECTION */
.gender-section {
    width: 100%;
    padding: 40px 7%;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
    background: #ffffff;
}

.gender-card {
    flex: 1;
    position: relative;
    overflow: hidden;
    border-radius: 18px;
    cursor: pointer;
    transition: 0.4s ease-in-out;
}

.gender-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: 0.4s ease-in-out;
    aspect-ratio: 3 / 2;
}

/* Hover Zoom Effect */
.gender-card:hover img {
    transform: scale(1.12);
    filter: brightness(60%);
}
.buy-now-btn {
    background: #ff0066;
    color: white;
    padding: 10px 22px;
    border-radius: 8px;
    border: none;
    text-decoration: none;
    font-size: 16px;
    /* display: inline-block; */
}
/* Overlay Text */
.gender-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #ffffff;
    font-size: 32px;
    font-weight: 700;
    letter-spacing: 2px;
    opacity: 1;
    text-transform: uppercase;
    pointer-events: none;
    transition: 0.4s ease-in-out;
}

/* Hover Text Effect */
.gender-card:hover .gender-overlay {
    transform: translate(-50%, -50%) scale(1.08);
}

/* Responsive */
@media(max-width: 900px){
    .gender-section {
        flex-direction: column;
        padding: 50px 6%;
    }
    .gender-overlay {
        font-size: 26px;
    }
}


/* SECTION TITLE */
.section-title{
    text-align:center;
    font-size:32px;
    font-weight:700;
    margin-bottom:25px;
    color:#4B0054;
}

/* PRODUCT GRID */
.product-wrapper{
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    /* padding: 0 20px 40px; */
}

/* CARD STYLE */
.product-card{
    background:#fff;
    border-radius:12px;
    overflow:hidden;
    text-align:center;
    border:1px solid #eee;
    position:relative;
    transition:.3s;
}
.product-card:hover{
    transform: translateY(-5px);
    box-shadow:0 8px 20px rgba(0,0,0,0.1);
}

/* IMAGE BOX */
.img-box{
    position:relative;
    overflow:hidden;
}

/* .product-card img{
    width:100%;
    height:250px;
    object-fit:cover;
} */

/* SALE BADGE */
.badge{
    position:absolute;
    top:10px;
    right:10px;
    background:#ff5c24;
    color:#fff;
    font-size:12px;
    padding:3px 8px;
    border-radius:4px;
    z-index:9;
}

/* ACTION ICONS (Hovered) */
.product-actions{
    position:absolute;
    bottom:40px;
    left:50%;
    transform:translateX(-50%) translateY(30px);
    display:flex;
    gap:10px;
    opacity:0;
    transition:.35s ease;
}
.product-card:hover .product-actions{
    opacity:1;
    transform:translateX(-50%) translateY(0);
}

/* BUTTONS */
.action-bt{
    width:28px;
    height:28px;
    border:none;
    border-radius:50%;
    background:#ffffffcf;
    backdrop-filter: blur(5px);
    cursor:pointer;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:15px;
    color:#000000;
    transition:.3s;
}
.action-bt:hover{
    background:#ff4a1e;
    color:#fff;
}

/* TEXT */
.prod-title{
    margin:12px 0 3px;
    font-size:18px;
    font-weight:600;
    color:#222;
}
.prod-cat{
    font-size:14px;
    color:#777;
    margin-bottom:10px;
}

.price .new{
    color:#7B0036;
    font-weight:700;
    margin-right:7px;
}
.price .old{
    color:#888;
    text-decoration:line-through;
}


.view-more-box {
    width: 100%;
    display: flex;
    justify-content: center;  
    margin-top: 2.5rem;
}

.view-more-btn {
    padding: 12px 30px;
    background: #7B0036;
    color: white;
    font-size: 18px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    display: inline-block;
    transition: 0.3s ease;
    margin-bottom: 20px;
}

.view-more-btn:hover {
    background: #550025;
    transform: translateY(-2px);
}
  



/* ANIMATION */
@keyframes show{
    from{transform:scale(0.95);opacity:0;}
    to{transform:scale(1);opacity:1;}
}

/* LEFT IMAGE */
.modal-left img{
    width:320px;
    height:330px;
    object-fit:cover;
    border-radius:12px;
}

/* RIGHT SIDE */
.modal-right{
    flex:1;
}

.old-price{
    text-decoration:line-through;
    color:#777;
    font-size:17px;
}
.new-price{
    color:#E80063;
    font-size:22px;
    font-weight:700;
}

/* QUANTITY */
.qty-box{
    display:flex;
    align-items:center;
    gap:10px;
    margin:15px 0;
}
.qty-btn{
    width:32px;
    height:32px;
    border:none;
    background:#eee;
    border-radius:6px;
    font-size:20px;
    cursor:pointer;
}
#qtyInput{
    width:40px;
    height:32px;
    text-align:center;
}

/* BUTTONS */
.modal-buttons{
    display:flex;
    gap:12px;
    margin-top:20px;
}
.buy-now{
    background:#FF006A;
    color:white;
    padding:10px 20px;
    border-radius:8px;
    border:none;
    cursor:pointer;
}
.add-cart{
    background:#7B00FF;
    color:white;
    padding:10px 20px;
    border-radius:8px;
    border:none;
    cursor:pointer;
}

/* CLOSE BUTTON */
.close-btn{
    position:absolute;
    right:25px;
    top:15px;
    font-size:28px;
    cursor:pointer;
}

/* RESPONSIVE */
@media(max-width:768px){
    .modal-content{
        flex-direction:column;
        width:90%;
    }
    .modal-left img{
        width:100%;
        height:260px;
    }
}

.img-box img{
  transition: transform .4s ease;
}
.product-card:hover .img-box img{
  transform: scale(1.05);
}

/* MODAL BACKGROUND */
.product-modal{
  position:fixed;
  inset:0;
  background:rgba(0,0,0,.65);
  display:none;
  align-items:center;
  justify-content:center;
  z-index:9999;
}

/* MODAL BOX */
.modal-box{
  background:#fff;
  width:900px;
  max-width:95%;
  border-radius:14px;
  padding:25px;
  display:flex;
  gap:30px;
  position:relative;
}

/* CLOSE */
.close-btn{
  position:absolute;
  top:10px;
  right:15px;
  font-size:28px;
  color:#ff4a4a;
  cursor:pointer;
}

/* LEFT IMAGE */
.modal-left img{
  width:360px;
  height:420px;
  object-fit:cover;
  border-radius:12px;
}

/* RIGHT CONTENT */
.modal-right h2{
  font-size:28px;
  margin-bottom:4px;
}
.m-category{
  font-size:15px;
  color:#777;
}
.m-desc{
  margin:12px 0;
  color:#555;
  font-size:15px;
}

/* PRICE */
.price-box{
  margin:12px 0;
}
.price-box .old{
  text-decoration:line-through;
  color:#999;
  margin-right:12px;
}
.price-box .new{
  color:#e6005c;
  font-size:22px;
  font-weight:700;
}

/* QUANTITY */
.qty-box{
  display:flex;
  align-items:center;
  gap:10px;
  margin:15px 0;
}
.qty-box button{
  width:32px;
  height:32px;
  border:none;
  background:linear-gradient(135deg,#ff5f8a,#8f2bff);
  color:#fff;
  border-radius:6px;
  font-size:18px;
}
.qty-box input{
  width:45px;
  text-align:center;
}

/* BUY BUTTON */
.buy-btn{
  display:inline-block;
  background:linear-gradient(90deg,#ff4d6d,#a100ff);
  color:#fff;
  padding:12px 35px;
  border-radius:10px;
  text-decoration:none;
  font-weight:600;
  margin:15px 0;
}

/* META */
.meta{
  font-size:14px;
  color:#666;
}

/* RESPONSIVE */
@media(max-width:768px){
  .modal-box{
    flex-direction:column;
    text-align:center;
  }
  .modal-left img{
    width:100%;
    height:260px;
  }
}



/* RESPONSIVE */
@media(max-width:1200px){
    .product-wrapper{grid-template-columns:repeat(3,1fr);}
}
@media(max-width:992px){
    .product-wrapper{grid-template-columns:repeat(2,1fr);}
}
@media(max-width:600px){
    .product-wrapper{grid-template-columns:1fr;}
    /* .product-card img{height:200px;} */
    .section-title{font-size:26px;}
}

/* SLIDER */
.slider-container {
    width: 100%;
    overflow: hidden;
}

.slider {
    display: flex;
    gap: 18px;
    transition: transform .5s ease-in-out;
}

/* PRODUCT CARD */
.product-card {
    background: #fff;
    border: 1px solid #00000000;
    min-width: calc(25% - 18px);
    border-radius: 12px;
    padding: 15px;
    transition: .3s;
    text-align: center;
}

/* .product-card img {
    width: 100%;
    height: 240px;
    object-fit: contain;
} */

.product-card:hover {
    transform: scale(1.05);
    box-shadow: 0px 6px 18px rgba(0,0,0,0.15);
}

/* PRICE */
.product-card p {
    font-size: 17px;
    margin-top: 6px;
    font-weight: 600;
}

/* ============================= */
/* PRODUCT IMAGE – FINAL FIX */
/* ============================= */

.img-box{
  width: 100%;
  height: 260px;              
  background: #f5f5f5;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.img-box img{
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;       
}

/* ============================= */
/* PRODUCT IMAGE – PERFECT SIZE */
/* ============================= */

.img-box{
  width: 100%;
  height: 260px;           
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.img-box img{
  width: auto;
  height: 100%;
  max-width: 100%;
  object-fit: contain;      
}

/* ============================= */
/* PRODUCT IMAGE – SAME HEIGHT & WIDTH */
/* ============================= */

.img-box{
  width: 100%;
  height: 260px;             
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: #fff;
}

.img-box img{
  width: 100%;
  height: 100%;
  object-fit: cover;          
}

/* RESPONSIVE */
@media(max-width:768px){
  .img-box{ height:220px; }
}
@media(max-width:480px){
  .img-box{ height:200px; }
}


/* RESPONSIVE */
@media(max-width:768px){
  .img-box{ height:220px; }
}
@media(max-width:480px){
  .img-box{ height:200px; }
}


/* RESPONSIVE */
@media(max-width:768px){
  .img-box{ height:220px; }
}

@media(max-width:480px){
  .img-box{ height:200px; }
}

/* RESPONSIVE */
@media (max-width: 992px){
    .product-card { min-width: calc(33.33% - 18px); }
}

@media (max-width: 720px){
    .product-card { min-width: calc(50% - 18px); }
}

@media (max-width: 480px){
    .product-card { min-width: calc(100% - 18px); }
    .arrow { display: none; }
    .slider { overflow-x: scroll; scroll-behavior: smooth; }
    .slider::-webkit-scrollbar { display: none;}
}


/* Background Parallax Section WITH SOFT DARK OVERLAY */
.gift-section {
    background:
        linear-gradient(rgba(0, 0, 0, 0.45), rgba(0, 0, 0, 0.45)), /* soft dark overlay */
        url('perfumephoto/product3.jpg') center/cover no-repeat;
    min-height: 90vh;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 30px;
    position: relative;
    color: #ffffff;
    background-attachment: fixed;
}


/* Overlay if needed */
/*
.gift-section::before {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: rgba(0,0,0,0.45);
    backdrop-filter: blur(2px);
}
*/

.gift-content {
    max-width: 700px;
    z-index: 2;
    padding: 20px;
}

.gift-content h2 {
    font-size: 38px;
    font-weight: 700;
    line-height: 45px;
    margin-bottom: 15px;
}

.gift-content p {
    font-size: 16px;
    margin-bottom: 20px;
    line-height: 27px;
}

.gift-btn {
    padding: 12px 32px;
    border: 1px solid #fff;
    border-radius: 30px;
    text-decoration: none;
    color: #fff;
    font-weight: 500;
    font-size: 18px;
    transition: 0.3s;
}

.gift-btn:hover {
    background: #fff;
    color: #000;
}

/* Responsive */
@media (max-width: 768px) {
    .gift-content h2 {
        font-size: 28px;
        line-height: 35px;
    }
     .gift-section {
        background:
            linear-gradient(rgba(0, 0, 0, 0.55), rgba(0, 0, 0, 0.55)),
            url('perfumephoto/product3.jpg') center/cover no-repeat;
        background-attachment: scroll; /* mobile-friendly */
        padding: 40px 20px;
    }
    .gift-content p {
        font-size: 14px;
    }
}



.perfume-info-section {
    display: flex;
    width: 100%;
    min-height: 100vh;
    overflow: hidden;
}

.perfume-left {
    width: 50%;
}

.perfume-left img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: none;
}

.perfume-left img.active {
    display: block;
}

.perfume-right {
    width: 50%;
    background: #111;
    color: white;
    text-align: center;
    padding: 60px 60px;
    position: relative;
    display: flex;
    justify-content: center;
    flex-direction: column;
    gap: 20px;
}

.perfume-right h2 {
    font-size: 26px;
    margin-bottom: 10px;
}

.perfume-right p {
    font-size: 16px;
    line-height: 26px;
}

.info-slide {
    display: none;
}

.info-slide.active {
    display: block;
}

.slide-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: transparent;
    border: 2px solid white;
    font-size: 22px;
    padding: 6px 12px;
    border-radius: 50%;
    cursor: pointer;
    color: white;
    transition: .3s;
}

.slide-btn:hover {
    background: white;
    color: black;
}

.left {
    left: 20px;
}

.right {
    right: 20px;
}

.dots {
    margin-top: 15px;
}

.dot {
    width: 10px;
    height: 10px;
    border: 2px solid white;
    border-radius: 50%;
    display: inline-block;
    margin: 0 6px;
    cursor: pointer;
}

.dot.active {
    background: white;
}

/* Responsive */
@media (max-width:900px) {
    .perfume-info-section {
        flex-direction: column;
    }

    .perfume-left, .perfume-right {
        width: 100%;
        height: 50vh;
    }

    .perfume-right {
        padding: 35px 20px;
    }
}
.testimonial-section {
    text-align: center;
    padding: 40px 20px;
    background: #fafafa;
}

.testimonial-section h2 {
    font-size: 34px;
    margin-bottom: 30px;
    font-weight: 600;
}

/* SLIDER OUTER BOX */
.slider-container {
    width: 100%;
    position: relative;
    overflow: hidden;
    padding: 0 60px; /* space for arrows */
}

/* ARROWS - FIXED + ALWAYS VISIBLE */
.arrow-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: #6c4ed2;
    border: none;
    padding: 12px 18px;
    color: white;
    font-size: 24px;
    border-radius: 50%;
    cursor: pointer;
    z-index: 20; /* stays on top ALWAYS */
}

.arrow-btn:hover {
    background: #5536c7;
}

.arrow-btn.left {
    left: 10px;
}

.arrow-btn.right {
    right: 10px;
}

/* WRAPPER */
.slider-wrapper {
    display: flex;
    gap: 20px;
    transition: transform 0.5s ease-in-out;
}

/* CARD */
.testimonial-card {
    min-width: 320px;
    background: #fff;
    border-radius: 15px;
    padding: 25px;
    text-align: center;
    box-shadow: 0px 5px 20px rgba(0, 0, 0, 0.12);
    border-top: 5px solid #6c4ed2;
}

.testimonial-card img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid #6c4ed2;
}

.stars {
    font-size: 18px;
    color: #ffb600;
    margin: 8px 0;
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .testimonial-card {
        min-width: 260px;
    }

    .arrow-btn {
        padding: 8px 12px;
        font-size: 18px;
    }

    .slider-container {
        padding: 0 40px;
    }
}

@media (max-width: 480px) {
    .testimonial-card {
        min-width: 220px;
    }

    .arrow-btn {
        padding: 6px 10px;
        font-size: 16px;
    }

    .slider-container {
        padding: 0 30px;
    }
}


/* video section */
.video-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    padding: 40px 6%;
    background: #000;
    flex-wrap: wrap;
}

.video-block {
    flex: 1 1 550px;
    animation: fadeIn 1.2s ease;
}

.video-block video {
    width: 100%;
    height: 360px;
    border-radius: 12px;
    object-fit: cover;
}

.text-block {
    flex: 1 1 450px;
    color: #fff;
    animation: slideIn 1.2s ease;
}
@media (max-width:768px) {
   .video-block {
    flex: none;
}
 .text-block {
    flex: none;
}
}
.text-block h2 {
    font-size: 42px;
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: 1.5px;
    margin-bottom: 18px;
    text-transform: uppercase;
}

.text-block p {
    font-size: 17px;
    line-height: 1.9;
    color: #e5e5e5;
}

/* animations */
@keyframes fadeIn {
    from {opacity: 0; transform: scale(.95);}
    to {opacity: 1; transform: scale(1);}
}

@keyframes slideIn {
    from {opacity: 0; transform: translateX(40px);}
    to {opacity: 1; transform: translateX(0);}
}

/* responsive */
@media (max-width: 992px) {
    .text-block h2 { font-size: 34px; }
}

@media (max-width: 768px) {
    .video-wrapper {
        flex-direction: column;
        text-align: center;
    }

    .text-block {
        margin-top: 10px;
    }

    .video-block video {
        height: 300px;
    }
}


.perfume-section {
    width: 100%;
    padding: 40px 9%;
    background: #faf8f5;
    font-family: 'Poppins', sans-serif;
    color: #2b2b2b;
}
/* Top Icons Row */
.top-info {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.info-box {
    flex: 1;
    min-width: 260px;
    background: #ffffff;
    border-radius: 14px;
    padding: 25px 20px;
    text-align: center;

    /* Soft shadow */
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.06);
    border: 1px solid #f3efe9;

    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.info-box:hover {
    transform: translateY(-6px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
}

.icon {
    font-size: 32px;
    display: block;
    margin-bottom: 8px;
}

/* Responsive */
@media (max-width: 900px) {
    .top-info {
        gap: 15px;
    }
}

@media (max-width: 768px) {
    .info-box {
        min-width: 45%;
    }
}

@media (max-width: 500px) {
    .info-box {
        min-width: 100%;
    }
}


/* Categories */
.category h3 {
    font-size: 22px;
    margin-bottom: 12px;
    font-weight: 600;
}

.tags a {
    display: inline-block;
    margin: 4px 6px;
    padding: 7px 12px;
    border-radius: 20px;
    border: 1px solid #bfa78e;
    color: #6b5443;
    font-size: 14px;
    transition: 0.3s;
    text-decoration: none;
}

.tags a:hover {
    background: #bfa78e;
    color: #fff;
}

/* Description */
.desc-block {
    margin-top: 35px;
}

.desc-block h2 {
    font-size: 28px;
    font-weight: 600;
    color: #4c3a2f;
    margin-bottom: 15px;
}

.desc-block p {
    margin-bottom: 15px;
    line-height: 1.7;
    color: #5a4c42;
}

/* Button */
.btn-learn {
    display: inline-block;
    margin-top: 10px;
    padding: 12px 24px;
    background: #4c3a2f;
    color: #fff;
    text-decoration: none;
    border-radius: 30px;
    font-weight: 500;
    transition: 0.3s;
}

.btn-learn:hover {
    background: #bfa78e;
    color: #fff;
}

/* footer  */


/* footer  */
.footer {
    background: #f4ede6;
    padding: 2.5rem 8% 25px; 
    color: #3b2f28;
    font-family: 'Poppins', sans-serif;
}

.footer-container {
    display: flex;
    justify-content: space-evenly; 
    flex-wrap: wrap;
    gap: 30px; 
}

.footer-col {
    min-width: 240px; 
    flex: 1; max-width: 320px; 
}

.footer-about {
    max-width: 300px;
}

.footer-logo {
    width: 160px;
    margin-bottom: 15px;
}

/* Titles */
.footer-col h4 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 16px;
    color: #7b4f2a;
}

.social-links a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    /* background: #fff; */
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-right: 10px;
    font-size: 18px;
    /* color: #333; */
    transition: 0.3s;
}

.social-links a:hover {
    /* background: #7B0036; */
    /* color: #fff; */
}

.social-links a {
    color: #3b2f28; 
    font-size: 20px;
    margin-right: 10px;
    transition: 0.3s ease;
}

/* RESPONSIVE */
@media(max-width:600px){
    .footer-col {
        text-align: center;
    }
    .social-links a {
        margin: 8px;
    }
}

/* Links */
.footer-col ul {
    list-style: none;
    padding: 0;
}

.footer-col ul li {
    margin-bottom: 10px;
}

.footer-col ul li a {
    color: #4c3b32;
    text-decoration: none;
    transition: 0.3s;
    font-size: 15px;
}

.footer-col ul li a:hover {
    color: #7b4f2a;
    margin-left: 4px;
}

/* Social icons */
.social-links a {
    font-size: 24px;
    margin-right: 14px;
    color: #7b4f2a;
    text-decoration: none;
    transition: 0.3s;
}

.social-links a:hover {
    opacity: 0.7;
}

/* Contact info */
.contact-info {
    margin-top: 15px;
    font-size: 15px;
    color: #4c3b32;
}

.contact-info i {
    margin-right: 8px;
    color: #7b4f2a;
    font-size: 18px;
}

/* Bottom */
.footer-bottom {
    text-align: center;
    margin-top:2rem;
    border-top: 1px solid #c8b8a8;
    padding-top: 15px;
    font-size: 14px;
    color: #5a4a41;
}

.footer-bottom a {
    color: #7b4f2a;
    font-weight: 600;
    text-decoration: none;
}

.footer-bottom a:hover {
    text-decoration: underline;
}

/* Responsive */
@media (max-width: 768px) {
    .footer-container {
        flex-direction: column;
        text-align: center;
        align-items: center;
    }

    .social-links a {
        margin-right: 10px;
    }

    .contact-info p {
        justify-content: center;
    }

    .footer-col ul li a:hover {
        margin-left: 0;
    }
}

/* Floating WhatsApp & Call Buttons */
:root{
--size:60px;
--gap:12px;
--right-offset:20px;
--bottom-offset:20px;
}


.floating-actions{
position: fixed;
right: var(--right-offset);
bottom: var(--bottom-offset);
display: flex;
flex-direction: column;
gap: var(--gap);
z-index: 999999;
}


.action-btn{
width: var(--size);
height: var(--size);
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
color: #ffffff;
box-shadow: 0 6px 18px rgba(0,0,0,0.2);
text-decoration: none;
transition: transform 0.2s ease;
}


.action-btn:hover{
transform: translateY(-6px);
}


/* WhatsApp */
.whatsapp{
background: #25D366;
}


/* Call */
.call{
background: #007AFF;
}


.floating-actions svg{
width: 60%;
height: 60%;
fill: white;
}

.whatsapp i {
    font-size: 35px;   
}

@media(max-width:600px){
:root{ --size:50px; --right-offset:14px; --bottom-offset:14px; }
}