
* {
    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;
}



		
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);
}


.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0px 20px;
}

h1 {
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
}


.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 */
}



.returnpolicyPage_header {
    text-align: center;
	padding: 30px;
    margin-bottom: 50px;
    animation: fadeIn 0.8s ease-in;
}

.returnpolicyPage_header h2 {
    font-size: 1.6rem;
    color: #2c3e50;
    margin-bottom: 10px;
}

.returnpolicyPage_header p {
    font-size: 1.2em;
    color: #7f8c8d;
}

.returnpolicyPage_guarantee_banner {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    margin-bottom: 40px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    animation: slideUp 0.8s ease-out;
}

.returnpolicyPage_guarantee_banner h2 {
    font-size: 2em;
    margin-bottom: 10px;
}

.returnpolicyPage_guarantee_banner p {
    font-size: 1.1em;
    opacity: 0.95;
}

.returnpolicyPage_content_grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.returnpolicyPage_policy_card {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    animation: fadeIn 0.8s ease-in;
}

.returnpolicyPage_policy_card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.returnpolicyPage_policy_card .returnpolicyPage_icon {
    font-size: 3em;
    margin-bottom: 15px;
}

.returnpolicyPage_policy_card h3 {
    color: #2c3e50;
    margin-bottom: 15px;
    font-size: 1.5em;
}

.returnpolicyPage_policy_card p {
    color: #555;
    margin-bottom: 10px;
}

.returnpolicyPage_policy_card ul {
    list-style: none;
    padding-left: 0;
}

.returnpolicyPage_policy_card ul li {
    padding: 8px 0;
    padding-left: 25px;
    position: relative;
    color: #555;
}

.returnpolicyPage_policy_card ul li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #667eea;
    font-weight: bold;
}

.returnpolicyPage_steps_section {
    background: white;
    padding: 40px;
    border-radius: 15px;
    margin-bottom: 40px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.returnpolicyPage_steps_section h2 {
    color: #2c3e50;
    text-align: center;
    margin-bottom: 30px;
    font-size: 2em;
}

.returnpolicyPage_steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
}

.returnpolicyPage_step {
    text-align: center;
    padding: 20px;
    position: relative;
}

.returnpolicyPage_step_number {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5em;
    font-weight: bold;
    margin: 0 auto 15px;
}

.returnpolicyPage_step h4 {
    color: #2c3e50;
    margin-bottom: 10px;
}

.returnpolicyPage_step p {
    color: #555;
    font-size: 0.95em;
}

.returnpolicyPage_contact_section {
     background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 40px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.returnpolicyPage_contact_section h2 {
    margin-bottom: 15px;
    font-size: 2em;
}

.returnpolicyPage_contact_section p {
    font-size: 1.1em;
    margin-bottom: 20px;
}

.returnpolicyPage_contact_button {
    display: inline-block;
    background: white;
    color: #f5576c;
    padding: 15px 40px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.returnpolicyPage_contact_button:hover {
    transform: scale(1.05);
    box-shadow: 0 5px 20px rgba(0,0,0,0.3);
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}


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) {
	
	h1 {
    font-size: 1.0rem;
	}
	 .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;
    }

    .returnpolicyPage_header h2 {
        font-size: 0.8em;
    }

    .returnpolicyPage_guarantee_banner h2 {
        font-size: 1.5em;
    }

    .returnpolicyPage_steps {
        grid-template-columns: 1fr;
    }
}