/* Apply Courier font globally */
body {
  font-family: 'Courier', sans-serif;
  margin: 0;
  padding: 0;
  background: url('images/LINEZ1.png') no-repeat center center fixed; /* Set image as fixed background */
  background-size: cover; /* Ensure the image covers the entire screen */
  color: #ffffff;
}



/* Styling the header to include logo, h1, nav, profile, and cart icons */
header {
    background-color: #0f2f57;
    color: white;
    padding: 20px;
    text-align: center;
    position: relative;
    outline: 3px solid #c53333; /* Gold color outline */
}

/* Center the h1 title */
header h1 {
    margin: 0;
    font-size: 36px;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.logo {
    width: 90px; /* Adjust this as per your desired size */
    height: auto; /* Keep the aspect ratio */
    position: absolute;
    left: 20px; /* Aligns the logo to the left */
    top: 50%;
    transform: translateY(-50%); /* Centers the logo vertically within the header */
    margin: 0; /* Ensures no extra margin */
    padding: 0; /* Ensures no extra padding */
    border: none; /* Removes any borders */
    background: none; /* Ensures no background is added */
}

/* Profile icon styling */
.profile-link {
    position: absolute;
    top: 50%;
    right: 100px; /* Position this 60px from the right (adjust as needed) */
    transform: translateY(-50%);
    text-decoration: none;
}

.profile-icon {
    width: 90px; /* Set the width of the profile icon */
    height: auto; /* Maintain aspect ratio */
}

/* Cart icon styling */
.cart-link {
    position: absolute;
    top: 50%;
    right: 20px; /* Position this closer to the right side */
    transform: translateY(-50%);
    text-decoration: none;
}

.cart-icon {
    width: 90px; /* Set the width of the cart icon */
    height: auto;
}

/* Optional: Ensure the nav stays below the h1 */
nav {
    margin-top: 0;
}

nav a {
    color: white;
    text-decoration: none;
    margin: 0 15px;
    font-weight: bold;
}

nav a:hover {
    text-decoration: underline;
}

/* Hero Section */
.hero {
    background-size: cover;
    background-position: center;
    min-height: 100vh; /* Full height of the viewport */
    color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    position: relative;
}

.hero::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5); /* Dark overlay for text contrast */
    z-index: 1;
}

.hero h2 {
    position: relative;
    z-index: 2;
    font-size: 48px;
    font-weight: bold;
}

/* Background image in a container/card */
.image-card {
    width: 800px; /* Adjust the width as needed */
    height: 450px; /* Adjust the height as needed */
    background-image: url('images/banner1.jpg'); /* Your background image */
    background-size: cover; /* Ensures the image covers the card */
    background-position: center; /* Centers the background image */
    background-repeat: no-repeat; /* Prevents image repetition */
    border-radius: 15px; /* Gives the container a card-like rounded shape */
    overflow: hidden; /* Ensures the background is neatly clipped within the border */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2); /* Optional: Adds shadow for card effect */
    margin: 20px auto; /* Centers the card on the page */
    position: relative;
    border-radius: 10px; /* Optional: rounded corners */
    outline: 3px solid #c53333; /* Gold color outline */
}

/* Optional text overlay inside the card */
.image-card h3 {
    position: absolute;
    bottom: 20px;
    left: 20px;
    color: white;
    font-size: 24px;
    font-weight: bold;
    z-index: 2; /* Ensures the text is above the background image */
    margin: 0;
}

.containerr {
  display: flex;
  justify-content: center; /* Horizontal center */
  align-items: center; /* Vertical center (if needed) */
}


/* Main Content */
.container {
    padding: 40px 20px;
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
    
}

.message {
    font-size: 20px;
    margin-bottom: 20px;
    color: white;
}

.message p {
    font-style: italic;
    color: white;
}

.figures {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  gap: 20px; /* Add spacing between figures */
}

figure {
  width: 250px;
  height: 300px;
  position: relative;
  margin: 20px;
  border-radius: 10px;
  overflow: hidden;
  background: #000; /* Placeholder for missing images */
}

figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

figure .pre-caption {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  background: rgba(0, 0, 0, 0.5);
  color: white;
  font-size: 1.2rem;
  z-index: 2;
  transition: opacity 0.3s ease;
}

figure:hover .pre-caption {
  opacity: 0;
}

figure figcaption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(0, 0, 0, 0.7);
  color: white;
  padding: 10px;
  text-align: center;
  clip-path: inset(0 100% 0 0);
  transition: clip-path 0.4s ease;
}

figure:hover figcaption {
  clip-path: inset(0 0 0 0);
}

figure:hover img {
  transform: scale(1.1); /* Adds zoom effect */
}


@media (max-width: 768px) {
    .figures {
        flex-direction: column;
        align-items: center;
    }

    figure {
        width: 100%;
        max-width: 300px; /* Adjust as needed for responsiveness */
    }
}

/* Footer Styling */
footer {
    background-color: #0f3057;
    color: white;
    text-align: center;
    padding: 20px;
    margin-top: 40px;
    outline: 3px solid #c53333; /* Gold color outline */
}

figure {
  outline: 3px solid #c53333; /* Gold color outline */
  outline-offset: 5px; /* Space between the figure and the outline */
  border-radius: 10px; /* Optional: rounded corners */
}


footer p {
    margin: 0;
}

/* Media Queries for Mobile Responsiveness */
@media (max-width: 768px) {
    header h1 {
        font-size: 28px;
    }

    .hero h2 {
        font-size: 32px;
        padding: 0 10px;
    }

    .cards {
        flex-direction: column;
        align-items: center;
    }

    .card {
        flex: 1 1 100%;
        max-width: 100%;
    }

    nav {
        display: block;
        text-align: center;
    }

    nav a {
        display: block;
        margin: 10px 0;
    }
}

@media (max-width: 480px) {
    header h1 {
        font-size: 24px;
    }

    .hero h2 {
        font-size: 24px;
    }

    .message {
        font-size: 18px;
        color: white;
    }

    .card h3 {
        font-size: 20px;
        color: white;
    }

    .card p {
        font-size: 14px;
    }
}

/* Input and Button Styling */
.input {
    max-width: 190px;
    padding: 15px;
    font-size: 17px;
    color: black;
    border-top-left-radius: .5em;
    border-bottom-left-radius: .5em;
    border: 2px solid #fff;
    margin-right: -10px;
    margin-top: 194px;
}

.button {
    border: none;
    background-color: #1363DF;
    text-decoration: none;
    padding: 15px;
    padding-bottom: 17px;
    font-size: 17px;
    color: #fff;
    border-top-right-radius: .5em;
    border-bottom-right-radius: .5em;
    cursor: pointer;
}

.buttonx1 {
  border: none;
  background-color: #1363DF;
  text-decoration: none;
  padding: 15px;
  padding-bottom: 17px;
  font-size: 17px;
  color: #fff;
  border-top-right-radius: .5em;
  border-bottom-right-radius: .5em;
  cursor: pointer;
    margin-top: 120px;
}



/* Shop Items Section */
.shop-items {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    margin: 40px 0;
}

.shop-items .item {
    width: 250px;
    text-align: center;
    margin: 20px;
    background-color: #222;
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.shop-items .item img {
    width: 100%;
    border-radius: 10px;
    margin-bottom: 10px;
}

.shop-items .item figcaption {
    font-size: 18px;
    color: #fff;
    font-weight: bold;
    margin-top: 10px;
}

/* Sidebar styling */
.main-content {
    display: flex;
}

.sidebar {
    width: 250px;
    background-color: #222;
    color: white;
    padding: 20px;
    box-shadow: 2px 0 5px rgba(0, 0, 0, 0.2);
}

.sidebar h3 {
    font-size: 20px;
    margin-bottom: 20px;
}

.sidebar .menu {
    list-style-type: none;
    padding: 0;
}

.sidebar .menu li {
    margin-bottom: 10px;
}

.sidebar .menu-option {
    color: white;
    text-decoration: none;
    font-weight: bold;
    cursor: pointer;
    display: block;
    padding: 10px;
    background-color: #333;
    border-radius: 5px;
    transition: background-color 0.3s;
}

.sidebar .menu-option:hover {
    background-color: #444;
}

.sidebar .submenu {
    list-style-type: none;
    padding-left: 20px;
    display: none; /* Hidden by default */
}

.sidebar .submenu li {
    margin-bottom: 5px;
}

.sidebar .submenu-option {
    color: white;
    text-decoration: none;
    cursor: pointer;
    padding: 8px;
    background-color: #444;
    display: block;
    border-radius: 3px;
    transition: background-color 0.3s;
}

.sidebar .submenu-option:hover {
    background-color: #555;
}

/* Dynamic Content Area */
.dynamic-content {
    flex-grow: 1;
    padding: 20px;
    background-color: #f4f4f4;
    color: #333;
    outline: 3px solid #c53333; /* Gold color outline */
}

.dynamic-content h2 {
    font-size: 24px;
    margin-bottom: 20px;
}

.dynamic-content p {
    font-size: 16px;
}

body,
html {
  height: 100%;
}

.d-flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.align-center {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.flex-centerY-centerX {
  justify-content: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}


.page-wrapper {
  height: 100%;
  display: table;
}

.page-wrapper .page-inner {
  display: table-cell;
  vertical-align: middle;
}

.el-wrapper {
  width: 360px;
  padding: 15px;
  margin: 15px auto;
  background-color: #fff;
}

@media (max-width: 991px) {
  .el-wrapper {
    width: 345px;
  }
}

@media (max-width: 767px) {
  .el-wrapper {
    width: 290px;
    margin: 30px auto;
  }
}

.el-wrapper:hover .h-bg {
  left: 0px;
}

.el-wrapper:hover .price {
  left: 20px;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
  color: #818181;
}

.el-wrapper:hover .add-to-cart {
  left: 50%;
}

.el-wrapper:hover .img {
  -webkit-filter: blur(7px);
  -o-filter: blur(7px);
  -ms-filter: blur(7px);
  filter: blur(7px);
  filter: progid:DXImageTransform.Microsoft.Blur(pixelradius='7', shadowopacity='0.0');
  opacity: 0.4;
}

.el-wrapper:hover .info-inner {
  bottom: 155px;
}

.el-wrapper:hover .a-size {
  -webkit-transition-delay: 300ms;
  -o-transition-delay: 300ms;
  transition-delay: 300ms;
  bottom: 50px;
  opacity: 1;
}

.el-wrapper .box-down {
  width: 100%;
  height: 60px;
  position: relative;
  overflow: hidden;
}

.el-wrapper .box-up {
  width: 100%;
  height: 300px;
  position: relative;
  overflow: hidden;
  text-align: center;
}

.el-wrapper .img {
  padding: 20px 0;
  -webkit-transition: all 800ms cubic-bezier(0, 0, 0.18, 1);
  -moz-transition: all 800ms cubic-bezier(0, 0, 0.18, 1);
  -o-transition: all 800ms cubic-bezier(0, 0, 0.18, 1);
  transition: all 800ms cubic-bezier(0, 0, 0.18, 1);
  /* ease-out */
  -webkit-transition-timing-function: cubic-bezier(0, 0, 0.18, 1);
  -moz-transition-timing-function: cubic-bezier(0, 0, 0.18, 1);
  -o-transition-timing-function: cubic-bezier(0, 0, 0.18, 1);
  transition-timing-function: cubic-bezier(0, 0, 0.18, 1);
  /* ease-out */
}

.h-bg {
  -webkit-transition: all 800ms cubic-bezier(0, 0, 0.18, 1);
  -moz-transition: all 800ms cubic-bezier(0, 0, 0.18, 1);
  -o-transition: all 800ms cubic-bezier(0, 0, 0.18, 1);
  transition: all 800ms cubic-bezier(0, 0, 0.18, 1);
  /* ease-out */
  -webkit-transition-timing-function: cubic-bezier(0, 0, 0.18, 1);
  -moz-transition-timing-function: cubic-bezier(0, 0, 0.18, 1);
  -o-transition-timing-function: cubic-bezier(0, 0, 0.18, 1);
  transition-timing-function: cubic-bezier(0, 0, 0.18, 1);
  /* ease-out */
  width: 660px;
  height: 100%;
  background-color: #3f96cd;
  position: absolute;
  left: -659px;
}

.h-bg .h-bg-inner {
  width: 50%;
  height: 100%;
  background-color: #464646;
}

.info-inner {
  -webkit-transition: all 400ms cubic-bezier(0, 0, 0.18, 1);
  -moz-transition: all 400ms cubic-bezier(0, 0, 0.18, 1);
  -o-transition: all 400ms cubic-bezier(0, 0, 0.18, 1);
  transition: all 400ms cubic-bezier(0, 0, 0.18, 1);
  /* ease-out */
  -webkit-transition-timing-function: cubic-bezier(0, 0, 0.18, 1);
  -moz-transition-timing-function: cubic-bezier(0, 0, 0.18, 1);
  -o-transition-timing-function: cubic-bezier(0, 0, 0.18, 1);
  transition-timing-function: cubic-bezier(0, 0, 0.18, 1);
  /* ease-out */
  position: absolute;
  width: 100%;
  bottom: 25px;
}

.info-inner .p-name,
.info-inner .p-company {
  display: block;
}

.info-inner .p-name {
  font-family: 'PT Sans', sans-serif;
  font-size: 18px;
  color: #252525;
}

.info-inner .p-company {
  font-family: 'Lato', sans-serif;
  font-size: 12px;
  text-transform: uppercase;
  color: #8c8c8c;
}

.a-size {
  -webkit-transition: all 300ms cubic-bezier(0, 0, 0.18, 1);
  -moz-transition: all 300ms cubic-bezier(0, 0, 0.18, 1);
  -o-transition: all 300ms cubic-bezier(0, 0, 0.18, 1);
  transition: all 300ms cubic-bezier(0, 0, 0.18, 1);
  /* ease-out */
  -webkit-transition-timing-function: cubic-bezier(0, 0, 0.18, 1);
  -moz-transition-timing-function: cubic-bezier(0, 0, 0.18, 1);
  -o-transition-timing-function: cubic-bezier(0, 0, 0.18, 1);
  transition-timing-function: cubic-bezier(0, 0, 0.18, 1);
  /* ease-out */
  position: absolute;
  width: 100%;
  bottom: -20px;
  font-family: 'PT Sans', sans-serif;
  color: #828282;
  opacity: 0;
}

.a-size .size {
  color: #252525;
}

.cart {
  display: block;
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  font-family: 'Lato', sans-serif;
  font-weight: 700;
}

.cart .price {
  -webkit-transition: all 600ms cubic-bezier(0, 0, 0.18, 1);
  -moz-transition: all 600ms cubic-bezier(0, 0, 0.18, 1);
  -o-transition: all 600ms cubic-bezier(0, 0, 0.18, 1);
  transition: all 600ms cubic-bezier(0, 0, 0.18, 1);
  /* ease-out */
  -webkit-transition-timing-function: cubic-bezier(0, 0, 0.18, 1);
  -moz-transition-timing-function: cubic-bezier(0, 0, 0.18, 1);
  -o-transition-timing-function: cubic-bezier(0, 0, 0.18, 1);
  transition-timing-function: cubic-bezier(0, 0, 0.18, 1);
  /* ease-out */
  -webkit-transition-delay: 100ms;
  -o-transition-delay: 100ms;
  transition-delay: 100ms;
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  font-size: 16px;
  color: #252525;
}

.cart .add-to-cart {
  -webkit-transition: all 600ms cubic-bezier(0, 0, 0.18, 1);
  -moz-transition: all 600ms cubic-bezier(0, 0, 0.18, 1);
  -o-transition: all 600ms cubic-bezier(0, 0, 0.18, 1);
  transition: all 600ms cubic-bezier(0, 0, 0.18, 1);
  /* ease-out */
  -webkit-transition-timing-function: cubic-bezier(0, 0, 0.18, 1);
  -moz-transition-timing-function: cubic-bezier(0, 0, 0.18, 1);
  -o-transition-timing-function: cubic-bezier(0, 0, 0.18, 1);
  transition-timing-function: cubic-bezier(0, 0, 0.18, 1);
  /* ease-out */
  -webkit-transition-delay: 100ms;
  -o-transition-delay: 100ms;
  transition-delay: 100ms;
  display: block;
  position: absolute;
  top: 50%;
  left: 110%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}

.cart .add-to-cart .txt {
  font-size: 12px;
  color: #fff;
  letter-spacing: 0.045em;
  text-transform: uppercase;
  white-space: nowrap;
}

/* fonts  */
@import url('https://fonts.googleapis.com/css?family=Abel|Aguafina+Script|Artifika|Athiti|Condiment|Dosis|Droid+Serif|Farsan|Gurajada|Josefin+Sans|Lato|Lora|Merriweather|Noto+Serif|Open+Sans+Condensed:300|Playfair+Display|Rasa|Sahitya|Share+Tech|Text+Me+One|Titillium+Web');



#container{
	box-shadow: 0 15px 30px 1px rgba(128, 128, 128, 0.31);
	background: rgba(255, 255, 255, 0.90);
	text-align: center;
	border-radius: 5px;
	overflow: hidden;
	margin: 5em auto;
	height: 350px;
	width: 700px;
  outline: 3px solid #c53333; /* Gold color outline */
	
}



/* 	Product details  */
.product-details {
	position: relative;
	text-align: left;
	overflow: hidden;
	padding: 30px;
	height: 100%;
	float: left;
	width: 40%;

}

/* 	Product Name */
#container .product-details h1{
	font-family: 'Old Standard TT', serif;
	display: inline-block;
	position: relative;
	font-size: 34px;
	color: #344055;
	margin: 0;
	
}

#container .product-details h1:before{
	position: absolute;
	content: '';
	right: 0%; 
	top: 0%;
	transform: translate(25px, -15px);
	font-family: 'Farsan', cursive;
	display: inline-block;
	background: #FFA69E;
	border-radius: 5px;
	font-size: 14px;
	padding: 5px;
	color: #FFF;
	margin: 0;
	animation: chan-sh 6s ease infinite;

}


@keyframes chan-sh {
	from  {content: 'free shipping';}
	to  {content: 'New';}
	
}

/*Product Rating  */
.hint-star {
	display: inline-block;
	margin-left: 0.5em;
	color: gold;
	width: 50%;
}


/* The most important information about the product */
#container .product-details > p {
	font-family: 'courier', ;
	text-align: center;
	font-size: 20px;
	color: #7d7d7d;
	
}

/* control */

.control{
	position: absolute;
	bottom: 20%;
	left: 22.8%;
	
}
/* the Button */
.btn {
	transform: translateY(0px);
	transition: 0.3s linear;
	background: #49C608;
	border-radius: 5px;
  position: relative;
  overflow: hidden;
	cursor: pointer;
	outline: none;
	border: none;
	color: #eee;
	padding: 0;
	margin: 0;
	
}

.btn:hover{transform: translateY(-4px);}

.btn span {
	font-family: 'Farsan', cursive;
	transition: transform 0.3s;
	display: inline-block;
  padding: 10px 20px;
	font-size: 1.2em;
	margin:0;
	
}
/* shopping cart icon */
.btn .price, .shopping-cart{
	background: #333;
	border: 0;
	margin: 0;
}

.btn .price {
	transform: translateX(-10%); padding-right: 15px;
}

/* the Icon */
.btn .shopping-cart {
	transform: translateX(-100%);
  position: absolute;
	background: #333;
	z-index: 1;
  left: 0;
  top: 0;
}

/* buy */
.btn .buy {z-index: 3; font-weight: bolder;}

.btn:hover .price {transform: translateX(-110%);}

.btn:hover .shopping-cart {transform: translateX(0%);}



/* product image  */
.product-image {
	transition: all 0.3s ease-out;
	display: inline-block;
	position: relative;
	overflow: hidden;
	height: 100%;
	float: none;
	width: 50%;
	display: inline-block;
}

#container img {width: 100%;height: 100%;}

.info {
    background: rgba(27, 26, 26, 0.9);
    font-family: 'Farsan', cursive;
    transition: all 0.3s ease-out;
    transform: translateX(-100%);
    position: absolute;
    line-height: 1.9;
    text-align: left;
    font-size: 120%;
    cursor: no-drop;
    color: #FFF;
    height: 100%;
    width: 100%;
    left: 0;
    top: 0;
}

.info h2 {text-align: center}
.product-image:hover .info{transform: translateX(0);}

.info ul li{transition: 0.3s ease;}
.info ul li:hover{transform: translateX(50px) scale(1.3);}

.product-image:hover img {transition: all 0.3s ease-out;}
.product-image:hover img {transform: scale(1.2, 1.2);}

* {
	box-sizing: border-box;
}

.wrapper {
	display: flex;
	justify-content: center;
	align-items: center;
	font-family: Montserrat;
	background: #26262600;
	width: 100%;
	height: 100vh;
}

.containerx {
  position: relative; /* Base position for .outer */
  height: 100vh; /* Full height of the viewport */
  width: 100%;
}


.outer {
  position: absolute;
  background: #fff;
  height: 350px;
  width: 550px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  outline: 3px solid #c53333; /* Gold color outline */
}


img {
	top: 0px;
	right: -20px;
	z-index: 0;
	animation-delay: 0.5s;
}

.content {
	animation-delay: 0.3s;
	position: absolute;
	left: 20px;
	z-index: 3
	
}

h1 {
	color: #111;
}

p {
	width: 280px;
	font-size: 13px;
	line-height: 1.4;
	color: #aaa;
	margin: 20px 0;
	
}

.bg {
	color: #fff;
	background: cornflowerblue;
	padding: 6px 2px;
	border-radius: 50px;
	font-size: .7em;
}
.button {
	width: fit-content;
	height: fit-content;
	margin-top: 10px;
	
	
	
}

.button a {
	display: inline-block;
	overflow: hidden;
	position: relative;
	font-size: 11px;
	color: #111;
	text-decoration: none;
	padding: 10px 15px;
	border: 1px solid #aaa;
	font-weight: bold;
	
	
}

.button a:after{
	content: "";
	position: absolute;
	top: 0;
	right: -10px;
	width: 0%;
	background: #111;
	height: 100%;
	z-index: -1;
	transition: width 0.3s ease-in-out;
	transform: skew(-25deg);
	transform-origin: right;
}

.button a:hover:after {
	width: 150%;
	left: -10px;
	transform-origin: left;
	
}

.button a:hover {
	color: #fff;
	transition: all 0.5s ease;
}


.button a:nth-of-type(1) {
	border-radius: 50px 0 0 50px;
	border-right: none;
}

.button a:nth-of-type(2) {
	border-radius: 0px 50px 50px 0;
}

.cart-icon {
	padding-right: 8px;
	
}

.footer {
	position: absolute;
	bottom: 0;
	right: 0;
  outline: 3px solid #c53333; /* Gold color outline */
}

/* General Layout for the Products */
.wsk-shell {
  display: grid;
  grid-template-columns: repeat(3, 1fr); /* 3 columns */
  gap: 20px; /* Space between items */
  padding: 20px;
  max-width: 1200px; /* Limit container width */
  margin: 0 auto; /* Center container */
}
  
  /* Styling for each product card */
  .wsk-cp-product {
    background: #fff;
    padding: 15px;
    border-radius: 6px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24);
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }
  
  /* On hover, enlarge the card slightly and add shadow */
  .wsk-cp-product:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3);
  }
  
  /* Styling for the image */
  .wsk-cp-img {
    position: relative;
    width: 100%;
    height: 200px; /* Adjust image height */
    overflow: hidden;
    margin-bottom: 15px;
  }
  
  .wsk-cp-img img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Ensure image covers the area */
    border-radius: 6px;
  }
  
  /* Hover effect for image */
  .wsk-cp-product:hover .wsk-cp-img img {
    transform: scale(1.1); /* Slight zoom effect */
    transition: all 0.3s ease;
  }
  
  /* Text content */
  .wsk-cp-text {
    padding: 10px 0;
  }
  
  /* Category styling */
  .wsk-cp-text .category {
    text-align: center;
    font-size: 12px;
    font-weight: bold;
    padding: 5px;
    margin-bottom: 10px;
  }
  
  .wsk-cp-text .category > span {
    padding: 8px 16px;
    background: #212121;
    color: #fff;
    border-radius: 20px;
    border: 1px solid #313131;
    display: inline-block;
  }
  
  /* Title styling */
  .wsk-cp-text .title-product {
    text-align: center;
  }
  
  .wsk-cp-text .title-product h3 {
    font-size: 16px;
    font-weight: bold;
    margin: 10px auto;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
  }
  
  /* Description styling */
  .wsk-cp-text .description-prod {
    text-align: center;
    font-size: 14px;
    margin-bottom: 10px;
    height: 62px;
    display: -webkit-box;
-webkit-line-clamp: 3; /* Vendor-prefixed property */
line-clamp: 3;         /* Standard property */
-webkit-box-orient: vertical; /* Necessary for webkit-line-clamp */
overflow: hidden;      /* Ensures content is truncated */

  }
  
  /* Price styling */
  .card-footer {
    padding: 15px 0;
    border-top: 1px solid #ddd;
  }
  
  .card-footer .wcf-left {
    font-weight: bold;
  }
  
  .card-footer .wcf-right {
    text-align: right;
  }
  
  .price {
    font-size: 16px;
    font-weight: bold;
  }
  
  /* General buy button styling */
.buy-btn {
  display: inline-block;
  color: white;
  background: #FF9800;
  padding: 10px 20px;
  border-radius: 27px;
  text-align: center;
  text-decoration: none;
  font-size: 14px;
  font-weight: bold;
  border: none; /* Remove default button border */
  cursor: pointer;
  transition: background 0.3s ease;
}

/* Hover effect */
.buy-btn:hover {
  background: #FF5722;
  color: #fff;
}

/* Ensure both buttons and links are styled the same */
button.buy-btn {
  -webkit-appearance: none;
appearance: none;

}

/* Icon inside the button styling, if used */
.buy-btn i {
  margin-right: 5px; /* Space between icon and text */
}

  .wsk-btn {
    display: inline-block;
    color: #212121;
    text-align: center;
    font-size: 18px;
    transition: all 0.2s ease-in-out;
    border-color: #FF9800;
    background: #FF9800;
    padding: 12px 30px;
    border-radius: 27px;
    margin: 0 5px;
  }
  
  .wsk-btn:hover,
  .wsk-btn:focus,
  .wsk-btn:active {
    text-decoration: none;
    color: #fff;
    background: #FF5722;
  }
  
  /* Media Queries for Responsiveness */
  @media screen and (max-width: 991px) {
    .wsk-cp-product {
      margin: 20px auto;
    }
  
    .wsk-cp-img {
      height: 180px; /* Adjust image height for smaller screens */
    }
  
    .wsk-cp-text .category > span {
      padding: 10px 20px;
    }
  }
  
  /* Semi-transparent wrapper for the entire body */
.main-container {
  background-color: #0f2f57; /* 75% opacity black */
  padding: 20px; /* Optional padding */
  border-radius: 10px; /* Optional rounded corners */
  box-shadow: 0 4px 10px rgba(242, 226, 0, 0.541); /* Optional shadow */
  color: white; /* Ensures text remains readable */
  max-width: 1200px; /* Centering content */
  margin: auto; /* Centers the container horizontally */
}

/* Ensure body has enough contrast */
body {
  background-color: #002244; /* Dark navy blue for body background */
  margin: 0;
  padding: 0;
}
