*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body{
    margin: 0;
    padding: 0;
    font-family: inter;
}

nav {
            display: flex;
            justify-content: space-between;
            align-items: center;
            background-color: rgba(255, 255, 255, 0.95);
            padding: 1rem 2rem;
            /* box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1); */
            
            position: sticky;
            top: 0;
            z-index: 1000;
        }

        .logo-container {
            display: flex;
            align-items: center;
        }

        .logo {
            height: 40px;
            margin-right: 10px;
        }

        .logo-text {
            font-size: 1.2rem;
            font-weight: 700;
            color: #2c3e50;
        }

        .nav-links {
            display: flex;
            list-style: none;
        }

        .nav-links li {
            margin-left: 2rem;
            position: relative;
        }

        .nav-links a {
            text-decoration: none;
            color: #2c3e50;
            font-weight: 500;
            font-size: 1rem;
            transition: color 0.3s ease;
            padding: 0.5rem 0;
        }

        .nav-links a:hover {
            color: #d18e36;
        }

        .nav-links a::after {
            content: '';
            position: absolute;
            width: 0;
            height: 2px;
            bottom: 0;
            left: 0;
            background-color: #d18e36;
            transition: width 0.3s ease;
        }

        .nav-links a:hover::after {
            width: 100%;
        }

        .hamburger {
            display: none;
            cursor: pointer;
            background: none;
            border: none;
            font-size: 1.8rem;
            color: #998b8b;
            z-index: 1001;
        }

        @media screen and (max-width: 768px) {
            /* nav {
                padding: 1rem;
            } */

            .nav-links {
                position: fixed;
                top: 0;
                left: 0;
                width: 100%;
                height: 100vh;
                background-color: rgba(255, 255, 255, 0.98);
                flex-direction: column;
                justify-content: center;
                align-items: center;
                clip-path: circle(0px at top right);
                transition: clip-path 0.8s ease;
                z-index: 100;
            }

            .nav-links.open {
                clip-path: circle(1500px at top right);
            }

            .nav-links li {
                margin: 1.5rem 0;
                opacity: 0;
                transform: translateY(-20px);
                transition: opacity 0.5s ease, transform 0.5s ease;
            }

            .nav-links.open li {
                opacity: 1;
                transform: translateY(0);
            }

            .nav-links li:nth-child(1) {
                transition-delay: 0.2s;
            }
            .nav-links li:nth-child(2) {
                transition-delay: 0.3s;
            }
            .nav-links li:nth-child(3) {
                transition-delay: 0.4s;
            }

            .hamburger {
                display: block;
            }

            .hamburger .fa-times {
                display: none;
            }

            .hamburger.open .fa-bars {
                display: none;
            }

            .hamburger.open .fa-times {
                display: block;
            }
        }
          @media (max-width: 480px) {
            .hamburger{
                font-size: 1.30rem;
            }
          }



        /* HEROOOOO */
            .hero {
            min-height: 100vh;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            text-align: center;
            padding: 2rem;
            position: relative;
            overflow: hidden;
            background: linear-gradient(to bottom, 
                        rgba(255, 255, 255, 0) 80%, 
                        rgba(255, 255, 255, 0.476) 100%),
                        url('hero-banner-BrMa-TXR.jpg');
                        background-position: center top;
        } 
        
        
        .content {
            max-width: 800px;
            z-index: 1;
        }

        h1 {
            font-size: 3.5rem;
            font-weight: 400;
            color: #000000;
            margin-bottom: 1.5rem;
            line-height: 1.2;
        }

        .p-hero {
            font-size: 1.25rem;
            color: #191717;
            margin-bottom: 2.5rem;
            line-height: 1.6;
        }

        .cta-container {
            display: flex;
            gap: 1rem;
            justify-content: center;
        }

        .btn {
            padding: 1rem 2rem;
            border-radius: 50px;
            font-size: 1.1rem;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            text-decoration: none;
            display: inline-block;
            font-family: inter;
        }

        /* .btn-primary {
            background-color: black;
            color: white;
            border-radius: 50px;
            text-align: center;
            justify-self: center;
            padding: 1rem 2rem;
        } */

        .btn-primary1:hover {
            background-color: #fef3c8;
            color: #000000;
            transform: translateY(-3px);
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);

        }

        .btn-secondary2{
            background-color: #ffffff;
            color: black;
            border: 1px solid #8d7c7c;
        }

        .btn-secondary2:hover {
            background-color: rgb(0, 0, 0);
            transform: translateY(-3px);
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
            color: white;
        }

        /* Mobile Responsive Styles */
        @media (max-width: 768px) {
            h1 {
                font-size: 2.5rem;
            }

            p {
                font-size: 1.1rem;
            }

            .cta-container {
                flex-direction: column;
                width: 100%;
                max-width: 300px;
                margin: 0 auto;
            }

            .btn {
                width: 100%;
                text-align: center;
            }
            .hero{
                        background-size: cover;
                        background-position: 61% 30%;
                        background: linear-gradient(
                                    to bottom,
                                    rgba(255, 255, 255, 0.2) 0%,
                                    rgba(255, 255, 255, 0.4) 70%,
                                    rgba(255, 255, 255, 1) 100%
                                    ),
                                    url('hero-banner-BrMa-TXR.jpg');

                                    background-position: center top;
                                    background-size: cover;
                
            }
        }

        @media (max-width: 480px) {
            h1 {
                font-size: 2rem;
            }

            p {
                font-size: 1rem;
            }
            .logo-text{
                font-size: 0.6rem;
            }
            nav{
                padding: 0.6;
            }
            .btn{
                padding: 0.7rem 1rem;
                font-size: 1rem;
            }
            .hero{
                background:
  linear-gradient(
    to bottom,
    rgba(255, 255, 255, 0.2) 0%,
    rgba(255, 255, 255, 0.4) 70%,
    rgba(255, 255, 255, 1) 100%
  ),
  url('hero-banner-BrMa-TXR.jpg');

background-position: center top;
background-size: cover;
            }
        }

       /* OCCASION CAROUSEL - MATCHING FRAMES STYLE */
       
.OCCASS-wrapper {
    background: white;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
    overflow-x: hidden;
    width: 100%;
}

.OCCASS-container {
    max-width: 1350px;
    width: 100%;
    overflow: hidden;
    position: relative;
}

.OCCASS-section-title {
    text-align: center;
    margin-bottom: 40px;
    color: #2c3e50;
    font-size: 3.5rem;
    font-weight: 300;
    letter-spacing: 1px;
    position: relative;
    padding-bottom: 15px;
}

.OCCASS-carousel-wrapper {
    position: relative;
    overflow: hidden;
    border-radius: 20px;
}

/* Optimized carousel styles */
.OCCASS-carousel-track {
    display: flex;
    will-change: transform;
    gap: 20px;
    transition: transform 0.3s ease;
    cursor: grab;
}

.OCCASS-carousel-track.fram-grabbing {
    cursor: grabbing;
    transition: none;
    user-select: none;
}

/* Hardware acceleration */
.OCCASS-occasion-container {
    flex: 0 0 auto;
    width: 400px;
    position: relative;
    overflow: hidden;
    border-radius: 16px;
    height: 295px;
    transform: translateZ(0); /* Hardware acceleration */
    backface-visibility: hidden;
}

.OCCASS-occasion-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
    transform: translateZ(0); /* Hardware acceleration */
}
.OCCASS-occasion-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

.OCCASS-occasion-container:hover .OCCASS-occasion-image {
    transform: scale(1.05);
}

.OCCASS-occasion-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
    padding: 20px;
    color: white;
}

.OCCASS-occasion-title {
    font-size: 1.5rem;
    margin-bottom: 10px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.6);
    font-weight: 700;
}

.OCCASS-occasion-description {
    font-size: 0.95rem;
    opacity: 0.9;
    line-height: 1.5;
    margin-bottom: 0;
    color: white;
}

.OCCASS-order-now-btn {
    position: absolute;
    top: 15px;
    right: 15px;
    background: linear-gradient(45deg, #ff6b6b, #ff8e53);
    color: white;
    border: none;
    padding: 8px 11px;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.3s ease;
    z-index: 10;
    letter-spacing: 0.5px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.OCCASS-order-now-btn:hover {
    background: linear-gradient(45deg, #ff5252, #ff7b3b);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 107, 107, 0.7);
}

.OCCASS-order-now-btn:active {
    transform: translateY(0);
}

/* Navigation buttons */
.OCCASS-prev, .OCCASS-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.9);
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: #333;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    z-index: 10;
}

.OCCASS-prev:hover, .OCCASS-next:hover {
    background: white;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    transform: translateY(-50%) scale(1.1);
}

.OCCASS-prev {
    left: 10px;
}

.OCCASS-next {
    right: 10px;
}

/* Responsive styles */
@media (max-width: 1200px) {
    .OCCASS-occasion-container {
        width: 350px;
    }
}

@media (max-width: 900px) {
    .OCCASS-occasion-container {
        width: 300px;
    }
    
    .OCCASS-prev, .OCCASS-next {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }
}

@media (max-width: 600px) {
    .OCCASS-occasion-container {
        width: 280px;
        height: 200px;
    }
    
    .OCCASS-occasion-description {
        font-size: 0.65rem;
    }
    
    .OCCASS-section-title {
        font-size: 2.5rem;
    }
    
    .OCCASS-occasion-title {
        font-size: 1rem;
        margin-bottom: 2px;
        font-weight: 600;
    }
    
    .OCCASS-order-now-btn {
        padding: 5px 7px;
        font-size: 0.6rem;
        top: 10px;
        right: 10px;
    }
    
    .OCCASS-prev, .OCCASS-next {
        width: 35px;
        height: 35px;
        font-size: 1rem;
    }
}
        
           /* FRAMES OPTION '''''''''''''''''''''''''''''''''''''''''''''''''''''*/
              .fram-wrapper {
            margin: 0;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            background: white;
            
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }

        .fram-container {
            width: 100%;
            padding: 20px;
        }

        .fram-title {
            text-align: center;
            color: #2c3e50;
            margin-bottom: 30px;
        }

        .fram-carousel {
            width: min(1350px, 95%);
            overflow: hidden;
            position: relative;
            border-radius: 10px;
            padding: 10px;
            margin: 0 auto;
        }

        .fram-track {
            display: flex;
            transition: transform 0.4s ease;
            will-change: transform;
            cursor: grab;
        }

        .fram-track.fram-grabbing {
            cursor: grabbing;
            transition: none;
        }

        .fram-slide {
            flex: 0 0 calc(21.33% - 10px); /* show 3 per view */
            margin-right: 10px;
            user-select: none;
        }

        .fram-slide img {
            width: 100%;
            height: 200px;
            object-fit: cover;
            display: block;
            border-radius: 8px;
        }

        /* Text below image */
        .fram-slide-text {
            text-align: center;
            margin-top: 8px;
            font-weight: 500;
            color: #333;
        }

        .fram-btn {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            background: rgba(255,255,255,0.9);
            border: none;
            border-radius: 50%;
            width: 40px;
            height: 40px;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            box-shadow: 0 4px 12px rgba(0,0,0,0.15);
            z-index: 10;
            transition: all 0.2s ease;
        }

        .fram-btn:hover {
            background: rgba(255,255,255,1);
            transform: translateY(-50%) scale(1.05);
        }

        .fram-prev { left: 10px; }
        .fram-next { right: 10px; }

        /* Responsive: show fewer images on smaller screens */
        @media (max-width: 768px){
            .fram-slide { flex: 0 0 calc(50% - 8px); } /* 2 per view */
            .fram-slide img { height: 180px; }
        }

        @media (max-width: 480px){
            .fram-slide { flex: 0 0 100%; } /* 1 per view */
            .fram-slide img { height: 200px; }
            
            /* Hide arrows on mobile */
            .fram-btn {
                display: block;
            }
        }

       





        /* CATEGORY(((((((((((((((((((((((((((()))))))))))))))))))))))))))))))))) */
         .CAT-wrapper {
            background: white;
            display: flex;
            justify-content: center;
            align-items: center;
            padding: 30px;
            width: 100%;
        }
        
        .CAT-container {
            max-width: 1350px;
            width: 100%;
        }
        
        .CAT-main-heading {
            text-align: center;
            margin-bottom: 20px;
            color: #2d3748;
            font-weight: 300;
            font-size: 3.5rem;
        }
        
        .CAT-button-container {
            display: flex;
            justify-content: end;
            margin-bottom: 30px;
            padding-left: 10px;
        }
        
        .CAT-reset-button {
            padding: 12px 30px;
            background: #00000099;
            color: white;
            border: none;
            border-radius: 10px;
            font-size: 1rem;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            box-shadow: 0 5px 15px rgba(118, 75, 162, 0.3);
        }
        
        .CAT-reset-button:hover {
            transform: translateY(-3px);
            box-shadow: 0 8px 20px rgba(118, 75, 162, 0.3);
        }
        
        .CAT-reset-button:active {
            transform: translateY(0);
        }
        
        .CAT-categories-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 25px;
        }
        
        .CAT-category-card {
            background: white;
            border-radius: 16px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
            transition: all 0.3s ease;
            position: relative;
        }
        
        .CAT-category-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
        }
        
        .CAT-category-header {
            padding: 10px 5px;
            text-align: center;
            cursor: pointer;
            position: relative;
            z-index: 2;
            background: white;
        }
        
        .CAT-category-icon {
            width: 40px;
            height: 40px;
            background: #00000099;
            border-radius: 50%;
            margin: 0 auto 15px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 21px;
            box-shadow: 0 5px 15px rgba(118, 75, 162, 0.3);
        }
        
        .CAT-category-title {
            font-size: 1.2rem;
            font-weight: 300;
            color: #2d3748;
            margin-bottom: 5px;
        }
        
        .CAT-subcategories {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.5s ease;
            background: #f8fafc;
            /* border-top: 1px solid #e2e8f0; */
        }
        
        .CAT-category-card:hover .CAT-subcategories {
            max-height: 300px;
        }
        
        .CAT-subcategories-container {
            max-height: 250px;
            overflow-y: auto;
            padding-right: 5px;
        }
        
        /* Custom scrollbar for subcategories */
        .CAT-subcategories-container::-webkit-scrollbar {
            width: 6px;
        }
        
        .CAT-subcategories-container::-webkit-scrollbar-track {
            background: #f1f1f1;
            border-radius: 10px;
        }
        
        .CAT-subcategories-container::-webkit-scrollbar-thumb {
            background: #cf9755;
            border-radius: 10px;
        }
        
        .CAT-subcategories-container::-webkit-scrollbar-thumb:hover {
            background: #cf9755;
        }
        
        .CAT-subcategory {
            padding: 15px 20px;
            display: flex;
            align-items: center;
            border-bottom: 1px solid #edf2f7;
            cursor: pointer;
            transition: all 0.2s ease;
        }
        
        .CAT-subcategory:last-child {
            border-bottom: none;
        }
        
        .CAT-subcategory:hover {
            background: #f1f5f9;
        }
        
        .CAT-subcategory-icon {
            width: 36px;
            height: 36px;
            border-radius: 10px;
            background: #e2e8f0;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-right: 15px;
            color: #4a5568;
            font-size: 14px;
            transition: all 0.3s ease;
        }
        
        .CAT-subcategory:hover .CAT-subcategory-icon {
            background: #cf9755;
            color: white;
        }
        
        .CAT-subcategory-name {
            font-size: 1rem;
            color: #4a5568;
            font-weight: 500;
            flex: 1;
        }
        
        .CAT-select-indicator {
            width: 22px;
            height: 22px;
            border-radius: 50%;
            border: 2px solid #cbd5e0;
            transition: all 0.3s ease;
            position: relative;
        }
        
        .CAT-subcategory.CAT-selected .CAT-select-indicator {
            background: #deb688;
            border-color: #e0c3a1;
        }
        
        .CAT-subcategory.CAT-selected .CAT-select-indicator::after {
            content: '';
            position: absolute;
            top: 4px;
            left: 4px;
            width: 10px;
            height: 6px;
            border: 2px solid white;
            border-top: none;
            border-right: none;
            transform: rotate(-45deg);
        }
        
        .CAT-selected-count {
            position: absolute;
            top: 15px;
            right: 15px;
            background: #cf9755;
            color: white;
            width: 24px;
            height: 24px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 12px;
            font-weight: 600;
            opacity: 0;
            transform: scale(0);
            transition: all 0.3s ease;
        }
        
        .CAT-category-card.CAT-has-selected .CAT-selected-count {
            opacity: 1;
            transform: scale(1);
        }
        
        @media (max-width: 768px) {
            .CAT-categories-grid {
                grid-template-columns: repeat(2,1fr);
                gap: 10px;
            }
            
            .CAT-category-card {
                max-width: 400px;
                
            }
            
            .CAT-button-container {
                justify-content: center;
            }
        }
        @media (max-width: 480px){
             .CAT-categories-grid {
                grid-template-columns: repeat(2,1fr);
                gap: 7px;
            }
            .CAT-category-icon{
                font-size: 15px;
                    width: 30px;
                    height: 30px;
            }
            .CAT-category-title{
                font-size: 0.9rem;
            }
            .CAT-reset-button{
                font-size: 0.6rem;
            }
            .CAT-subcategory-icon{
                width: 26px;
                height: 30px;
                font-size: 15px;
            }
            .CAT-subcategory-name{
                font-size: 0.6rem;          
            }
            .CAT-select-indicator{
                width: 15px;
                height: 15px;
            }
            .CAT-main-heading{
                font-size: 2.5rem;
            }
            
        }


        .mobile-logo {
  display: none;
}

@media (max-width: 768px) {
  

  
  .mobile-logo {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 1rem;
  }

  .mobile-logo .logo {
    height: 64px;
    margin-right: -2px;
  }

  .mobile-logo .logo-text {
    font-weight: bold;
    margin-top: 2rem;
    font-size: 1.5rem;
  }
}

:root {
            --primary: #8B4513;
            --primary-light: #a85e2d;
            --accent: #D4AF37;
            --accent-light: #e6c869;
            --text-dark: #333333;
            --text-medium: #555555;
            --text-light: #777777;
            --bg-light: #fefefe;
            --bg-cream: #f8f4f0;
            --bg-offwhite: #f8f8f8;
            --border: #e8e8e8;
            --shadow: rgba(0, 0, 0, 0.05);
            --transition: all 0.3s ease;
        }


/* FOOTER */
           .ffootter-wrapper {
            
            display: flex;
            flex-direction: column;
            background: #fff;
            color: #333;
        }
        
        .ffootter-content {
            flex: 1;
            padding: 40px;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            text-align: center;
        }
        
        .ffootter-content h1 {
            font-size: 2.5rem;
            margin-bottom: 20px;
            color: #c17a74;
            font-weight: 300;
        }
        
        .ffootter-content p {
            max-width: 600px;
            line-height: 1.6;
            color: #666;
        }
        
        .ffootter-footer {
            background: linear-gradient(135deg, #fef7f7 0%, #dab7b7 100%);
            border-top: 1px solid rgb(209 199 199 / 7%);;
            padding: 50px 0 20px;
            margin-top: auto;
            box-shadow: 0 -5px 15px rgba(0, 0, 0, 0.03);
        }
        
        .ffootter-container {
            max-width: 1300px;
            margin: 0 auto;
            padding: 0 20px;
            display: grid;
            grid-template-columns: 2fr 1fr 1.5fr;
            gap: 40px;
        }
        
        .ffootter-logo {
            display: flex;
            align-items: flex-start;
            gap: 15px;
            margin-bottom: 20px;
        }
        
        .ffootter-logo-circle {
            width: 50px;
            height: auto;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-weight: bold;
            font-size: 1.2rem;
        }
        .ffootter-logo-circle img{
            width: 50px;
            height: auto;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-weight: bold;
            font-size: 1.2rem;
        }
        
        .ffootter-logo-text {
            font-size: 1.5rem;
            font-weight: 600;
            color: #cf9755;
            letter-spacing: 1px;
        }
        
        .ffootter-about {
            color: #666;
            line-height: 1.6;
            margin-bottom: 25px;
            max-width: 350px;
        }
        
        .ffootter-col h3 {
            font-size: 1.2rem;
            margin-bottom: 25px;
            position: relative;
            color: #cf9755;
            text-transform: uppercase;
            letter-spacing: 1px;
            font-weight: 600;
        }
        
        
        
        .ffootter-links {
            list-style: none;
        }
        
        .ffootter-links li {
            margin-bottom: 12px;
        }
        
        .ffootter-links a {
            color: #666;
            text-decoration: none;
            transition: all 0.3s ease;
            display: inline-block;
        }
        
        .ffootter-links a:hover {
            color: #c17a74;
            transform: translateX(5px);
        }
        
        .ffootter-contact-info {
            list-style: none;
        }
        
        .ffootter-contact-info li {
            margin-bottom: 15px;
            display: flex;
            align-items: flex-start;
            gap: 12px;
        }
        
        .ffootter-contact-info i {
            color: #c17a74;
            margin-top: 3px;
            width: 16px;
        }
        
        .ffootter-contact-info span {
            color: #666;
            line-height: 1.5;
        }
        
        .ffootter-social-links {
            display: flex;
            gap: 22px;
            margin-top: 20px;
            margin-left: 3px;
        }
        
        .ffootter-social-links a {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 38px;
            height: 38px;
            background: #c47f1b;
            border-radius: 50%;
            color: #fff;
            transition: all 0.3s ease;
            text-decoration: none;
        }
        
        .ffootter-social-links a:hover {
            background: #c17a74;
            color: white;
            transform: translateY(-3px);
        }
        
        .ffootter-metrics-section {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 20px;
            margin: 30px 0;
            padding: 25px 0;
            /* border-top: 1px solid rgba(193, 122, 116, 0.1); */
            border-bottom: 1px solid rgba(193, 122, 116, 0.1);
        }
        
        .ffootter-metric-item {
            text-align: center;
        }
        
        .ffootter-metric-value {
            font-size: 2rem;
            font-weight: 700;
            color: #cf9755;
            margin-bottom: 5px;
        }
        
        .ffootter-metric-label {
            font-size: 0.9rem;
            color: #666;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }
        
        .ffootter-copyright {
            text-align: center;
            margin-top: 30px;
            padding-top: 20px;
            border-top: 1px solid rgba(193, 122, 116, 0.2);
            color: #888;
            font-size: 0.9rem;
        }
        
        .ffootter-women-owned-badge {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: #f9f2f0;
            padding: 8px 15px;
            border-radius: 20px;
            color: #cf9755;
            font-size: 0.9rem;
            margin-top: 15px;
            font-weight: 500;
        }
        
        .ffootter-payment-methods {
            display: flex;
            gap: 10px;
            margin-top: 20px;
            flex-wrap: wrap;
        }
        
        .ffootter-payment-methods i {
            font-size: 1.8rem;
            color: #888;
        }
        
        @media (max-width: 768px) {
            .ffootter-container {
                grid-template-columns: 1fr;
                gap: 30px;
                text-align: center;
            }
            
            .ffootter-metrics-section {
                grid-template-columns: repeat(2, 1fr);
                gap: 15px;
            }
            
            .ffootter-logo {
                justify-content: center;
                text-align: center;
                
            }
              .ffootter-payment-methods{
                justify-content: center;
              }
              .ffootter-about {
                max-width: none;
                text-align: center;
              }
              .ffootter-social-links {
              
              align-items: center;
              justify-content: center;
            }
            .ffootter-contact-info li {
                justify-content: center;
            }
        }
        @media (max-width: 450px) {
            .ffootter-metric-value {
            font-size: 1.5rem;}
            .ffootter-metric-label {
    font-size: 0.7rem;}
}


        /* Floating whatsapp chat button */
        /* Updated class names to start with chat-wats */
        .chat-wats-btn {
            display: flex;
            align-items: center;
            justify-content: flex-start;
            width: 45px;
            height: 45px;
            border: none;
            border-radius: 50%;
            cursor: pointer;
            position: fixed;
            overflow: hidden;
            transition-duration: 0.3s;
            box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.199);
            background-color: #00d757;
            bottom: 20px;
            right: 20px;
            z-index: 1000;
        }

        .chat-wats-sign {
            width: 100%;
            transition-duration: 0.3s;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .chat-wats-sign svg {
            width: 25px;
        }

        .chat-wats-sign svg path {
            fill: white;
        }
        
        .chat-wats-text {
            position: absolute;
            right: 0%;
            width: 0%;
            opacity: 0;
            color: white;
            font-size: 1em;
            font-weight: 600;
            transition-duration: 0.3s;
        }

        .chat-wats-btn:hover {
            width: 185px;
            border-radius: 40px;
            transition-duration: 0.3s;
        }

        .chat-wats-btn:hover .chat-wats-sign {
            width: 30%;
            transition-duration: 0.3s;
            padding-left: 10px;
        }

        .chat-wats-btn:hover .chat-wats-text {
            opacity: 1;
            width: 70%;
            transition-duration: 0.3s;
            padding-right: 10px;
        }
        
        .chat-wats-btn:active {
            transform: translate(2px, 2px);
        }




        /*-------------------------------------loader-----------------------------------------*/

         .card {
            padding: 1rem 2rem;
            border-radius: 1.25rem;
        }
        .loader {
            color: rgb(124, 124, 124);
            font-family: "Poppins", sans-serif;
            font-weight: 500;
            font-size: 25px;
            -webkit-box-sizing: content-box;
            box-sizing: content-box;
            height: 80px;
            padding: 10px 10px;
            display: flex;
            align-items: center;
            border-radius: 8px;
            transition: opacity 0.6 ease;
        }

        .words {
            overflow: hidden;
            position: relative;
            height: 40px;
        }
        .words::after {
            content: "";
            position: absolute;
            inset: 0;
            z-index: 20;
        }

        .word {
            display: block;
            height: 100%;
            padding-left: 6px;
            color: #d3a71b;
            animation: spin_4991 4s infinite;
        }

        @keyframes spin_4991 {
            10% {
                -webkit-transform: translateY(-102%);
                transform: translateY(-102%);
            }

            25% {
                -webkit-transform: translateY(-100%);
                transform: translateY(-100%);
            }

            35% {
                -webkit-transform: translateY(-202%);
                transform: translateY(-202%);
            }

            50% {
                -webkit-transform: translateY(-200%);
                transform: translateY(-200%);
            }

            60% {
                -webkit-transform: translateY(-302%);
                transform: translateY(-302%);
            }

            75% {
                -webkit-transform: translateY(-300%);
                transform: translateY(-300%);
            }

            85% {
                -webkit-transform: translateY(-402%);
                transform: translateY(-402%);
            }

            100% {
                -webkit-transform: translateY(-400%);
                transform: translateY(-400%);
            }
        }