	
* {
    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(135deg, #667eea 0%, #764ba2 100%);*/
	background: linear-gradient(to right, #1c1c1c 0%, #4a3f35 40%, #c9a961 70%, #f5e6d3 100%);
	 /* for bookstore: #FAF8F3 #F5F1E8 */
    color: white;
    padding: 1rem 0;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

		
main {
    padding: 2rem 0;
}		
		
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
	
	color: #fff;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

h1 {
    font-size: 1.8rem;
    margin-bottom: 0.1rem;
}

.home_seperator {
    width: 2px;
    height: 40px;
    /*background: linear-gradient(to bottom, transparent, #667eea, transparent); */
}


        .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 */
}





.cart-icon {
    background: rgba(255,255,255,0.2);
    padding: 0.5rem 1rem;
    border-radius: 25px;
    font-weight: bold;
}


.cart-icon a {
	text-decoration: none;
	color: #394352;
	padding: 0 10px;
}
.cart-icon a:hover {
	color: #4e5c70;
	text-decoration: none;
}

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;
}

.btn {
    /*background: linear-gradient(135deg, #667eea 0%, #764ba2 100%); */
	background: linear-gradient(to right, #1c1c1c 0%, #4a3f35 40%, #c9a961 70%, #f5e6d3 100%);
    color: white;
    border: none;
    padding: 0.65rem 1.0rem;
    border-radius: 5px;
    cursor: pointer;
    font-size: 1rem;
    transition: opacity 0.3s;
    width: 90%;
}

.btn:hover {
    opacity: 0.9;
}
.btn_small {
    /*background: linear-gradient(135deg, #667eea 0%, #764ba2 100%); */
	background: linear-gradient(to right, #1c1c1c 0%, #4a3f35 40%, #c9a961 70%, #f5e6d3 100%);
    color: white;
    border: none;
    padding: 0.65rem 1.3rem;
    border-radius: 2px;
    cursor: pointer;
    font-size: 0.80rem;
    transition: opacity 0.3s;
    width: 65%;
	margin-left: auto;
}

.btn_small:hover {
    opacity: 0.9;
}


.notification {
    position: fixed;
    top: 20px;
    right: 20px;
    background: white;
    padding: 20px 24px;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.2);
    min-width: 300px;
    max-width: 400px;
    opacity: 0;
    transform: translateX(400px);
    transition: all 0.3s ease;
    z-index: 1000;
}

.notification.show {
    opacity: 1;
    transform: translateX(0);
}

.notification-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
}

.notification-title {
    font-weight: bold;
    font-size: 18px;
    color: #1a1a1a; /* #333; */
}

.notification-close-btn {
    position: absolute;
    top: 10px;
    right: 10px;
    background: #3408fc; 
    color: white;
    border: none;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    font-size: 14px;
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s;
}

.notification-close-btn:hover {
    background: #c9bdff;
    transform: rotate(90deg);
}


.notification-body {
    color: #666;
    line-height: 1.5;
}

.notification-body a {
    color: #667eea;
    text-decoration: none;
    font-weight: bold;
    transition: color 0.2s;
}

.notification-body a:hover {
    color: #764ba2;
    text-decoration: underline;
}


		
       /* 
        .productPage {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 40px;
            padding: 40px;
        }
		*/
        
.productPage {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px; 
    padding: 40px;
    
}




/* Image Slider Styles */
.productPage_sliderContainer {
    position: relative;
    width: 100%;   /* 100%; */
	/* height: 100%;   added */
    aspect-ratio: 1;
    border-radius: 15px;
    overflow: hidden;
    background: #f5f5f5;
}

.productPage_sliderWrapper {
    position: relative;
    width: 100%;
    height: 100%; 
}

.productPage_slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
}

.productPage_slide.active {
    opacity: 1;
}

.productPage_slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.productPage_sliderNav  {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 10;
}

.productPage_sliderDot  {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: green; /*rgba(255, 255, 255, 0.5);*/
    cursor: pointer;
    transition: all 0.3s;
    border: 2px solid white;
}

.productPage_sliderDot.active {
    background: red; /* white; */
    transform: scale(1.2);
}

.productPage_sliderArrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: green; /*rgba(255, 255, 255, 0.9); */
	color: white;
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
    z-index: 10;
}

.productPage_sliderArrow:hover {
    background: white;
	color: red;
    transform: translateY(-50%) scale(1.1);
}

.productPage_sliderArrow.prev {
    left: 10px;
}

.productPage_sliderArrow.next {
    right: 10px;
}

/* Product Info Styles */
.productPage_info {
    display: flex;
    flex-direction: column;
    gap: 20px;
	 color: #666;
}


.productPage_title {
    font-size: 25px;
    font-weight: 700;
    color: #333;
}

.productPage_rating {
    display: flex;
    align-items: center;
    gap: 10px;
}

.productPage_price {
    font-size: 20px;
    font-weight: 600;
    color: #667eea;
}

.productPage_rrp {
	color: #BBBBBB;
	text-decoration: line-through;
	font-size: 20px;
}


.productPage_desc {
    color: #666;
    line-height: 1.6;
	
}

.productPage_features {
    list-style: none;
}

.productPage_features li {
    padding: 10px 0;
    border-bottom: 1px solid #eee;
    color: #555;
}

.productPage_features li:before {
    content: "✓ ";
    color: #667eea;
    font-weight: bold;
    margin-right: 10px;
}

.productPage_quantity_selector {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 0.5rem;
}

.productPage_quantity_selector label {
    font-weight: 600;
}

.productPage_quantity {
    display: flex;
    align-items: center;
    border: 2px solid #e5e7eb;
    border-radius: 8px;
    overflow: hidden;
}

.productPage_quantity button {
    background: #f3f4f6;
    border: none;
    padding: 0.5rem 1rem;
    cursor: pointer;
    font-size: 1.2rem;
    transition: background 0.2s;
}

.productPage_quantity button:hover {
    background: #e5e7eb;
}

.productPage_quantity input {
    border: none;
    width: 60px;
    text-align: center;
    font-size: 1rem;
    padding: 0.5rem;
}

.productPage_lowstock {
    background: #fff3cd;
    border-left: 4px solid #ffa502;
    padding: 12px 15px;
    margin: 20px 0;
    border-radius: 4px;
    font-size: 14px;
}	

.product-image {
    position: relative;
}

.product-image img {
    width: 100%;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.productPage_badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: #ff4757;
    color: white;
    padding: 8px 16px;
    border-radius: 25px;
    font-weight: bold;
    font-size: 14px;
}

.product-details h1 {
    font-size: 32px;
    color: #2d3436;
    margin-bottom: 15px;
}

.rating {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 5px;
}

.stars {
    color: #ffd700;
    font-size: 20px;
    letter-spacing: 2px;
}

.reviews {
    color: #636e72;
    font-size: 14px;
}

.price-section {
    display: flex;
    align-items: center;
    gap: 15px;
    margin: 25px 0;
}

.price {
    font-size: 20px;
    font-weight: bold;
    color: #667eea;
}

.original-price {
    font-size: 24px;
    color: #b2bec3;
    text-decoration: line-through;
}

.productPage_discount {
    background: #00b894;
    color: white;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: bold;
}

.description {
    color: #636e72;
    line-height: 1.6;
    margin: 20px 0;
}

.features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
    margin: 25px 0;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px;
    background: #f8f9fa;
    border-radius: 10px;
    font-size: 14px;
    color: #2d3436;
}

.feature-item::before {
    content: '✓';
    color: #00b894;
    font-weight: bold;
    font-size: 18px;
}

.color-options {
    margin: 25px 0;
}

.color-options h3 {
    font-size: 16px;
    margin-bottom: 12px;
    color: #2d3436;
}

.colors {
    display: flex;
    gap: 10px;
}

.color-btn {
    padding: 10px 20px;
    border: 2px solid #dfe6e9;
    background: white;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s;
    font-size: 14px;
}

.color-btn:hover, .color-btn.active {
    border-color: #667eea;
    background: #667eea;
    color: white;
}

.actions {
    display: flex;
    gap: 15px;
    margin-top: 30px;
}

.btn {
    flex: 1;
    padding: 16px 32px;
    border: none;
    border-radius: 10px;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-primary {
    background: #667eea;
    color: white;
}

.btn-primary:hover {
    background: #5568d3;
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(102, 126, 234, 0.4);
}

.btn-secondary {
    background: white;
    color: #667eea;
    border: 2px solid #667eea;
}

.btn-secondary:hover {
    background: #f8f9fa;
}

.similar-products {
    padding: 40px;
    background: #f8f9fa;
}

.similar-products h2 {
    font-size: 28px;
    margin-bottom: 30px;
    color: #2d3436;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
}

.product-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: all 0.3s;
    cursor: pointer;
    position: relative;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.2);
}

.product-card img {
    width: 100%;
    height: 290px;
    object-fit: cover;
}

.product-info {
    padding: 20px;
}

.product-name {
    font-size: 16px;
    font-weight: bold;
    color: #2d3436;
    margin-bottom: 8px;
}

.product-rating {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 10px;
    font-size: 14px;
}

.product-rating .stars {
    font-size: 14px;
}

.product-price {
    display: flex;
    align-items: center;
    gap: 5px;
}

.product-price .price {
    font-size: 20px;
}

.product-price .original-price {
    font-size: 16px;
}

.productPage_quick_view {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: #667eea;
    color: white;
    border: none;
    padding: 12px 24px;
    border-radius: 25px;
    font-weight: bold;
    cursor: pointer;
    opacity: 0;
    transition: all 0.3s;
}

.product-card:hover .productPage_quick_view {
    opacity: 1;
}

.out-of-stock {
    opacity: 0.6;
}

.stock-badge {
    position: absolute;
    top: 10px;
    left: 10px;
    background: #ff4757;
    color: white;
    padding: 5px 12px;
    border-radius: 15px;
    font-size: 12px;
    font-weight: bold;
}

/* Modal Styles */
.productPage_quickView_modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.8);
    z-index: 1000;
    justify-content: center;
    align-items: center;
    padding: 20px;
}

.productPage_quickView_modal.active {
    display: flex;
}

.productPage_modal_content {
    background: white;
    border-radius: 20px;
    max-width: 900px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    animation: modalSlideIn 0.3s ease-out;
}

@keyframes modalSlideIn {
    from {
        transform: translateY(-50px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.productPage_modal_close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: #3408fc;
    color: white;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    font-size: 24px;
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s;
}

.productPage_modal_close:hover {
    background: #d1c7ff;
    transform: rotate(90deg);
}

@media (max-width: 768px) {
    .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;
    }


    .header-content {
        text-align: center;
    }

    .cart-icon {
        margin-top: 1rem;
    }
	
    .productPage {
        grid-template-columns: 1fr;
        padding: 20px;
    }

    .productPage_title {
        font-size: 23px;
    }

    .productPage_price {
        font-size: 19px;
    }
	.productPage_rrp {
		font-size: 19px;
	}
    .productPage_similar_grid  {
       grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
       gap: 15px;
   }

   
}


