*{
    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;
}

#mobileFilterBox{
    background-color: whitesmoke;
    padding: 1rem;
    height: 100vh;
    overflow-y: scroll;
}
#product-list{
    overflow-y: scroll;
    height: 100vh;
}

/* 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;
    }
}


* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}
/* =============== BLOG / ABOUT BANNER =============== */
.about-banner {
    width: 100%;
    height: 70vh;
    position: relative;
    overflow: hidden;
}

/* Banner Image */
.about-banner img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Dark Overlay */
.about-banner::after {
    content: "";
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: rgba(0,0,0,0.45);   /* Desktop overlay */
    z-index: 1;
}

/* Banner Text */
.banner-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: white;
    text-shadow: 0 3px 10px rgba(0,0,0,0.6);
    z-index: 2; /* above overlay */
}

.banner-text h1 {
    font-size: 60px;
    font-weight: 700;
    margin: 0;
}

/* =============== RESPONSIVE =============== */

/* TABLET */
@media (max-width: 992px) {

    .about-banner {
        height: 50vh;
    }

    .about-banner::after {
        background: rgba(0,0,0,0.60); /* stronger tablet overlay */
    }

    .banner-text h1 {
        font-size: 45px;
    }
}

/* MOBILE */
@media (max-width: 600px) {

    .about-banner {
        height: 35vh;
    }

    .about-banner::after {
        background: rgba(0,0,0,0.70); 
    }

    .banner-text h1 {
        font-size: 28px;
    }
}

/* DESKTOP  */
@media (min-width: 769px) {
    .mobile-filter-btn,
    .mobile-filter-top {
        display: none !important;
    }
}

/* MOBILE: Auto grid */
@media (max-width: 768px) {
    .products {
        display: grid;
        grid-template-columns: repeat(auto-fill, minmax(150px, 1fr)) !important;
        gap: 18px !important;
    }

    /* Card full width properly */
    .card {
        width: 100% !important;
    }

    /* Image not cropped weirdly */
    .card img {
        width: 100%;
        height: auto;
        object-fit: cover;
        border-radius: 10px;
    }
}

/* ---------- DEFAULT (Laptop/Tablet) ---------- */
.filter-box {
    display: block;
}

/* DESKTOP  */
@media (min-width: 769px) {
    .mobile-filter-btn,
    .mobile-filter-top {
        display: none !important;
    }
}

/* ---------- MOBILE FILTER ONLY ---------- */
@media (max-width: 768px) {

    /* Hide Desktop Filter */
    .filter-box {
        display: none !important;
    }

    /* Show mobile button */
    .mobile-filter-btn {
        display: flex !important;
        align-items: center;
        gap: 8px;
        background: #000;
        color: #fff;
        width: max-content;
        padding: 10px 16px;
        border-radius: 6px;
        margin: 12px auto;
        font-size: 18px;
        cursor: pointer;
        font-weight: 600;
    }

    .mobile-filter-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 15px;
}

.mobile-filter-top h3 {
    font-size: 20px;
    font-weight: 700;
    margin: 0;
}

.closeMobileFilter {
    font-size: 28px;
    cursor: pointer;
    font-weight: bold;
}


    /* Overlay */
    #filterOverlay {
        display: none;
        position: fixed;
        inset: 0;
        background: rgba(0,0,0,0.5);
        z-index: 999;
    }

    /* Sliding box */
    .mobile-filter {
        display: block !important;
        position: fixed;
        top: 0;
        left: -300px;
        width: 260px;
        height: 100vh;
        background: #fff;
        padding: 20px;
        box-shadow: 3px 0 6px rgba(0,0,0,0.25);
        z-index: 1000;
        overflow-y: auto;
        transition: left .35s ease;
    }

    .mobile-filter.open {
        left: 0;
    }

    /* 2-COLUMN PRODUCT GRID ON MOBILE */
    .products {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 18px !important;
    }
}

/* ---------- DEFAULT (Laptop/Tablet) ---------- */
.filter-box {
    display: block;
}
/* ---------- MOBILE FILTER ONLY ---------- */
@media (max-width: 768px) {

    /* Hide Desktop Filter */
    .filter-box {
        display: none !important;
    }

    /* Show mobile button */
    .mobile-filter-btn {
        display: flex !important;
        align-items: center;
        gap: 8px;
        background: #000;
        color: #fff;
        width: max-content;
        padding: 10px 16px;
        border-radius: 6px;
        margin: 12px auto;
        font-size: 18px;
        cursor: pointer;
        font-weight: 600;
    }

    /* Overlay */
    #filterOverlay {
        display: none;
        position: fixed;
        inset: 0;
        background: rgba(0,0,0,0.5);
        z-index: 999;
    }

    /* Sliding box */
    .mobile-filter {
        display: block !important;
        position: fixed;
        top: 0;
        left: -300px;
        width: 260px;
        height: 100vh;
        background: #fff;
        padding: 20px;
        box-shadow: 3px 0 6px rgba(0,0,0,0.25);
        z-index: 1000;
        overflow-y: auto;
        transition: left .35s ease;
    }

    .mobile-filter.open {
        left: 0;
    }
}

/* HOVER ICONS ALWAYS ON MOBILE */
@media (max-width: 768px) { 
    .hover-icons {
        opacity: 1 !important;
        bottom: 15px !important;
    }
}

/* HOVER ICONS NORMAL DESKTOP */
.hover-icons {
    position: absolute;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 9px;
    opacity: 0;
    transition: 0.3s;
}

.card:hover .hover-icons {
    opacity: 1;
    bottom: 20px;
}

/* POPUP RESPONSIVE FIX */
.popup-content {
    width: 90%;
    max-width: 900px;
    background: white;
    display: flex;
    gap: 25px;
    border-radius: 15px;
    padding: 25px;
    position: relative;
}

/* TABLET */
@media (max-width: 900px) {
    .popup-content {
        flex-direction: column;
        text-align: center;
    }

    .popup-left img {
        width: 100% !important;
        max-width: 350px;
        margin: auto;
        height: auto !important;
    }
}

/* MOBILE */
@media (max-width: 600px) {
    .popup-content {
        padding: 18px;
    }

    .popup-right h2 {
        font-size: 20px;
    }

    .popup-buttons button,
    .popup-buttons a {
        width: 100%;
    }
}

/* Layout */
.product-container {
    display: flex;
    padding: 40px 1rem;
    gap: 40px;
}

/* LEFT FILTER */
.filter-box {
    width: 240px;
    background: #f5f1ee;
    padding: 20px;
    border-radius: 10px;
}

.filter-box h3 {
    margin-bottom: 15px;
}

.filter{
    width: 100%;
    background: #fff;
    color: black;
    padding: 12px;
    border-radius: 6px;
    cursor: pointer;
    font-size: 18px;
    margin-top: 12px;
    border: none;
    display: block;
    text-align: left;
}

/* H4 → Button */
.accordion-item {
    margin-top: 12px;
}

.accordion-btn {
    width: 100%;
    padding: 1rem !important;
    background: #f7f7f7;
    color: #333;
    border-radius: 6px;
    font-size: 16px;
    cursor: pointer;
    border: 1px solid #ddd;
    transition: 0.3s;
    
}

.accordion-btn:hover {
    background: #ececec;
}

.accordion-btn.active {
    background: #e0dede;
}

.products {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 25px;

    align-content: start;   
}




/* H4 ke baad wali sublist hidden */
.sublist {
    list-style: none;
    margin: 0;
    margin-top: 8px;
    padding-left: 5px;
    display: none;
}

.filter-box li {
    padding: 10px;
    margin: 5px 0;
    cursor: pointer;
    background: white;
    color: #000;
    border-radius: 6px;
    font-size: 14px;
    transition: 0.3s;
}

.filter-box li:hover,
.filter-box li.active {
    background: #fff;
    color: black;
}

.accordion-btn {
    width: 100%;
    background: #fff;
    color: black;
    padding: 5px;
    border-radius: 6px;
    cursor: pointer;
    font-size: 15px;
    margin-top: 12px;
    border: none;
    display: block;
    text-align: left;
}

.sublist {
    display: none;
    padding-left: 10px;
    margin-top: 8px;
}



/* RIGHT PRODUCTS */
.products {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 25px;
    width: 100%;
    padding-bottom: 0;
    margin-bottom: 0;
}

.card {
    background: white;
    padding: 10px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    transition: 0.3s;
     height: max-content;  
     flex-direction: column;
}

.card:hover {
    transform: translateY(-5px);
}

.card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 8px;
}

.card h3 {
    margin: 8px 0 4px;
    font-size: 16px;
    font-weight: 600;
}

.card p {
    margin-bottom: 5px; 
    color: #7b0036;
    font-weight: 600;
}

/* Desktop  */
.product-container {
    display: flex;
    padding: 40px 1rem;
    gap: 40px;
}

/* IMAGE BOX CONTAINER */
.img-box {
    position: relative;
    width: 100%;
}

/* HOVER ICONS CENTER */
.hover-icons {
    position: absolute;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 12px;
    opacity: 0;
    transition: 0.3s;
}

/* ICON STYLE */
.hover-icons span {
    width: 25px;
    height: 25px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 15px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
    cursor: pointer;
    transition: 0.3s;
}

.hover-icons span:hover {
    transform: scale(1.1);
}

/* SHOW ICONS ON HOVER */
.card:hover .hover-icons {
    opacity: 1;
    bottom: 20px;
}

/* POPUP BACKDROP */
.popup-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.65);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 10000;
    padding: 15px;
}

/* MAIN POPUP BOX */
.popup-content {
    width: 80%;
    max-width: 700px;
    background: white;
    display: flex;
    gap: 25px;
    border-radius: 15px;
    padding: 25px;
    position: relative;
    animation: fadeZoom 0.25s ease-in-out;
}

/* ANIMATION */
@keyframes fadeZoom {
    from { transform: scale(0.8); opacity: 0; }
    to { transform: scale(1); opacity: 1; }
}

/* CLOSE BUTTON */
.close-popup {
    position: absolute;
    right: 5px;
    top: 15px;
    font-size: 32px;
    cursor: pointer;
}

/* LEFT IMAGE */
.popup-left img {
    width: 400px;
    height: 390px;
    border-radius: 12px;
}

/* RIGHT SIDE TEXT */
.popup-right {
    flex: 1;
}

.popup-right h2 {
    margin: 5px 0 10px;
    font-size: 30px;
}

.old-price {
    text-decoration: line-through;
    color: gray;
    margin: 3px 0;
}

.new-price {
    color: #7b0036;
    font-weight: bold;
    font-size: 22px;
    margin-bottom: 10px;
}

.qty-box {
    display: flex;
    align-items: center;
    gap: 10px;
}

.qty-box button {
    width: 36px;
    height: 36px;
    background: #e6005c;
    color: white;
    font-size: 20px;
    border: none;
    border-radius: 8px;
    cursor: pointer;
}

.qty-box input {
    width: 45px;
    text-align: center;
    font-size: 18px;
}

/* BUTTONS */
.popup-buttons {
    margin-top: 18px;
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.popup-buttons button {
    padding: 10px 22px;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    cursor: pointer;
}

.popup-buttons .buy-now {
    background: #ff0066;
    color: white;
}

.popup-buttons .add-cart {
    background: #6a0dad;
    color: white;
}

.buy-now-btn {
    background: #ff0066;
    color: white;
    padding: 10px 22px;
    border-radius: 8px;
    border: none;
    text-decoration: none;
    font-size: 16px;
    /* display: inline-block; */
}

/* RESPONSIVE — TABLET (max-width: 900px) */
@media (max-width: 900px) {
    .popup-content {
        flex-direction: column;
        width: 90%;
        padding: 20px;
        text-align: center;
    }

    .popup-left img {
        width: 100%;
        max-width: 330px;
        margin: 0 auto;
    }

    .popup-buttons {
        justify-content: center;
    }

    .popup-right h2 {
        font-size: 22px;
    }
}

/* POPUP BACKDROP */
.popup-modal {
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: rgba(0,0,0,0.65);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 99999;
    padding: 15px;
}

/* POPUP BOX */
.popup-content {
    width: 90%;
    max-width: 900px;
    max-height: 600px;        
    background: #fff;
    display: flex;
    gap: 20px;
    border-radius: 15px;
    padding: 20px;
    overflow-y: auto;        
    animation: fadeZoom 0.25s ease;
}

@keyframes fadeZoom {
    from { transform: scale(0.85); opacity: 0; }
    to { transform: scale(1); opacity: 1; }
}

/* CLOSE BUTTON */
.close-popup {
    position: absolute;
    right: 5px;
    top: 10px;
    font-size: 30px;
    cursor: pointer;
}

/* LEFT IMAGE */
.popup-left img {
    width: 350px;            
    height: 330px;
    object-fit: cover;
    border-radius: 12px;
}

/* RIGHT CONTENT */
.popup-right {
    flex: 1;
}

.popup-right h2 {
    font-size: 26px;
    margin-bottom: 10px;
}

.old-price {
    text-decoration: line-through;
    color: gray;
}

.new-price {
    color: #7b0036;
    font-size: 22px;
    font-weight: bold;
}


/* ============ TABLET =============== */
@media (max-width: 900px) {
    .popup-content {
        flex-direction: column;  
        align-items: center;
        text-align: center;
        max-height: 600px;      
    }

    .popup-left img {
        width: 90%;
        max-width: 260px;      
        height: auto;
    }

    .popup-buttons {
        justify-content: center;
    }
}

/* ============ MOBILE =============== */
@media (max-width: 600px) {

    .popup-content {
        padding: 15px;
        max-height: 550px;       
    }

    .popup-left img {
        width: 80%;
        max-width: 200px;       
        height: auto;
        margin: auto;
    }

    .popup-right h2 {
        font-size: 20px;
    }

    .qty-box button {
        width: 30px;
        height: 30px;
        font-size: 16px;
    }

    .popup-buttons button,
    .popup-buttons a {
        width: 100%;             
    }
}

/* RESPONSIVE — MOBILE (max-width: 600px) */
@media (max-width: 600px) {
    .popup-content {
        padding: 15px;
        border-radius: 12px;
    }

    .close-popup {
        top: 10px;
        right: 5px;
        font-size: 28px;
    }

    .popup-right h2 {
        font-size: 20px;
    }

    .qty-box button {
        width: 32px;
        height: 32px;
        font-size: 18px;
    }

    .popup-buttons button {
        width: 100%;
        padding: 12px 0;
        font-size: 15px;
    }
}

/* RESPONSIVE */
@media (max-width: 900px) {

    .product-container {
    display: flex;
    gap: 40px;
    padding: 40px 6%;
}

@media (max-width: 900px) {
    .product-container {
        display: flex;
        flex-direction: row;
        align-items: flex-start;
        gap: 20px;
        padding: 20px 4%;
    }
}

@media (max-width: 600px) {
    .product-container {
        flex-direction: row;
        gap: 15px;
        padding: 15px 3%;
    }
}


    /* Filter always left */
    .filter-box {
        width: 100%;
        position: relative;
        z-index: 10;
    }

    .products {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 25px;
    width: 100%;
}

@media (max-width: 900px) {
    .products {
        grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
        gap: 18px;
    }
}

@media (max-width: 600px) {
    .products {
        grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
        gap: 15px;
    }
}


    .card img {
        height: 150px;
    }
}

@media (max-width: 600px) {

    .product-container {
        grid-template-columns: 150px 1fr; 
        gap: 15px;
    }

    .products {
        grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
        gap: 12px;
    }

    .card img {
        height: 130px;
    }
}

/* BACKDROP */
.popup-modal {
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: rgba(0,0,0,0.7);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 99999;
    padding: 15px;
}

/* MAIN POPUP */
.popup-content {
    width: 80%;
    max-width: 900px;
    background: white;
    display: flex;
    gap: 25px;
    border-radius: 15px;
    padding: 25px;
    position: relative;
    animation: fadeZoom 0.25s ease-in-out;
}

@keyframes fadeZoom {
    from { transform: scale(0.85); opacity: 0; }
    to   { transform: scale(1); opacity: 1; }
}

.close-popup {
    position: absolute;
    right: 5px;
    top: 15px;
    font-size: 32px;
    cursor: pointer;
}

/* IMAGE */
.popup-left img {
    width: 380px;
    height: 380px;
    border-radius: 12px;
    object-fit: cover;
}

/* TEXT */
.popup-right { flex: 1; }

.popup-right h2 {
    font-size: 28px;
    margin-bottom: 10px;
}

.old-price {
    text-decoration: line-through;
    color: gray;
}

.new-price {
    color: #7b0036;
    font-size: 22px;
    font-weight: bold;
}

/* Qty */
.qty-box {
    display: flex;
    gap: 10px;
    margin: 10px 0;
}
.qty-box button {
    width: 36px;
    height: 36px;
    background: #e6005c;
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 20px;
    cursor: pointer;
}
.qty-box input {
    width: 45px;
    text-align: center;
    font-size: 18px;
}

/* BUTTONS */
.popup-buttons {
    margin-top: 18px;
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.buy-now-btn {
    background: #ff0066;
    color: white;
    padding: 10px 22px;
    border-radius: 8px;
    text-decoration: none;
}

.add-cart {
    background: #6a0dad;
    color: white;
    padding: 10px 22px;
    border-radius: 8px;
}

/* RESPONSIVE TABLET */
@media (max-width: 900px) {
    .popup-content {
        flex-direction: column;
        width: 90%;
        text-align: center;
    }
    .popup-left img {
        width: 100%;
        max-width: 320px;
        height: auto;
        margin: 0 auto;
    }
    .popup-content {
    width: 80%;
    max-width: 300px;
    height: 600px;
    background: white;
    display: flex;
    gap: 25px;
    border-radius: 15px;
    padding: 25px;
    position: relative;
    animation: fadeZoom 0.25s ease-in-out;
}
}

/* RESPONSIVE MOBILE */
@media (max-width: 600px) {
    .popup-content {
        padding: 15px;
    }
    .popup-right h2 {
        font-size: 22px;
    }
    .popup-buttons a,
    .popup-buttons button {
        width: 100%;
        text-align: center;
    }
    .popup-content {
    width: 80%;
    max-width: 300px;
    height: 600px;
    background: white;
    display: flex;
    gap: 25px;
    border-radius: 15px;
    padding: 25px;
    position: relative;
    animation: fadeZoom 0.25s ease-in-out;
}
}

.view-more-btn {
    display: none;
    padding: 10px 18px;
    margin: 20px auto;
    background: #7b0036;
    color: white;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-size: 16px;
    font-weight: 600;
    height: 50px;
    display: block; /* center-align */
}



/* 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;
}

/* 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: #fff;
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; }
}