@charset "utf-8";
/* CSS Document */


/* ---------------------------Global-------------------------------------- */

.sticky {
  position: sticky;
  top: 0;
  z-index: 999;
}

.block-group{
	display: block;
	margin:auto;
	justify-content: center; /* Centers horizontally */
  	align-items: center; /* Centers vertically */
}

.flex-group{
	display: flex;
	justify-content: center; /* Centers horizontally */
  	align-items: center; /* Centers vertically */
	flex-wrap: wrap;
}

.grid-group{
	display:grid;
	margin:auto;
	justify-content: center; /* Centers horizontally */
  	align-items: center; /* Centers vertically */
}

.globalCenter{
	text-align:center;
	margin-top:50px;
	margin-bottom:50px;
}

.globalButton {
	display: inline-block;
    padding: 10px 20px;
    background-color: #FC0;
    color: black; 
    text-decoration: none;
    border-radius: 5px;
    text-align: center;
	border:none;
}

.globalButton:hover {
	background-color: #F93;
	color: white;

}

.globalButton a{
	text-decoration:none;
	color: white;
}

/* ---------------------------page----------------------------------------- */

#page{
	width:100%;
	height:auto;
}

/* ---------------------------headers-------------------------------------- */
#header{
    height: 150px;
    width: 100%;
    background-image: url(../mc_images/header.png);
	margin-top: 10px;
}


.main-header {
    display: flex; /* Use Flexbox for layout */
    justify-content: space-between; /* Pushes left/right content to edges */
    align-items: center; /* Vertically aligns content in the middle */
/*    background-color: #333; /* Dark background color */  */
    padding: 10px 20px; /* Some padding around the header content */
/*    color: Red; */
    height: 100%; /* Set a specific height for the header */
}

.header-left, .header-right {
    display: flex; /* Also use Flexbox for internal link alignment */
    align-items: center;
    /* This flex: 1; ensures both sides grow equally,
       which helps center the middle element when content is present */
    flex: 1;
}

.header-right {
    justify-content: flex-end; /* Align right side content to the end */
}

.header-logo {
    display: flex;
    justify-content: center; /* Center the logo horizontally */
    align-items: center; /* Center the logo vertically */
    flex: 1; /* Allows the logo area to take up available space */
    text-align: center; /* Fallback for text centering */
}

.header-logo img {
    max-height: 100%; /* Control the size of your logo */
    width: auto;
}

.header-left a {
/*	background-color:#333; */
    color: #666;
    text-decoration: none;
    padding: 10px 15px;
	border-radius: 15px;
	
}

.header-left a:hover {
    background-color: #F93;
    border-radius: 15px;
	color:#FFF;
}

.logoCart{
	width:25px;
	height:25px;
	margin-right:10px;
}


.cartCount{
	background-color:#F00;
	color:white;
	padding:3px 8px;
	border-radius: 50px;
	margin-right:-8px;

}



/* ---------------------------body-------------------------------------- */

#bodyMain{
	width:100%;
	height:auto;
}

#bodyMiddle{
	width:100%;
	height:auto;
}

#imgBanner {
	width:100%;
	height:900px;
	margin-top:10px;  
	margin-bottom:50px;
}

/* ---------------------------Products-------------------------------------- */

.galaryItems {
	display: grid;
	gap: 1rem;
	grid-template-columns: repeat(auto-fit, minmax(400px, 1fr)); 
	justify-items: center;
	align-items: center;
	justify-content: center;
	aligh-content: cetner;
	margin-left:5%;
	margin-right:5%;
}

#galary-container{
	width:400px; 
	height:auto;	
}

#galary_img{
	width:400px;
	height:500px;
	border-radius: 15px;
	object-fit: cover; 
	overflow:hidden;
}

#galaryTitle-container{
	width:400px;
	height:60px;
	margin-top:2px;
	text-align:center;
	font-size:16px;
	border-radius: 15px;
	border:solid 2px #CCCCCC;
}


#galaryAlerts div {
	padding:15px;
	margin-top:none;
	font-size:15px;
	font-weight: bold;
	color:#FFF;
	border-radius: 100%;
}

#newarrivals{
	float:left;
	margin-top:-490px;
	position: relative;
	margin-left:10px;
	background-color:#F93;
	
}

#salesItem{
	float:right;
	margin-top:-490px;
	position: relative;
	margin-right:10px;
	background-color:#F00;
}

#stdPrice {
	text-decoration: line-through;
}
	

/* --------------------------- Articles ------------------------------- */

.article-container{
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(0, 2fr));
	gap: 50px;
}


#articleDetails, #articleSize {
	height:auto;
	width: 100%;
}

#articleDetails, #articleRelated {
  grid-column: 1 / span 2;
}

#articleSize ul {
 	list-style-type: none; 
	border:2px solid black;
  	width: auto;
  	margin: 5px;
  	padding: 10px;
}

#zero {
	color:#F00;
	text-decoration: line-through;
}

.articleInput {
	width:150px;
	margin-top:25px;
	margin-right:10px;
	font-size: 25px;
}



#articleCart {
	margin:auto;
}

#zoomContainer {
	gap: 1rem;
	margin-top:20px;
	margin-left:auto;
	margin-right:auto;
	
}

.product-image-wrapper {
	width: 90%;
    height: 700px;
    cursor: crosshair; 
    overflow: hidden;
	border-radius: 20px;
}

#product-image {
    width: 90%;
    height: 700px;
    display: block; 
	overflow: hidden; 
    border-radius: 20px;
}

.imgZoomNail {
	width: 50px;
  	height: 50px; 
  	object-fit: cover;

}



/* --------------------------- Cart -------------------------------------- */

#cartItems {
	width:70%;
}

#cartSummary {
	width:20%;
	margin:auto;
}


.tableCart {
width: 90%;
margin:auto;
border-collapse: collapse;
}
th, td {
border: 1px solid black;
padding: 8px;
text-align: center;
}
th {
background-color: #f2f2f2;
}

.imgCart{
	width: 120px;
  	height: 120px; 
  	object-fit: cover;
	overflow:hidden;
}



/* ---------------------------Check Out-------------------------------------- */

#checkOutBody {
	width:50%;
}

.form-group {
	margin-bottom: 20px; 
}

label {
	display: block; 
	margin-bottom: 5px;
}

input, textarea { 
	width: 98%; 
	padding: 10px;
	font-size: 20px;
}

select { 
	width: 100%; 
	padding: 10px;
	font-size: 20px;
}


/* --------------------------- Special Menus-------------------------------------- */

.menuSpecial {
	margin-top:50px;
	margin-bottom:50px;
	width: 60%; 
  	height: auto; 
}

#imgSpecial{
	width:100%;
	height:auto;
	border-radius: 15px;
	object-fit: cover; 
	overflow:hidden;
}

#titleSpcial-container {
	width:250px;
	height:50px;
	text-align:center;
	font-size:12px;
	border-radius: 15px;
	border:solid 2px #CCCCCC;
}

#alertSpecial div {
	padding:10px;
	margin-top:none;
	font-size:15px;
	font-weight: bold;
	color:#FFF;
	border-radius: 100%;
}

#newSpecial{
	float:left;
	margin-top:-320px;
	position: relative;
	background-color:#F93;
	margin-left:10px;
	
}

#saleSpecial{
	float:right;
	margin-top:-320px;
	position: relative;
	background-color:#F00;
	margin-right:10px;
}

.lineSpecial {
	margin-bottom:50px;
}

/* ---------------------------Error MSG -------------------------------------- */

#errorbody{
    display:block;
	height:600px;
	width:auto;
	margin:auto;
}


#errortxt{
	height:300px;
	width:100%;
	font-size: 20px;
	font-weight:bold;
	font-style:italic;
	text-align:center;
	color:#3399FF;
}

/* ---------------------------About, Contact-Us & Policy-------------------------------------- */

.about-container1 {
    max-width: 100%;
    margin: auto;
    padding: 60px 20px;
}

.about-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
    gap: 40px;
	justify-content: center; /* Centers horizontally */
  	align-items: center; /* Centers vertically */
	margin-left:10%;
	margin-bottom:50px;
}

.about-image img {
    width: 80%;
	height:400px;
    border-radius:15px;
}

.map-box {
	width: 80%;
	height:400px;
    border-radius:15px;
	margin-bottom:50px;
}

.values h2 {
    text-align: center;
    font-size: 28px;
    margin-bottom: 100px;
	margin-top: 100px;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 25px;
	justify-items: center;
	align-items: center;
	justify-content: center;
	aligh-content: cetner;
}

.value-box {
    background-color:#E8E8E8;
    padding: 25px;
    border-radius: 15px;
    text-align: center;
}

.value-box h3 {
    font-size: 18px;
    margin-bottom: 10px;
    color: #111827;
}

.value-box p {
    font-size: 14px;
    color: #4b5563;
}

.provatePolicy {
	margin-left:10%;
	margin-right:10%;
}


/* ---------------------------footer-------------------------------------- */

.site-footer {
    background-color: #111827;  
/*	background-image: url(../mc_images/footer.png);  */
	color:#fff;
    font-family: Arial, sans-serif;
    margin-top: 40px;
}

.footer-container {
    max-width: 1200px;
    margin: auto;
    padding: 40px 20px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 30px;
}

.footer-column h4 {
    color: #FF0;
    margin-bottom: 15px;
    font-size: 16px;
}

.footer-column p {
    font-size: 14px;
    line-height: 1.6;
}

.footer-column ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-column ul li {
    margin-bottom: 10px;
}

.footer-column ul li a,
.social-links a {
	color: #FFF;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

.footer-column ul li a:hover {
  /*  color: #3b82f6;  */
    background-color: #F93;
    border-radius: 15px;
	padding:10px;
	color:#FFF;
}

.social-links {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.footer-bottom {
    border-top: 1px solid #374151;
    text-align: center;
    padding: 5px;
    font-size: 13px;
    background-color: #111827;
	color:#FFF;
}

.social-links img {
	width:30px;
	height:30px;
}

/* --------------------------- Logon Detials ----------------------------------------- */


#logonBody {
    font-family: Arial, sans-serif;
    background-color: #f1f1f1;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
	margin: 0;
    padding: 0;
    box-sizing: border-box; /* Ensures padding/border are included in element's total width/height */
}


.login-container {
    background-color: #fff;
    padding: 2rem;
    border-radius: 25px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    width: 100%;
    max-width: 400px; /* Limits the form width on large screens */
}

.hLogon {
    text-align: center;
    margin-bottom: 1.5rem;
    color: #333;
}

.input-group {
    margin-bottom: 1rem;
}

.input-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: #555;
}

.input-group input[type=text],
.input-group input[type=password] {
    width: 100%; /* Full width inputs */
	height:4rem;	
	font-size:2rem;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 15px;
    box-sizing: border-box; /* Important for width: 100% to work correctly with padding */
}

.logonButton {
    width: 100%;
    padding: 10px;
    background-color:#F90;
    color: white;
    border: none;
    border-radius: 25px;
    cursor: pointer;
    font-size: 2rem;
    margin-top: 1rem;
}

.logonButton:hover {
    opacity: 0.6;
}

.footer-links {
    margin-top: 1rem;
    text-align: right;
}

.footer-links a {
    color: #04AA6D;
    text-decoration: none;
}

.logonError { 
	color: red; 
	margin-bottom: 15px;
	text-align:center; 
}


/* --------------------------- Admin DashBoard ----------------------------------------- */		

.adminBody {
    font-family: 'Open Sans', sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f1f1f1;
}

.dashboard-header {
    background-color: #333;
    color: white;
    padding: 10px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.main-container {
    display: flex;
   min-height: calc(20vh - 50px); /* Adjust height for the header */
}

.sidebar {
    width: 200px;
    background-color: #444;
    color: white;
    padding: 20px;
}

.sidebar ul {
    list-style: none;
    padding: 0;
}

.sidebar li a {
    color: white;
    text-decoration: none;
    display: block;
    padding: 10px 0;
}

.main-content {
    flex-grow: 1;
    padding: 20px;
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.card {
    background-color: white;
	font-size:18px;
	text-align:center;
    padding: 20px;
    border-radius: 15px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    flex: 1 1 200px; /* Responsive sizing for cards */
}

.pdash {
	font-size:60px;
}
	
	


/* --------------------------- mobile view ----------------------------------------- */

/* Styles for screens smaller than 768px (common for tablets and phones) */
@media (max-width: 768px) {
  /* Adjust font sizes */
  body {
    font-size: 14px;
  }
  /* Stack elements vertically instead of horizontally */

	#imgBanner {
	    width:100%;
	    height: 300px;
	}
	
	
	
	
	#galaryTitle-container{
	height:100px;
	width:300px;
	}
	
	#galary_img {
	height:400px;
	width:100%;
	}

	#zoomContainer, #articleSizeContainer {
	grid-column: 1 / span 2;
	}
	
	
	#imageZoomer {
	width: 90%;
  	height: 500px; 
  	object-fit: cover; 
	overflow:hidden;
	margin:auto;
	}
	
	#product-image {
    width: 100%;
    height: 500px;
    display: block;
	overflow: hidden;
    border-radius: 20px;
    transform-origin: center center;
	}
	
	.imgCart{
	width: 80px;
  	height: 80px; 
  	object-fit: cover;
	overflow:hidden;
}
 	
	#cartSummary {
		height:auto;
		width:auto;
	}
	table {
	width: 100%;
	}
	
	#checkOutBody {
	width:80%;
	}

	.login-container {
     margin: 1rem;
	 max-width: 90%;
    }
	.input-group input[type=text],
	.input-group input[type=password]{
	 height:5rem;
	 font-size:3rem;
	}
	.logonButton {
	 font-size: 3rem;
	}

	
  /* Hide elements not essential for mobile */

	#articleRelated {
		display: none;
	}
  
    #zoomNails {
        display: none;
    }
}

