/*

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 50%, #f093fb 100%);
    min-height: 100vh;
    padding: 20px;
}


.container {
    max-width: 900px;
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    overflow: hidden;
}

.header {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 60px 40px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.header::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
    animation: pulse 15s ease-in-out infinite;
}

*/


* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}


body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
    background: #f4f4f4;
}


.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0px 20px;
}

h1 {
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
}

h2 {
    color: #3d2817;
    font-size: 1.8rem;
    margin: 2.5rem 0 1rem 0;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid #d4a574;
}

h3 {
    color: #5c4033;
    font-size: 1.3rem;
    margin: 1.5rem 0 0.8rem 0;
}

p {
    margin-bottom: 1rem;
    text-align: justify;
}



header {
	background: linear-gradient(to right, #1c1c1c 0%, #4a3f35 40%, #c9a961 70%, #f5e6d3 100%);	
    color: white;
    padding: 1rem 0;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}


        .homePage_header_section {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 0px 20px;
           
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
        }

        .homePage_logo {
            display: flex;
            align-items: center;
            gap: 12px;
            font-size: 24px;
            font-weight: bold;
            
        }

        .homePage_logo_image {
            width: 50px;
            height: 50px;
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            border-radius: 8px;
            display: flex;
            align-items: center;
            justify-content: center;
           
            font-size: 28px;
        }
        .homePage_cart_icon {
            position: relative;
            cursor: pointer;
            transition: transform 0.2s;
        }

        .homePage_cart_icon:hover {
            transform: scale(1.1);
        }

        .homePage_cart_svg {
            width: 32px;
            height: 32px;
        }

        .homePage_cart_badge {
            position: absolute;
            top: -8px;
            right: -8px;
            background-color: #ff4757;
            color: white;
            border-radius: 50%;
            width: 20px;
            height: 20px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 12px;
            font-weight: bold;
        }
		
.homePage_circle_image {
	width: 50px;         /* Set a fixed width */
	height: 50px;        /* Set a fixed height (must match the width for a perfect circle) */
	border-radius: 60%;   /* Crops the image into a circle */
	object-fit: cover;    /* Ensures the image covers the entire circle without stretching */
}




@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

.header h1 {
    font-size: 1.9em;
    margin-bottom: 10px;
    position: relative;
    z-index: 1;
}

.header p {
    font-size: 1.1em;
    opacity: 0.95;
    position: relative;
    z-index: 1;
}

.icon-row {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-top: 20px;
    position: relative;
    z-index: 1;
}

.icon {
    font-size: 2em;
    opacity: 0.9;
}

.content {
    padding: 50px 40px;
    color: #333;
}

.content p {
	
    font-size: 20px;
    opacity: 0.9;
}
		
		
.privacyPolicyPage_lastupdated {
    background: #f0e6d6;
   
    padding: 15px 25px;
    border-radius: 10px;
    margin-bottom: 30px;
    text-align: center;
    font-weight: 600;
}

.privacyPolicyPage_section {
    margin-bottom: 40px;
    animation: fadeIn 0.6s ease-in;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.privacyPolicyPage_section h2 {
    
    font-size: 1.8em;
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 3px solid #f093fb;
    display: inline-block;
}

.privacyPolicyPage_section h3 {
    color: #764ba2;
    font-size: 1.3em;
    margin-top: 20px;
    margin-bottom: 10px;
}

.privacyPolicyPage_section p {
    line-height: 1.8;
    margin-bottom: 15px;
    color: #555;
}

.privacyPolicyPage_section ul {
    margin-left: 25px;
    margin-bottom: 15px;
}

.privacyPolicyPage_section li {
    line-height: 1.8;
    margin-bottom: 8px;
    color: #555;
}

.privacyPolicyPage_highlightbox {
    background: linear-gradient(135deg, #e0c3fc 0%, #8ec5fc 100%);
    padding: 25px;
    border-radius: 15px;
    margin: 20px 0;
    border-left: 5px solid #667eea;
}

.privacyPolicyPage_highlightbox strong {
    color: #764ba2;
}

.privacyPolicyPage_contactbox {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    margin-top: 40px;
}

.privacyPolicyPage_contactbox h3 {
    color: white;
    margin-bottom: 15px;
}

.privacyPolicyPage_contactbox a {
    color: #f093fb;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s;
}

.privacyPolicyPage_contactbox a:hover {
    color: white;
}

nav {
    background: white;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 100;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.nav-toggle {
    display: none;
    background: #AA6C39 /*#667eea;*/
    color: white;
    border: none;
    padding: 10px 15px;
    cursor: pointer;
    font-size: 1.2rem;
    border-radius: 5px;
    margin: 10px 0;
}

.nav-menu {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
}

.nav-menu > li {
    position: relative;
}

.nav-menu a {
    display: block;
    padding: 1rem 1.5rem;
    color: #333;
    text-decoration: none;
    transition: all 0.3s;
}

.nav-menu > li > a:hover {
    /*background: #667eea;*/
    color:  #AA6C39;
}

.dropdown {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background: white;
    min-width: 200px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
    list-style: none;
}

.nav-menu > li:hover .dropdown {
    display: block;
}

.dropdown li a {
    padding: 0.75rem 1.5rem;
    border-bottom: 1px solid #eee;
}

.dropdown li:last-child a {
    border-bottom: none;
}

.dropdown li a:hover {
    background: #f8f8f8;
    color: #667eea;
    padding-left: 2rem;
}



@media (max-width: 768px) {
    .header {
        padding: 40px 20px;
    }

    .header h1 {
        font-size: 1.2em;
    }

    .content {
        padding: 30px 20px;
    }

    .icon-row {
        gap: 20px;
    }

    .icon {
        font-size: 1.5em;
    }
	
		h1 {
    font-size: 1.2rem;
	}
	
	.nav-toggle {
        display: block;
    }

    .nav-menu {
        display: none;
        flex-direction: column;
    }

    .nav-menu.active {
        display: flex;
    }

    .nav-menu > li {
        width: 100%;
    }

    .dropdown {
        position: static;
        box-shadow: none;
        background: #f8f8f8;
    }

    .nav-menu > li:hover .dropdown {
        display: none;
    }

    .nav-menu > li.active .dropdown {
        display: block;
    }
	
	
	
}