

/* INDEX.PHP */
/* INDEX.PHP */
/* INDEX.PHP */
/* INDEX.PHP */
/* INDEX.PHP */
/* INDEX.PHP */
/* INDEX.PHP */
/* INDEX.PHP */
/* INDEX.PHP */
/* INDEX.PHP */
/* INDEX.PHP */
/* INDEX.PHP */
/* INDEX.PHP */
/* INDEX.PHP */
/* INDEX.PHP */
/* INDEX.PHP */
/* INDEX.PHP */
/* INDEX.PHP */
/* INDEX.PHP */
/* INDEX.PHP */
/* INDEX.PHP */
/* INDEX.PHP */
/* INDEX.PHP */
/* INDEX.PHP */
/* INDEX.PHP */
/* INDEX.PHP */
/* INDEX.PHP */
/* INDEX.PHP */
/* INDEX.PHP */
/* INDEX.PHP */
/* INDEX.PHP */
/* INDEX.PHP */
/* INDEX.PHP */
/* INDEX.PHP */
/* INDEX.PHP */
/* INDEX.PHP */
/* INDEX.PHP */
/* INDEX.PHP */
/* INDEX.PHP */
/* INDEX.PHP */
/* INDEX.PHP */
/* INDEX.PHP */
/* INDEX.PHP */
/* INDEX.PHP */
/* INDEX.PHP */













        /* ===== Global Styles ===== */
        :root {
            --primary: #000000;
            --secondary: #f5f5f5;
            --accent: #d4af37;
            --accent-dark: #b59530;
            --text: #333333;
            --light-text: #777777;
            --white: #ffffff;
            --dark-bg: #111111;

            --gold: #D4AF37;
            --dark: #1A1A1A;
            --light: #F8F5F0;
            --gray: #E5E5E5;


            --transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
            --shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
            --shadow-hover: 0 5px 15px rgba(0, 0, 0, 0.1);
        }

        @font-face {
            font-family: 'Neue Haas';
            src: url('https://fonts.cdnfonts.com/css/neue-haas-grotesk-display-pro') format('woff2');
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Neue Haas', 'Helvetica Neue', sans-serif;
            color: var(--text);
            background-color: var(--white);
            overflow-x: hidden;
        }

        a {
            text-decoration: none;
            color: inherit;
        }

        .container {
            max-width: 1800px;
            margin: 0 auto;
            padding: 0 40px;
        }

        .section-title {
            font-size: 3.5rem;
            font-weight: 500;
            letter-spacing: -1.5px;
            margin-bottom: 1.5rem;
            line-height: 1.1;
        }

        .section-subtitle {
            font-size: 1.2rem;
            color: var(--light-text);
            margin-bottom: 3rem;
            font-weight: 400;
        }

        .cta-button {
            display: inline-block;
            padding: 15px 35px;
            background-color: goldenrod;
            color: var(--white);
            border: none;
            font-size: 1rem;
            font-weight: 500;
            letter-spacing: 1px;
            text-transform: uppercase;
            cursor: pointer;
            transition: var(--transition);
            position: relative;
            overflow: hidden;
        }

        .cta-button:after {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
            transition: var(--transition);
        }

        .cta-button:hover {
            background-color: black;
            color: white;
        }

        .cta-button:hover:after {
            left: 100%;
        }

        .text-link {
            display: inline-flex;
            align-items: center;
            font-size: 1rem;
            font-weight: 500;
            color: var(--primary);
            transition: var(--transition);
        }

        .text-link i {
            margin-left: 8px;
            transition: var(--transition);
        }

        .text-link:hover {
            color: var(--accent);
        }

        .text-link:hover i {
            transform: translateX(5px);
        }

        /* ===== Navigation ===== */
        .luxury-nav {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            background-color: rgba(255, 255, 255, 0.98);
            backdrop-filter: blur(10px);
            z-index: 1000;
            padding: 25px 0;
            border-bottom: 1px solid rgba(0, 0, 0, 0.05);
            transition: var(--transition);
        }

        .luxury-nav.scrolled {
            padding: 15px 0;
            box-shadow: 0 5px 30px rgba(0, 0, 0, 0.05);
        }

        .view-all a {
            font-weight: bold;
            color: #333;
            border-top: 1px solid #eee;
            padding-top: 5px;
            margin-top: 5px;
            display: block;
        }
        .nav-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .logo{
            user-select: none;        
            -webkit-user-drag: none;    
            pointer-events: auto;      
        }


        .arrow-group {
    font-size: 32px;
    margin-right: 10px;
    color: goldenrod;
    vertical-align: middle;
}

.brand-name {
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 1.5px;
    background: linear-gradient(90deg, #000000 50%, goldenrod 50%);
    color: white;
    padding: 5px;
}
@media(max-width:400px){

    .brand-name{

        font-size: 11px;
    }
    
}

        .main-nav ul {
            display: flex;
            list-style: none;
            gap: 40px;
        }

        .main-nav a {
            font-size: 0.95rem;
            font-weight: 500;
            letter-spacing: 0.5px;
            text-transform: uppercase;
            position: relative;
            padding: 5px 0;
        }

        .main-nav a:after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 1px;
            background-color: var(--primary);
            transition: var(--transition);
        }

        .main-nav a:hover:after {
            width: 100%;
        }

        .dropdown {
            position: relative;
        }

        .dropdown i {
            font-size: 0.7rem;
            margin-left: 5px;
            transition: var(--transition);
        }

        .dropdown:hover i {
            transform: rotate(180deg);
        }


        .mega-menu {
            position: absolute;
            left: 0;
            top: 100%;
            width: 1200px;
            background-color: var(--white);
            padding: 30px;
            box-shadow: 0 30px 60px rgba(0, 0, 0, 0.1);
            opacity: 0;
            visibility: hidden;
            transition: var(--transition);
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 30px;
        }

        .dropdown:hover .mega-menu {
            opacity: 1;
            visibility: visible;
            margin-top: 20px;
        }

        .mega-menu h4 {
            font-size: 0.9rem;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 1px;
            margin-bottom: 20px;
            color: var(--light-text);
        }

        .mega-menu ul {
            display: flex;
            flex-direction: column;
            gap: 15px;
        }

        .mega-menu a {
            font-size: 0.95rem;
            font-weight: 400;
            text-transform: none;
            letter-spacing: 0;
        }

        .mega-menu a:hover {
            color: var(--accent);
        }

        .nav-icons {
            display: flex;
            gap: 25px;
            align-items: center;

        }

        .nav-icons a {
            font-size: 1.1rem;
            transition: var(--transition);
        }

        .nav-icons a:hover {
            color: var(--accent);
        }







/* mobile menu toggle  */
/* mobile menu toggle  */

/* mobile menu toggle  */

/* mobile menu toggle  */

/* mobile menu toggle  */

/* mobile menu toggle  */

/* mobile menu toggle  */

/* mobile menu toggle  */

/* mobile menu toggle  */

/* mobile menu toggle  */

/* mobile menu toggle  */

/* mobile menu toggle  */

/* mobile menu toggle  */






.mobile-menu-toggle {
    display: none; /* Hidden by default on desktop */
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
    z-index: 1001;
}

.burger-line {
    display: block;
    width: 25px;
    height: 2px;
    background-color: var(--primary);
    margin: 5px 0;
    transition: var(--transition);
}

/* Mobile menu styles */
@media (max-width: 992px) {
    .mobile-menu-toggle {
        display: block; /* Show on mobile */
    }
    
    .main-nav {
        position: fixed;
        top: 0;
        left: -100%;
        width: 100%;
        max-width: 300px;
        height: 100vh;
        padding: 80px 30px 30px;

        background-color: var(--white);
        box-shadow: 2px 0 10px rgba(0,0,0,0.1);
        transition: var(--transition);
        z-index: 1000;
        overflow-y: auto;
    }
    
    .main-nav.active {
        left: 0;
    }
    
    .main-nav ul {
        flex-direction: column;
        gap: 20px;
    }
    
    .dropdown .mega-menu {
        position: static;
        width: 100%;
        box-shadow: none;
        padding: 15px 0;
        opacity: 1;
        visibility: visible;
        display: none;
    }
    
    .dropdown.active .mega-menu {
        display: grid;
        margin-top: 15px;
    }
    
    /* Overlay when menu is open */
    .nav-overlay {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0,0,0,0.5);
        z-index: 999;
        opacity: 0;
        visibility: hidden;
        transition: var(--transition);
    }
    
    .nav-overlay.active {
        opacity: 1;
        visibility: visible;
    }
    
    /* Adjust logo position when menu is open */
    .luxury-nav.menu-open .logo {
        position: relative;
        z-index: 1001;
    }

.mobile-menu-toggle.cart-is-open {
       display: none !important;
        visibility: hidden !important;
        opacity: 0 !important;
    }
    
    /* Optional: adjust cart close button position to compensate */
    .cart-sidebar.active .cart-header {
        padding-top: 20px;
    }




}
































        /* ===== Hero Section ===== */
        /* ===== Core Hero Styles ===== */
/* ===== Core Hero Styles ===== */
.hero {
    position: relative;
    width: 100%;
    min-height: 100vh;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Image Container (Fullscreen) */
.hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}

/* Overlay for Text Contrast */
.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
}

/* Content Styling */
.hero-content {
    position: relative;
    z-index: 2;
    color: white;
    text-align: center;
    padding: 0 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.hero-content h1 {
    font-size: 64px;
    margin-bottom: 1rem;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    text-shadow: 0 1px 2px rgba(0,0,0,0.3);
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}



/* ===== Responsive Breakpoints ===== */

/* Tablets (768px and below) */
@media (max-width: 768px) {
    .hero {
        min-height: 80vh;
    }
    .hero-content{

        margin-top: 70px;
    }
   
    
    .hero-content p {
        font-size: 1rem;
    }
    
}

/* Mobile Phones (576px and below) */
@media (max-width: 576px) {
    .hero {
        min-height: 70vh;
    }
    
    
    
    .hero-content p {
        font-size: 0.9rem;
    }
    
    .hero-content {
        padding: 0 15px;
    }
}
        

        @media (max-width: 768px) {
            
            .product-info-details{
                display: block !important;
            }
        }

        .product-image-link {
            display: block;
            position: relative;
            text-decoration: none;
            color: inherit;
        }
        
        .product-image {
            cursor: pointer;
            transition: transform 0.3s ease;
        }
        
        .product-image:hover {
            transform: scale(1.02);
        }
        
        .quick-view {
            position: absolute;
            bottom: 20px;
            left: 50%;
            transform: translateX(-50%);
            z-index: 2;
        }

        /* Category Cards Styles */
        .category-cards {
            padding: 120px 0;
            background-color: var(--secondary);
        }

        .category-cards h2 {
            text-align: center;
        }

        .category-cards .section-subtitle {
            text-align: center;
        }

        .cards-container {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 30px;
            margin-top: 50px;
        }

        .category-card {
            position: relative;
            height: 500px;
            overflow: hidden;
        }

        .category-card img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: var(--transition);
        }

        .category-card:hover img {
            transform: scale(1.05);
        }

        .card-overlay {
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            padding: 40px;
            background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
            color: var(--white);
            transform: translateY(20px);
            opacity: 0;
            transition: var(--transition);
        }

        .category-card:hover .card-overlay {
            transform: translateY(0);
            opacity: 1;
        }

        .card-overlay h3 {
            font-size: 1.8rem;
            margin-bottom: 15px;
        }

        .card-overlay a {
            display: inline-block;
            padding: 10px 0;
            font-size: 0.9rem;
            font-weight: 500;
            letter-spacing: 1px;
            text-transform: uppercase;
            color: var(--white);
            border-bottom: 1px solid var(--white);
        }

        /* Responsive Styles */
       
@media (min-width: 768px) and (max-width: 1024px) {
  .cards-container {
    grid-template-columns: repeat(2, 1fr);
  }
}

        @media (max-width: 576px) {
            .cards-container {
                grid-template-columns: 1fr;
            }
            
            .category-card {
                height: 400px;
            }

              
        }


        /* ===== Product Slider essential apparel===== */
        /* ===== Product Slider essential apparel===== */
        /* ===== Product Slider essential apparel===== */
        /* ===== Product Slider essential apparel===== */
        /* ===== Product Slider essential apparel===== */
        /* ===== Product Slider essential apparel===== */
        /* ===== Product Slider essential apparel===== */
        /* ===== Product Slider essential apparel===== */




        
        .product-slider {
            padding: 120px 0;
        }


        .slider-controls {
            display: flex;
            gap: 15px;
        }

        .slider-controls button {
            width: 50px;
            height: 50px;
            border-radius: 50%;
            background-color: var(--secondary);
            border: none;
            cursor: pointer;
            transition: var(--transition);
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .slider-controls button:hover {
            background-color: var(--accent);
            color: var(--white);
        }

        .slider-container {
            display: flex;
            gap: 30px;
            overflow-x: auto;
            scroll-snap-type: x mandatory;
            scroll-behavior: smooth;
            -webkit-overflow-scrolling: touch;
            padding-bottom: 30px;
        }

        .slider-container::-webkit-scrollbar {
            height: 8px;
        }

        .slider-container::-webkit-scrollbar-track {
            background: var(--secondary);
        }

        .slider-container::-webkit-scrollbar-thumb {
            background-color: var(--primary);
            border-radius: 20px;
        }

        

        .product-card {
            min-width: 250px;
            scroll-snap-align: start;
            position: relative;
        }


        .quality {
        position: absolute;
        top: 10px;
        left: 10px;
        border-radius: 5px;
        z-index: 5;
        }

        .qualityDesign {
        margin: 0;
        padding: 6px 12px;
        border-radius: 5px;
        font-size: 13px;
        font-weight: bold;
        text-transform: uppercase;
        }


        
        .product-card .badge {
            position: absolute;
            top: 20px;
            left: 20px;
            background-color: var(--accent);
            color: var(--primary);
            padding: 5px 15px;
            font-size: 0.8rem;
            font-weight: 600;
            z-index: 2;
        }








        .product-image {
            overflow: hidden;
            margin-bottom: 20px;
            position: relative;
            width: 100%;
            height: 300px; /* same for all */
            background-color: #fff;
            display: flex;
            justify-content: center;
            align-items: end; /* align to the bottom of the box */
        }

        .product-image-curated{
            justify-content: left;
        }
        
        .product-card-apparel .product-image{
          object-fit: cover;
            height: 450px;
        }
        
        .product-image img {
            max-height: 100%;
            max-width: 100%;
            object-fit: contain;
            transition: var(--transition);
        }
        
      .product-image-apparel{
            margin-bottom: 20px;

      }
      .product-image-apparel img{
        width: 100%;
        height: 350px;
        transition: var(--transition);
      }
        


        .product_card_curated{
            height: 100%;
            width: 300px;
            min-width: 20%;
          }

        .product_card_curated .product-info{
            padding-bottom: 15%;
          }
        .product_card_curated .product-image img{
            object-fit: contain;
          }


        .product-card:hover .product-image img {
            transform: scale(1.05);
        }

        .quick-view {
            position: absolute;
            bottom: 20px;
            left: 50%;
            transform: translateX(-50%);
            background-color: var(--white);
            color: var(--primary);
            padding: 10px 25px;
            font-size: 0.9rem;
            font-weight: 500;
            opacity: 0;
            transition: var(--transition);
        }

        .product-card:hover .quick-view {
            opacity: 1;
            bottom: 30px;
        }

        .product-info h3 {
            font-size: 1.1rem;
            font-weight: 500;
            margin-bottom: 5px;
        }

        .product-info p {
            color: var(--light-text);
            margin-bottom: 10px;
        }

        .product-info .price {
            font-size: 1.2rem;
            font-weight: 600;
        }

        .size-list {
            display: flex;
            gap: 5px;
            margin-top: 10px;
            flex-wrap: wrap;
        }

        .size-item {
            border: 1px solid #ddd;
            padding: 2px 8px;
            font-size: 0.8rem;
            border-radius: 3px;
        }


  




/* Filter Options Container */
.slider-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
    padding-bottom: 15px;
}

.filter-optionss {
    display: flex;
    flex-direction: row-reverse;
    gap: 20px; /* Space between buttons */
    margin-left: auto;
}

/* Filter Buttons */
.filter-btn {
    background: none;
    border: none;
    padding: 8px 0;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--light-text);
    cursor: pointer;
    position: relative;
    transition: var(--transition);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Active Filter Button */
.filter-btn.active {
    color: var(--primary);
    font-weight: 600;
}

/* Animated Underline for Active Button */
.filter-btn.active::after {
    content: '';
    position: absolute;
    bottom: -16px; /* Align with container bottom */
    left: 0;
    width: 100%;
    height: 2px;
    background-color: var(--accent);
    transform: scaleX(1);
    transition: var(--transition);
}

/* Hover Effect */
.filter-btn:hover:not(.active) {
    color: var(--primary);
    opacity: 0.8;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .slider-header {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .filter-options {
        margin-top: 15px;
        width: 100%;
        overflow-x: auto;
        padding-bottom: 10px;
        justify-content: flex-start; /* Left align on mobile */
    }
    
    .filter-btn {
        white-space: nowrap; /* Prevent button text wrapping */
    }
}

























        /* ===== Run Stronger, Go Longer – Unleash Your Potential! ===== */
        /* ===== Run Stronger, Go Longer – Unleash Your Potential! ===== */
        /* ===== Run Stronger, Go Longer – Unleash Your Potential! ===== */
        /* ===== Run Stronger, Go Longer – Unleash Your Potential! ===== */
        /* ===== Run Stronger, Go Longer – Unleash Your Potential! ===== */
        /* ===== Run Stronger, Go Longer – Unleash Your Potential! ===== */
        /* ===== Run Stronger, Go Longer – Unleash Your Potential! ===== */
        /* ===== Run Stronger, Go Longer – Unleash Your Potential! ===== */
        /* ===== Run Stronger, Go Longer – Unleash Your Potential! ===== */
        /* ===== Run Stronger, Go Longer – Unleash Your Potential! ===== */
        /* ===== Run Stronger, Go Longer – Unleash Your Potential! ===== */
        /* ===== Run Stronger, Go Longer – Unleash Your Potential! ===== */
        /* ===== Run Stronger, Go Longer – Unleash Your Potential! ===== */
        /* ===== Run Stronger, Go Longer – Unleash Your Potential! ===== */
        /* ===== Run Stronger, Go Longer – Unleash Your Potential! ===== */
        /* ===== Run Stronger, Go Longer – Unleash Your Potential! ===== */
        /* ===== Run Stronger, Go Longer – Unleash Your Potential! ===== */
        /* ===== Run Stronger, Go Longer – Unleash Your Potential! ===== */
        /* ===== Run Stronger, Go Longer – Unleash Your Potential! ===== */

/* Container with Flex Layout */
.containerone {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
    padding: 40px 20px;
    max-width: 1200px;
    margin: 0 auto;
    flex-wrap: wrap; /* Allow wrapping on smaller screens */
}

/* Left Text Content */
.custom-content {
    flex: 1 1 500px;
    background-color: black;
    color: white;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

/* Right Image */
.custom-preview {
    flex: 1 1 500px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.custom-preview img {
    width: 100%;
    max-width: 600px;
    height: auto;
    border-radius: 12px;
}

/* Responsive Adjustments */
@media (max-width: 992px) {
    .containerone {
        flex-direction: column;
        gap: 30px;
        padding: 30px 15px;
    }

    .custom-content,
    .custom-preview {
        width: 100%;
        text-align: center;
    }

    .custom-content {
        padding: 20px;
    }
}

        











        /* ===== CURATED Products ===== */
        /* ===== CURATED Products ===== */
        /* ===== CURATED Products ===== */
        /* ===== CURATED Products ===== */
        /* ===== CURATED Products ===== */
        /* ===== CURATED Products ===== */
        /* ===== CURATED Products ===== */
        .featured-products {
            padding: 120px 0;
            width: 100%;
        }

        .featured-products .section-title,
        .featured-products .section-subtitle {
            text-align: center;
        }


        .products-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 30px;
            margin: 50px 0;
            /* border: 3px solid green; */

        }

        /* ===== Responsive Styles ===== */
        @media (max-width: 1600px) {
            .container {
                padding: 0 60px;
            }
            
            .section-title {
                font-size: 3rem;
            }
            
            .hero h1 {
                font-size: 4.5rem;
            }
        }

        @media (max-width: 1200px) {
            .products-grid {
                grid-template-columns: repeat(3, 1fr);
            }
            
            .mega-menu {
                width: 900px;
            }
        }

        @media (max-width: 992px) {
            .container {
                padding: 0 40px;
            }
            
           
            
            .hero-video {
                width: 50%;
            }
            
            .products-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        @media (max-width: 768px) {
            .section-title {
                font-size: 2.5rem;
            }
            
            .hero {
                min-height: 700px;
            }
            
            .hero h1 {
                font-size: 3.5rem;
            }
            
            .hero-video {
                width: 100%;
                opacity: 0.3;
            }
        }

        @media (max-width: 576px) {
            .container {
                padding: 0 25px;
            }
            
            .section-title {
                font-size: 2rem;
            }
            
            .products-grid {
                grid-template-columns: 1fr;
            }
            .filter-btn {

            font-size: 0.75rem; }
        }
        @media (max-width: 465px) {
     
            .filter-btn {

            font-size: 0.55rem;
         }
         
        }
        
        @media (max-width: 360px) {
     
            .filter-btn {

            font-size: 0.5rem;
         }

        }
        @media (max-width: 336px) {
     
            .filter-btn {

            font-size: 0.38rem;
         }

        }



/* End index.php */
/* End index.php */
/* End index.php */
/* End index.php */
/* End index.php */
/* End index.php */
/* End index.php */
/* End index.php */
/* End index.php */
/* End index.php */
/* End index.php */
/* End index.php */
/* End index.php */
/* End index.php */
/* End index.php */
/* End index.php */


























































/* PRODUCTS.PHP */
/* PRODUCTS.PHP */
/* PRODUCTS.PHP */
/* PRODUCTS.PHP */
/* PRODUCTS.PHP */
/* PRODUCTS.PHP */
/* PRODUCTS.PHP */
/* PRODUCTS.PHP */
/* PRODUCTS.PHP */
/* PRODUCTS.PHP */
/* PRODUCTS.PHP */
/* PRODUCTS.PHP */
/* PRODUCTS.PHP */
/* PRODUCTS.PHP */
/* PRODUCTS.PHP */
/* PRODUCTS.PHP */
/* PRODUCTS.PHP */
/* PRODUCTS.PHP */
/* PRODUCTS.PHP */
/* PRODUCTS.PHP */
/* PRODUCTS.PHP */
/* PRODUCTS.PHP */
/* PRODUCTS.PHP */
/* PRODUCTS.PHP */
/* PRODUCTS.PHP */
/* PRODUCTS.PHP */
/* PRODUCTS.PHP */
/* PRODUCTS.PHP */
/* PRODUCTS.PHP */
/* PRODUCTS.PHP */



/* Size Filter In Products */
.size-grid {
    display: grid !important;
    grid-template-columns: repeat(3, 1fr) !important;
    gap: 8px !important;
    max-width: 300px !important;
}

.size-option {
    display: block;
    padding: 10px;
    text-align: center;
    border: 1px solid #ddd;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.2s;
}

.size-option input[type="checkbox"] {
    position: absolute;
    opacity: 0;
}

.size-option span {
    display: block; /* Makes the text fill the container */
}

.size-option:hover {
    border-color: #999;
}


.size-option:has(input[type="checkbox"]:checked) {
    border: 2px solid #000;
    padding: 9px; /* Compensates for thicker border */
}



 .products-page {
            padding: 150px 0;
        }

        

        .page-header {
            margin-bottom: 40px;
        }

        .page-header h1 {
            font-size: 2.8rem;
            font-weight: 400;
            margin-bottom: 10px;
        }

        .page-header p {
            color: var(--dark-gray);
            opacity: 0.8;
            max-width: 600px;
        }

        /* Main Layout */
        .products-container {
            display: flex;
            gap: 40px;
        }

        /* Filter Button */
        .filter-toggle {
            display: none;
            background: var(--black);
            color: var(--white);
            border: none;
            padding: 12px 20px;
            font-size: 0.9rem;
            margin-bottom: 20px;
            cursor: pointer;
            align-items: center;
            gap: 8px;
        }

        /* Filter Sidebar */
        .filter-sidebar {
            width: 280px;
            flex-shrink: 0;
        }

        .filter-group {
            margin-bottom: 30px;
            padding-bottom: 20px;
            border-bottom: 1px solid var(--medium-gray);
        }

        .filter-group h3 {
            font-size: 0.95rem;
            font-weight: 600;
            margin-bottom: 15px;
            text-transform: uppercase;
            letter-spacing: 1px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            cursor: pointer;
        }

        .filter-group h3 i {
            transition: var(--transition);
        }

        .filter-options {
            display: flex;
            flex-direction: column;
            gap: 12px;
        }

        .filter-option {
            display: flex;
            align-items: center;
            gap: 10px;
            margin-bottom: 10px;
        }

        .filter-option input[type="checkbox"] {
            width: 26px;
            height: 26px;
            accent-color: var(--gold);
        }

        /* Price Range */
        .price-range {
            margin: 20px 0;
            padding: 0 10px;
        }

        .noUi-connect {
            background: var(--gold);
        }

        .noUi-handle {
            width: 16px;
            height: 16px;
            right: -8px;
            top: -6px;
            border-radius: 50%;
            background: var(--white);
            border: 2px solid var(--gold);
            box-shadow: none;
        }

        .price-range-values {
            display: flex;
            justify-content: space-between;
            font-size: 0.9rem;
            margin-top: 10px;
        }

        /* Main Content */
        .products-main {
            flex-grow: 1;
        }

        .sort-options {
            display: flex;
            justify-content: flex-end;
            margin-bottom: 30px;
        }

        .sort-options select {
            padding: 10px 35px 10px 15px;
            border: 1px solid var(--medium-gray);
            background-color: var(--white);
            font-size: 0.9rem;
            appearance: none;
            background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
            background-repeat: no-repeat;
            background-position: right 15px center;
            background-size: 1em;
            min-width: 200px;
        }




























        .product-listing-section {
            padding: 160px 0;
            background-color: #fff;
        }

        .content-wrapper {
            max-width: 1600px;
            margin: 0 auto;
            padding: 0 30px;
        }

        .section-header {
            margin-bottom: 40px;
            text-align: center;
        }

        .section-header h1 {
            font-size: 2.8rem !important;
            font-weight: 400;
            margin-bottom: 10px;
            color: #333;
        }

        .section-header p {
            color: #666;
            max-width: 600px;
            margin: 0 auto;
        }

        .filter-control-btn {
            display: none;
            background: #111;
            color: #fff;
            border: none;
            padding: 12px 20px;
            font-size: 0.9rem;
            margin-bottom: 20px;
            cursor: pointer;
            align-items: center;
            gap: 8px;
        }

        .product-layout {
            display: grid;
            grid-template-columns: 280px 1fr;
            gap: 40px;
        }

        .filter-panel {
            background: #f9f9f9;
            padding: 20px;
            border-radius: 8px;
        }

        .product-display-area {
            display: flex;
            flex-direction: column;
            gap: 30px;
        }

        .sorting-controls {
            display: flex;
            justify-content: flex-end;
        }

        .sorting-controls select {
            padding: 10px 35px 10px 15px;
            border: 1px solid #ddd;
            background-color: #fff;
            font-size: 0.9rem;
            appearance: none;
            background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
            background-repeat: no-repeat;
            background-position: right 15px center;
            background-size: 1em;
            min-width: 200px;
        }

        .product-grid-view {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
            gap: 30px;
        }

        .product-item {
            display: block;
            text-decoration: none;
            color: #333;
            transition: all 0.3s ease;
            border-radius: 8px;
            overflow: hidden;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);


        }

        .product-item:hover {
            transform: translateY(-5px);
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        }

       



        .product-item:hover .product-img {
            transform: scale(1.05);
        }

        .product-details {
            padding: 15px;
        }


        .product-type {
            color: #777;
            font-size: 0.8rem;
            margin-bottom: 8px;
            display: block;
        }

        .price-tag {
            font-size: 1.15rem;
            font-weight: 600;
            color: #000;
        }

        .no-products-message {
            grid-column: 1 / -1;
            text-align: center;
            padding: 80px 0;
        }

        .pagination-control {
            text-align: center;
            margin-top: 60px;
        }

        .load-more-btn {
            background: #111;
            color: #fff;
            border: none;
            padding: 15px 45px;
            font-size: 0.9rem;
            font-weight: 500;
            letter-spacing: 1px;
            cursor: pointer;
            transition: all 0.3s ease;
            border-radius: 4px;
        }

        .load-more-btn:hover {
            background: #D4AF37;
            color: #000;
        }

        @media (max-width: 992px) {
            .product-layout {
                grid-template-columns: 1fr;
            }

            .filter-control-btn {
                display: flex;
            }

            .filter-panel {
                display: none;
            }
        }

        @media (max-width: 768px) {
            .product-grid-view {
                grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
                gap: 20px;
            }

            .section-header h1 {
                font-size: 2.4rem;
            }
        }

        @media (max-width: 576px) {
            .product-grid-view {
                grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
                gap: 15px;
            }

            .section-header h1 {
                font-size: 2rem;
            }

            .load-more-btn {
                width: 100%;
            }
        }





        .product-image-wrapper {
            position: relative;
            width: 100%;
            padding-top: 100%;
            /* Creates a square aspect ratio (1:1) */
            overflow: hidden;
            background-color: #f5f5f5;
            margin-bottom: 15px;
        }

        .product-img {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            object-fit: cover;
            /* Ensures image covers the area while maintaining aspect ratio */
            transition: transform 0.3s ease;
        }

       
















































        /* Mobile Filter Overlay */
        .filter-overlay {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.5);
            z-index: 1000;
        }

        .filter-sidebar-mobile {
            position: fixed;
            top: 0;
            left: 0;
            width: 85%;
            max-width: 350px;
            height: 100%;
            background: var(--white);
            padding: 30px;
            overflow-y: auto;
            transform: translateX(-100%);
            transition: var(--transition);
            z-index: 1001;
        }

        .filter-sidebar-mobile.active {
            transform: translateX(0);
        }

        .filter-close {
            position: absolute;
            top: 20px;
            right: 20px;
            font-size: 1.2rem;
            cursor: pointer;
        }

        /* Responsive */


        @media (max-width: 992px) {
            .filter-toggle {
                display: flex;
            }

            .filter-sidebar {
                display: none;
            }
        }

        @media (max-width: 768px) {


            .page-header h1 {
                font-size: 2.4rem;
            }
        }

        @media (max-width: 576px) {


            .page-header h1 {
                font-size: 2rem;
            }


        }







            .filter-group h3 {
                font-size: 16px;
                margin-bottom: 12px;
                display: flex;
                justify-content: space-between;
                align-items: center;
                cursor: pointer;
            }

            .category-type-options {
                display: flex;
                gap: 10px;
            }

            .category-option {
                flex: 1;
                position: relative;
            }

            .category-option input[type="radio"] {
                position: absolute;
                opacity: 0;
            }

            .option-content {
                display: flex;
                flex-direction: column;
                align-items: center;
                justify-content: center;
                padding: 15px 10px;
                border: 1px solid #e0e0e0;
                border-radius: 8px;
                cursor: pointer;
                transition: all 0.3s ease;
                height: 100%;
            }

            .option-icon {
                font-size: 24px;
                margin-bottom: 8px;
                color: #666;
            }

            .category-option input[type="radio"]:checked + .option-content {
                border: 2px solid black;
                background-color: #f8f8f8;
            }

            .category-option input[type="radio"]:checked + .option-content .option-icon {
                color: #000;
            }

            .category-option:hover .option-content {
                border-color: #999;
            }



























































































/* product details */
/* product details */
/* product details */
/* product details */
/* product details */
/* product details */
/* product details */
/* product details */
/* product details */
/* product details */
/* product details */
/* product details */
/* product details */



        .product-gallery {
            display: grid;
            grid-template-columns: 120px 1fr;
            gap: 30px;
            margin-bottom: 60px;
        }
        
        .thumbnail-container {
            display: flex;
            flex-direction: column;
            gap: 15px;
        }
        
        
        .thumbnail {
            width: 100%;
            height: 120px;
            object-fit: cover;
            cursor: pointer;
            border: 1px solid var(--gray);
            transition: var(--transition);
            opacity: 0.7;
        }
        
        .thumbnail:hover, .thumbnail.active {
            opacity: 1;
            border-color: var(--gold);
        }
        
        .main-image-container {
            position: relative;
            overflow: hidden;
            height: 700px;
        }
        
        .main-image {
            width: 100%;
            height: 100%;
            object-fit: contain;
            transition: opacity 0.5s ease;
        }
        
        
        
        /* Product Info */
        .product-info-details {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
        }
        
        .product-header {
            margin-bottom: 30px;
        }
        
        .product-title {
            font-size: 28px;
            font-weight: 400;
            margin-bottom: 15px;
            line-height: 1.2;
            font-family: 'Playfair Display', serif;
        }
        
        .product-price {
            font-size: 24px;
            margin-bottom: 5px;
            font-family: 'Playfair Display', serif;
        }
        






        .product-description {
            margin: 30px 0;
            line-height: 1.8;
            color: #555;
          
        }
        
        /* Size Selector */
        .size-selector {
            margin: 30px 0;
        }
        
        .size-title h3 {
            font-size: 16px;
            text-transform: uppercase;
            letter-spacing: 1px;
            margin-bottom: 15px;
        }
        
        .size-options {
            display: flex;
            flex-wrap: wrap;
            gap: 10px;
        }
        
        .size-option {
            border: 1px solid var(--gray);
            padding: 12px 20px;
            cursor: pointer;
            transition: var(--transition);
            text-align: center;
            min-width: 60px;
        }
        
        .size-option:hover {
            border-color: var(--dark);
        }
        
        .size-option.selected {
            background-color: var(--dark);
            color: white;
            border-color: var(--dark);
        }
        





































        



        /* Add to Cart */
        /* Add to Cart */
        /* Add to Cart */
        /* Add to Cart */
        /* Add to Cart */
        /* Add to Cart */
        /* Add to Cart */
        /* Add to Cart */
        /* Add to Cart */
        /* Add to Cart */
        /* Add to Cart */
        /* Add to Cart */




        .add-to-cart {
            margin-top: 40px;
        }
        
        .quantity-selector {
            display: flex;
            border: 1px solid var(--gray);
            max-width: 125px;
            margin-bottom: 20px;
        }
        
        .quantity-btn {
            background-color: var(--gray);
            border: none;
            padding: 12px 15px;
            cursor: pointer;
            font-size: 16px;
            width: 40px;
        }
        
        .quantity-input {
            width: 120%;
            border: none;
            text-align: center;
            font-size: 16px;
            outline: none;
            background: transparent;
        }
        
        .add-to-cart-btn {
            background-color: var(--dark);
            color: white;
            border: none;
            padding: 18px 40px;
            width: 50%;
            font-size: 16px;
            text-transform: uppercase;
            letter-spacing: 1px;
            cursor: pointer;
            transition: var(--transition);
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
        }
        
        .add-to-cart-btn:hover {
            background-color: var(--gold);
            color: var(--dark);
        }
        
        /* Product Details Accordion */
        .details-accordion {
            margin-top: 60px;
        }
        
        .accordion-item {
            border-bottom: 1px solid var(--gray);
        }
        
        .accordion-header {
            padding: 20px 0;
            display: flex;
            justify-content: space-between;
            cursor: pointer;
            align-items: center;
        }
        
        .accordion-header h3 {
            font-family: 'Playfair Display', serif;
            font-weight: 500;
        }
        
        .accordion-content {
            padding-bottom: 20px;
            color: #555;
            line-height: 1.8;
            display: none;
        }
        
        .accordion-item.active .accordion-content {
            display: block;
        }
        
        .accordion-icon {
            transition: var(--transition);
        }
        
        .accordion-header img {
            transition: var(--transition);
        }
        .accordion-item:not(.active) .accordion-header img {
            transform: rotate(0deg);
        }
        .accordion-item.active .accordion-header img {
            transform: rotate(180deg);
        }

        
        /* Luxury Badges */
        .luxury-badges {
            display: flex;
            gap: 20px;
            margin-top: 40px;
        }
        
        .badge {
            display: flex;
            align-items: center;
            gap: 10px;
            font-size: 14px;
        }
        
        /* Cart Sidebar */
        .cart-sidebar {
            position: fixed;
            top: 0;
            right: -450px;
            width: 450px;
            height: 100vh;
            background-color: white;
            box-shadow: -5px 0 30px rgba(0,0,0,0.1);
            z-index: 1000;
            transition: var(--transition);
            display: flex;
            flex-direction: column;
        }
        
        .cart-sidebar.active {
            right: 0;
        }
        
        .cart-header {
            padding: 25px;
            border-bottom: 1px solid var(--gray);
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        
        .cart-title {
            font-size: 20px;
            font-weight: 500;
            font-family: 'Playfair Display', serif;
        }
        
        .close-cart {
            background: none;
            border: none;
            font-size: 20px;
            cursor: pointer;
        }
        
        .cart-items {
            flex: 1;
            overflow-y: auto;
            padding: 25px;
        }
        
        .cart-item {
            display: flex;
            gap: 20px;
            margin-bottom: 25px;
            padding-bottom: 25px;
            border-bottom: 1px solid var(--gray);
            position: relative;
        }

        .empty-cart {
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            height: 100%; 
            text-align: center;
            padding: 40px 20px;
            color: #555;
        }

        .empty-cart-icon {
            font-size: 80px;
            color: #ccc;
            margin-bottom: 20px;
        }
        
        .cart-item-image {
            width: 100px;
            height: 120px;
            object-fit: cover;
        }
        
        .cart-item-details {
            flex: 1;
            text-align: left;

        }
        
        .cart-item-title {
            font-size: 16px;
            margin-bottom: 5px;
            font-family: 'Playfair Display', serif;
        }
        
        .cart-item-meta {
            font-size: 14px;
            color: #777;
            margin-bottom: 10px;
        }
        
        .cart-item-price {
            font-weight: 500;
            margin-bottom: 15px;
        }
        
        .cart-item-actions {
            display: flex;
            gap: 15px;
            align-items: center;
        }
        
        .quantity-selector-small {
            display: flex;
            align-items: center;
            border: 1px solid var(--gray);
        }
        
        .quantity-btn-small {
            background: none;
            border: none;
            padding: 5px 10px;
            cursor: pointer;
        }
        
        .quantity-value-small {
            width: 40px;
            text-align: center;
            border: none;
            border-left: 1px solid var(--gray);
            border-right: 1px solid var(--gray);
            padding: 5px;
        }
        
        .remove-item {
            background: none;
            border: none;
            color: #777;
            cursor: pointer;
            transition: var(--transition);
        }
        
        .remove-item:hover {
            color: var(--gold);
        }
        
        .edit-item {
            background: none;
            border: none;
            color: #777;
            cursor: pointer;
            transition: var(--transition);
        }
        
        .edit-item:hover {
            color: var(--gold);
        }
        
        .cart-footer {
            padding: 25px;
            border-top: 1px solid var(--gray);
        }
        

     

        @media(max-width: 992px){
            .cart-footer {
    margin-bottom: 100px !important; /* Forces the margin */

}
.cart-items{

    text-align: center;
    margin-top: 70px;
    line-height: 1em;
}

        }
        
        .cart-subtotal {
            display: flex;
            justify-content: space-between;
            margin-bottom: 25px;
            font-size: 18px;
        }
        
        .buy-now-btn {
            background-color: var(--dark);
            color: white;
            border: none;
            padding: 18px;
            width: 100%;
            font-size: 16px;
            text-transform: uppercase;
            letter-spacing: 1px;
            cursor: pointer;
            transition: var(--transition);
            font-family: 'Playfair Display', serif;
        }
        
        .buy-now-btn:hover {
            background-color: var(--gold);
            color: var(--dark);
        }
        
        .cart-overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0,0,0,0.5);
            z-index: 999;
            opacity: 0;
            visibility: hidden;
            transition: var(--transition);
        }
        
        .cart-overlay.active {
            opacity: 1;
            visibility: visible;
        }
        
        /* Responsive */
        @media (max-width: 992px) {
            .product-gallery {
                grid-template-columns: 1fr;
            }
            
            .thumbnail-container {
                flex-direction: row;
                order: 2;
                width: 100%;
            }
            
            .product-info {
                grid-template-columns: 1fr;
            }
            
            .main-image-container {
                height: 500px;
            }
            
            .cart-sidebar {
                width: 100%;
                right: -100%;
            }
            .product-gallery{
                padding: 10px;
            }
            .thumbnail-container img{
                object-fit: contain;
            }
        }
        
        @media (max-width: 576px) {
            .container {
                padding: 20px 15px;
            }
            
            .product-title {
                font-size: 18px;
            }
            
            .product-price {
                font-size: 20px;
            }
            
            .size-option {
                padding: 10px 15px;
                min-width: 50px;
            }
            
            .add-to-cart-btn {
                padding: 15px;
                width: 100%;
            }
            
            .luxury-badges {
                flex-direction: column;
                gap: 10px;
            }
          }






/* cart system  */
/* cart system  */
/* cart system  */
/* cart system  */
/* cart system  */
/* cart system  */
/* cart system  */
/* cart system  */
/* cart system  */
/* cart system  */
/* cart system  */
/* cart system  */
/* cart system  */
/* cart system  */


.cart-icon {
    position: relative;
    font-size: 20px;
    color: var(--dark);
    text-decoration: none;
}

.cart-count {
    position: absolute;
    top: -10px;
    right: -10px;
    background: var(--gold);
    color: white;
    border-radius: 50%;
    width: 20px;
    height: 20px;
    font-size: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}




.continue-shopping {
            display: inline-block;
            padding: 10px 20px;
            background-color: var(--dark);
            color: white;
            text-decoration: none;
            border-radius: 4px;
            transition: var(--transition);
            margin-top: 20px;
        }
        


.checkout-btn {
            background-color: var(--dark);
            color: white;
            border: none;
            padding: 15px;
            width: 100%;
            font-size: 16px;
            cursor: pointer;
            transition: var(--transition);
            text-transform: uppercase;
            letter-spacing: 1px;
        }
        
        .checkout-btn:hover {
            background-color: var(--gold);
            color: var(--dark);
        }
@media (max-width: 600px) {
            .cart-sidebar {
                width: 100%;
                right: -100%;
            }
        }

@media (min-width: 601px) and (max-width: 1024px) {
    .cart-sidebar {
        width: 50%;
        right: -100%;
    }
}












































































@media (max-width: 991px) {
  .filter-panel {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 80%;
    max-width: 300px;
    height: 100vh;
    background-color: #fff;
    overflow-y: auto;
    padding: 3rem 2rem 2rem; /* More top padding */
    box-shadow: 2px 0 8px rgba(0,0,0,0.2);
    z-index: 1001;
    transition: all 0.3s ease;
  }

  .filter-panel.active {
    display: block;
  }

  .overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: rgba(0,0,0,0.5);
    z-index: 1000;
  }

  .overlay.active {
    display: block;
  }

  body.filter-active {
    overflow: hidden;
  }

  
}























/* Add these new rules */


.nav-right {
    display: flex;
    flex-direction:row-reverse ;
    align-items: center;
    gap: 15px; /* Space between cart and menu button */
}

/* For mobile view */
@media (max-width: 992px) {
    .main-nav {
        margin-right: 0; /* Reset any margin */
        padding: 120px 30px 30px;
    }
    
    /* Ensure cart icon stays properly aligned */
    .nav-icons {
        order: 2;
        margin-left: 0;
    }
    
    .mobile-menu-toggle {
        order: 1;
        margin-left: 0; /* Add some space between cart and button */
    }
    .main-nav > ul {
        margin-top: 40px; /* This adds space below the nav header */
    }
}































/* SERVICES */
/* SERVICES */
/* SERVICES */
/* SERVICES */
/* SERVICES */
/* SERVICES */
/* SERVICES */
/* SERVICES */
/* SERVICES */
/* SERVICES */
/* SERVICES */
/* SERVICES */
/* SERVICES */
/* SERVICES */
/* SERVICES */
/* SERVICES */
/* SERVICES */
/* SERVICES */
/* SERVICES */
/* SERVICES */
/* SERVICES */
/* SERVICES */
/* SERVICES */
/* SERVICES */
/* SERVICES */
/* SERVICES */
/* SERVICES */
/* SERVICES */
/* SERVICES */
/* SERVICES */
/* SERVICES */
/* SERVICES */
/* SERVICES */
/* SERVICES */
/* SERVICES */
/* SERVICES */
/* SERVICES */
/* SERVICES */
/* SERVICES */
.services-section {
      padding: 120px 20px;
      background-color: #f9f9f9;
    }

    .services-section h2 {
      text-align: center;
      margin-bottom: 10px;
      font-size: 32px;
      font-weight: bold;
    }

    .services-section p {
      text-align: center;
      margin-bottom: 40px;
      color: #666;
    }

    .services-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 20px;
      max-width: 1100px;
      margin: 0 auto;
    }

    .service-box {
      background-color: white;
      border: 1px solid #ddd;
      border-radius: 8px;
      padding: 30px 20px;
      text-align: center;
      box-shadow: 0 2px 8px rgba(0,0,0,0.05);
    }

    .service-box i {
      font-size: 30px;
      margin-bottom: 15px;
    }

    .service-box h5 {
      font-size: 18px;
      margin-bottom: 10px;
    }

    .service-box p {
      font-size: 14px;
      color: #444;
    }

    

    /* Responsive (stack on mobile) */
    @media (max-width: 768px) {
      .services-grid {
        grid-template-columns: 1fr;
      }

      .service-box:nth-child(4),
      .service-box:nth-child(5) {
        grid-column: auto;
      }
    }


















/* Footer */
/* Footer */
/* Footer */
/* Footer */
/* Footer */
/* Footer */
/* Footer */
/* Footer */
/* Footer */
/* Footer */
/* Footer */
/* Footer */
/* Footer */
/* Footer */
/* Footer */
/* Footer */
/* Footer */
/* Footer */
/* Footer */
/* Footer */
/* Footer */
/* Footer */
/* Footer */
/* Footer */
/* Footer */
/* Footer */
/* Footer */
/* Footer */
/* Footer */
/* Footer */
/* Footer */
.footer {
    background-color: #222;
    color: #fff;
    padding: 40px 20px 20px;
    position: relative;
  }

  .footer .container {
    max-width: 1200px;
    margin: auto;
  }

  .footer-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 40px;
  }

  .footer-col {
    flex: 1 1 300px;
    min-width: 250px;
  }

    .icon-text {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #ccc;
    font-size: 14px;
    margin-bottom: 10px;
    }

  .footer-col h5,
  .footer-col h6 {
    font-size: 18px;
    margin-bottom: 15px;
    color: #f9f9f9;
  }

  .footer-col p {
    font-size: 14px;
    color: #ccc;
    margin-bottom: 10px;
    
  }
  .footer-col p img {
    height: 35px;
    width: 35px;
  }


  .footer-col i {
    margin-right: 8px;
    color: #bbb;
  }

  .footer-bottom {
    text-align: center;
    padding-top: 20px;
    font-size: 14px;
    color: #aaa;
  }


  @media (max-width: 768px) {
    
    .footer-col {
      text-align: left;
    }
  }


@media (min-width: 768px) {
    .footer-row {
      gap: 100px;
    }
  }




