/* Modal Styling */
.cookie-modal {
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    max-width: 450px;
    background-color: #2f4858; /* Modal background color */
    color: #ffffff;
    border-radius: 8px;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.2);
    padding: 20px;
    z-index: 1000;
    display: none; /* Hidden by default */
}

/* Modal Content */
.cookie-modal-content {
    text-align: center;
    font-size: 16px;
    line-height: 1.5;
}

.cookie-modal-actions {
    margin-top: 15px;
    display: flex;
    justify-content: center;
    gap: 10px;
}

/* Buttons */
.btn-accept {
    background-color: #00c2d5;
    color: #ffffff;
    border: none;
    padding: 10px 20px;
    border-radius: 5px;
    cursor: pointer;
    font-size: 14px;
    transition: background-color 0.3s ease;
}

.btn-accept:hover {
    background-color: #009eae;
}

.btn-learn-more {
    color: #00c2d5;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
	margin-top:7px;
}

.btn-learn-more:hover {
    color: #009eae;
}
cart-modal-actions {
    margin-top: 15px;
    display: flex;
    justify-content: center;
    gap: 10px;
}

.btn-accept {
    background-color: #00c2d5;
    color: #fff;
    border: none;
    padding: 10px 20px;
    border-radius: 5px;
    cursor: pointer;
    font-size: 14px;
    transition: background-color 0.3s ease;
}

.btn-accept:hover {
    background-color: #009eae;
}
        /* Preloader Styles */
        #preloader {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: #2f4858; /* Match the site's color theme */
            display: flex;
            flex-direction: column; /* Stack logo and spinner vertically */
            justify-content: center;
            align-items: center;
            z-index: 1000;
        }

        #preloader .logo {
            margin-bottom: 20px; /* Space between logo and spinner */
        }

        #preloader .logo img {
            width: 150px; /* Adjust logo size */
            height: auto; /* Maintain aspect ratio */
        }

        #preloader .spinner {
            width: 50px;
            height: 50px;
            border: 5px solid #fff;
            border-top: 5px solid #00c2d5; /* Highlighted color */
            border-radius: 50%;
            animation: spin 1s linear infinite;
        }

        @keyframes spin {
            0% { transform: rotate(0deg); }
            100% { transform: rotate(360deg); }
        }

        /* Hide preloader once the page is loaded */
        body.loaded #preloader {
            opacity: 0;
            visibility: hidden;
            transition: opacity 0.5s ease;
        }
		.size-section.missing-selection {
			border: 2px solid red;
			padding: 10px;
			border-radius: 5px;
		}
		
		.price {
			font-family: 'Arial', sans-serif; /* Clean and readable font */
			font-size: 20px; /* Slightly larger font size for visibility */
			font-weight: bold; /* Emphasize the price */
			letter-spacing: 5px; /* Subtle spacing for a modern touch */
			margin-top: 10px; /* Add some space above the price */
			margin-bottom: 10px; /* Add some space below the price */
			display: inline-block; /* Ensures alignment within the layout */
		}
		
		/* Container for the description */
		.product-description {
			background-color: #f9f9f9; /* Light background for better readability */
			border: 1px solid #ddd; /* Subtle border for a clean look */
			border-radius: 8px; /* Rounded corners */
			padding: 20px; /* Spacing inside the container */
			font-family: 'Arial', sans-serif; /* Clean and readable font */
			line-height: 1.6; /* Comfortable line spacing */
			color: #333; /* Dark gray text for contrast */
			margin-top: 20px; /* Add some space from the content above */
			box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); /* Soft shadow for depth */
			max-width:500px;
			letter-spacing: 2px;
		}
		
		/* Title of the product description */
		.product-description h3 {
			font-size: 15px; /* Large font size for the title */
			font-weight: bold; /* Emphasize the title */
			color: #868686; /* Use a color that matches the product's theme (red in this case) */
			margin-bottom: 15px; /* Space below the title */
			text-transform: uppercase; /* Make the title uppercase for a bold look */
		}
		
		/* General paragraph styles */
		.product-description p {
			font-size: 16px; /* Standard font size for paragraphs */
			margin-bottom: 10px; /* Space below each paragraph */
		}
		
		/* Highlight key points with bold styling */
		.product-description p span {
			font-weight: bold; /* Bold specific words for emphasis */
			color: #e90000; /* Optional: Use a matching color for highlighted text */
		}
		.stars {
			letter-spacing: 8px;
			text-align: center; /* Center-aligns the content */
			display: block; /* Ensures it behaves as a block-level element */
			margin: 0 auto; /* Centers it horizontally */
		}
		.color-box {
			width: 60px;
			height: 25px;
			border-radius: 10px;
			cursor: pointer;
			transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
			display: flex;
			justify-content: center;
			align-items: center;
			font-size: 0.9rem;
			font-weight: bold;
			color: #333;
			box-shadow: 0px 2px 5px rgba(0, 0, 0, 0.4); /* Subtle shadow */
		}
		
		.color-box:hover, .color-box.active {
			transform: scale(1.1);
			border-color: #00c2d5;
			box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.6); /* Enhanced shadow */
		}

		
		/* Responsive adjustments */
		@media (max-width: 768px) {
			
			.price {
				font-size: 18px; /* Adjust price size for smaller screens */
				letter-spacing: 5px; /* Reduce spacing for smaller screens */
			}
			
			.product-description {
				padding: 15px; /* Reduce padding on smaller screens */
				font-size: 14px; /* Smaller font size for readability */
			}
		
			.product-description h3 {
				font-size: 15px; /* Adjust title size for smaller screens */
			}
		}
/* Modal General Styling */
.cart-modal-messages {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 90%;
    max-width: 500px;
    background-color: #fff;
    color: #000;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    z-index: 1000;
    display: none; /* Hidden by default */
}

/* Modal Message Styling */
.cart-message {
    font-size: 18px;
    text-align: center;
    margin-bottom: 15px;
}

/* Modal Actions Container */
.cart-actions {
    display: flex;
    justify-content: center;
    gap: 10px;
}

/* Buttons Styling */
.cart-btn {
    padding: 10px 20px;
    font-size: 14px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.cart-btn-checkout {
    background-color: #00c2d5;
    color: #fff;
}

.cart-btn-checkout:hover {
    background-color: #009eae;
}

.cart-btn-close {
    background-color: #f5f5f5;
    color: #333;
}

.cart-btn-close:hover {
    background-color: #ddd;
}

/* Close Button Styling */
.cart-modal-close-btn {
    position: absolute;
    top: 10px;
    right: 10px;
    background: none;
    border: none;
    font-size: 20px;
    font-weight: bold;
    color: #333;
    cursor: pointer;
    transition: color 0.3s ease;
}

.cart-modal-close-btn:hover {
    color: #ff0000; /* Change color on hover for better UX */
}