:root {
    --primary: #2563eb;
    --primary-purple: #838de7;
    --whatsapp: #25d366;
    --dark: #1e293b;
    --bg-light: #f8f9fa;
    --bg: #f8fafc;
}

body { margin: 0; padding: 0; font-family: 'Segoe UI', sans-serif; background: var(--bg); color: var(--dark); overflow-x: hidden; }

/* HERO SECTION */
.hero-section {  padding:30px; position: relative; width: 100%; height: 400px; background-color: #fcf9f9; }
.heroSwiper { width: 100%; height: 100%; }
.heroSwiper img { width: 100%; height: 100%; object-fit: cover; }
.hero-card { 
    position: absolute; 
    top: 50%; 
    left: 50%; 
    transform: translate(-50%, -50%); 
    z-index: 20; 
    
    /* CHANGE: Glass Transparency Settings */
    background: rgba(255, 255, 255, 0.05); /* Extremely transparent */
    backdrop-filter: blur(10px);           /* The glass blur effect */
    -webkit-backdrop-filter: blur(10px);   /* Safari support */
    border: 1px solid rgba(255, 255, 255, 0.2); /* Thin glass edge */
    
    padding: 40px 50px; 
    border-radius: 12px; 
    text-align: center; 
    color: rgb(8, 8, 8); 
    width: 500px; 
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1); /* Adjusted shadow to match glass */
}
.hero-btn-link { display: inline-block; text-decoration: none; background: #007bff; color: white; padding: 12px 35px; border-radius: 5px; font-weight: bold; transition: 0.3s; }

/* SHOP CATEGORIES */
/* This makes the movement perfectly smooth and constant */
.swiper-wrapper {
    transition-timing-function: linear !important;
}
.shop-cat-section { position: relative; padding: 10px 5%; background-color: var(--bg-light); margin-top: 20px; }
.cat-card { display: flex; flex-direction: column; align-items: center; justify-content: center; background: #ffffff; border-radius: 20px; text-decoration: none; height: 180px; padding: 15px; transition: 0.3s; border: 1px solid rgba(0,0,0,0.05); }
.cat-card:hover { transform: translateY(-8px); box-shadow: 0 12px 25px rgba(0,0,0,0.1); }
.cat-img-box { width: 100%; height: 90px; display: flex; align-items: center; justify-content: center; }
.cat-img-box img { max-width: 100%; max-height: 80%; object-fit: contain; }
.cat-name { font-weight: 700; font-size: 14px; color: #333; text-transform: uppercase; margin-bottom: 10px; }
.slider-arrow { position: absolute; top: 55%; z-index: 10; width: 40px; height: 40px; background: #fff; border: none; border-radius: 50%; cursor: pointer; box-shadow: 0 4px 12px rgba(0,0,0,0.1); color: var(--primary-purple); }
.slider-arrow.prev { left: 10px; } .slider-arrow.next { right: 10px; }

/* SERVICES & SIDEBAR */
.wrapper { display: flex; max-width: 1500px; margin: 40px auto; padding: 0 20px; gap: 30px; }
.sidebar { width: 200px; flex-shrink: 0; background: #fff; border-radius: 16px; padding: 25px; box-shadow: 0 4px 20px rgba(0,0,0,0.05); position: sticky; top: 20px; }
.cat-item { display: flex; justify-content: space-between; padding: 12px 15px; text-decoration: none; color: #475569; border-radius: 10px; margin-bottom: 8px; font-weight: 500; }
.cat-item.active { background: var(--primary); color: #fff; }
.main-content { flex: 1; min-width: 0; }
.service-card { background: #fff; border-radius: 16px; overflow: hidden; height: 100%; display: flex; flex-direction: column; border: 1px solid #f1f5f9; }
.img-container { width: 100%; aspect-ratio: 16/10; overflow: hidden; }
.img-container img { width: 100%; height: 100%; object-fit: cover; }
.price { font-size: 18px; font-weight: 800; }
.btn-whatsapp { background: var(--whatsapp); color: #fff; padding: 10px; text-align: center; border-radius: 8px; text-decoration: none; display: block; margin-top: 15px; }

/* OFFERS CARDS */
.section-wrap { max-width: 1400px; margin: 50px auto; padding: 0 20px; }
.section-title { font-size: 24px; border-left: 5px solid #838de7; padding-left: 15px; margin: 40px 0 25px; }
.card { background: #fff; border: 1px solid #eee; border-radius: 12px; padding: 20px; text-align: center; height: 380px; display: flex; flex-direction: column; text-decoration: none; color: inherit; }
.card img { width: 100%; height: 180px; object-fit: contain; }
.btn-more { background: #838de7; color: #fff; padding: 10px; border-radius: 5px; margin-top: auto; }

/* BANNER */
.banner-container { width: 100%; max-width: 1200px; margin: 20px auto; padding: 0 5%; }
.styled-banner { width: 100%; height: 350px; object-fit: cover; border-radius: 20px; box-shadow: 0 10px 25px rgba(0,0,0,0.2); }

/* BRANDS */
.brand-section1 { padding: 0px 2%; background: #fff; overflow: hidden; }
.slider-track1 { display: flex; gap: 15px; width: max-content; }
.brand-card1 { width: 220px; height: 100px; display: flex; align-items: center; justify-content: center; transition: 0.3s; }
.brand-card1 img { max-width: 100%; max-height: 100%; object-fit: contain; }

/* MODAL */
.modal { display: none; position: fixed; z-index: 1000; top: 0; left: 0; width: 100%; height: 100%; background: rgba(0,0,0,0.6); align-items: center; justify-content: center; }
.modal-content { background: #fff; width: 90%; max-width: 900px; border-radius: 20px; display: flex; overflow: hidden; position: relative; }
.modal-img { width: 45%; }
.modal-img img { width: 100%; height: 100%; object-fit: cover; }
.modal-info { width: 55%; padding: 40px; }
.modal-close { position: absolute; right: 20px; top: 10px; font-size: 30px; cursor: pointer; }

/* FOOTER */

@media (max-width: 992px) { .wrapper, .modal-content { flex-direction: column; } .modal-img, .modal-info { width: 100%; } }
/* MOBILE RESPONSIVE FIXES */

/* 1. Header & Top Bar */
@media (max-width: 768px) {
    .prince-top-bar {
        font-size: 12px;
    }
    .prince-top-content {
        justify-content: center;
        flex-wrap: wrap;
        gap: 10px;
    }
    
    .prince-header-grid {
        display: flex;
        flex-direction: column; /* Stacks Logo, Search, and Account */
        align-items: center;
        gap: 15px;
        padding: 10px 0;
    }

    .prince-search-box {
        width: 100%;
        max-width: 100%;
    }

    /* 2. Navigation - Makes it scrollable horizontally so links don't break */
    .prince-nav-bar {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }
    .prince-nav-links {
        display: flex;
        white-space: nowrap;
        padding: 10px 5px;
    }
    .prince-nav-links li {
        display: inline-block;
    }

    /* 3. Hero Section */
    .hero-section {
        flex-direction: column;
        height: auto;
    }
    .hero-card {
        width: 100%;
        padding: 20px;
        text-align: center;
        position: relative;
        z-index: 10;
    }
    .hero-card h1 {
        font-size: 24px;
    }
    .heroSwiper {
        height: 250px; /* Adjust height for mobile */
    }

    /* 4. Swiper / Cards */
    .cat-card {
        height: 120px;
    }
    .section-title {
        font-size: 20px;
        margin-left: 15px;
    }

    /* 5. Brand Slider */
    .brand-card1 {
        min-width: 100px;
    }

    /* 6. Footer - Stacks the columns */
    .footer-content {
        flex-direction: column;
        padding: 20px;
        gap: 30px;
    }
    .footer-col {
        width: 100%;
        text-align: center;
    }
    .footer-col ul {
        padding: 0;
    }
    
    /* Sticky Social Bar - Move to bottom on mobile so it doesn't block text */
    .sticky-social-bar {
        top: auto;
        bottom: 20px;
        transform: translateY(0);
        flex-direction: row;
        width: 100%;
        justify-content: center;
        background: rgba(255,255,255,0.9);
        padding: 5px 0;
        left: 0;
    }
}

/* Extra Small Devices */
@media (max-width: 480px) {
    .prince-brand-name {
        font-size: 18px;
    }
    .hero-btn-link {
        padding: 10px 15px;
        font-size: 14px;
    }
    .card {
        margin: 5px;
    }
}