*,
*::before,
*::after {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

:root {
	--button1-color: #ed7d1f;
	--button2-color: #727165;
	--light-color: #fff;
	--dark-color: #403f3b;
	--bg-color: #d6d4c2;
	--bg-light-color: #f3f2ed;
	--textlight-color: #808082;
	--h1-fontweight: 700;
	--title-fontweight: 500;
	--subtitle-fontweight: 300;
	--text-fontweight: 300;
	--menu-fontweight: 500;
	--submenu-fontweight: 300;
	--btn1-fontweight: 500;
}

html,
body {
	font-family: 'Lexend Deca', sans-serif;
	scroll-behavior: smooth;
	line-height: 1.6;
	color: black;
}

a {
	text-decoration: none;
}

ul {
	list-style: none;
}

img {
	max-width: 100%;
}

section {
	padding-top: 40px;
	padding-bottom: 60px;
}

.container {
	max-width: 1200px;
	margin: 0 auto;
	padding-left: 20px;
	padding-right: 20px;
}

.container-sm {
	max-width: 1000px;
	margin: 0 auto;
}

.btn {
	text-align: center;
	text-transform: uppercase;
	font-weight: var(--btn1-fontweight);
	padding: 15px 20px;
	font-size: 0.9rem;
	border: none;
	cursor: pointer;
	font-family: 'Lexend Deca', sans-serif;
}

.btn-block {
	display: block;
	width: 100%;
}

.btn-primary {
	background-color: var(--button1-color);
	color: var(--light-color);
}

.btn-primary:hover {
	background-color: var(--button2-color);
}

.btn-secondary {
	background-color: var(--button2-color);
	color: var(--light-color);
}

.btn-secondary:hover {
	background-color: var(--button1-color);
}

.btn-tertiary {
	background-color: var(--bg-color);
	color: var(--dark-color);
}

/*Top Navigation Menu*/
.top-bar {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	display: flex;
	justify-content: center; /* Center the container */
	padding: 10px 0;
	z-index: 1000; /* Ensure it's above other content */
	/*box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1); /* Optional: add shadow for better visibility */
}

.top-bar .container {
	display: flex;
	justify-content: space-between;
	align-items: center;
	width: 100%;
	max-width: 1200px; /* Adjust as needed for your design */
	padding: 0 20px; /* Optional padding for left and right */
}

.logo img {
	height: 100px;
}

.nav-menu {
	flex: 1;
	text-align: center;
}

.nav-menu ul {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	justify-content: center;
	align-items: center;
}

.nav-menu li {
	position: relative;
}

.nav-menu li.active {
    color: var(--button1-color);
    border-bottom: 2px solid var(--button1-color);
}

/* Optional: Styles for links within active list items */
.nav-menu li.active a {
    color: var(--button1-color); /* Change color for links in active li */
}

.nav-menu a {
	display: block;
	padding-top: 3px;
	padding-bottom: 3px;
	margin-left: 30px;
	margin-right: 30px;
	color: var(--dark-color);
	text-decoration: none;
	text-transform: uppercase;
	font-size: 0.85rem;
	font-weight: var(--menu-fontweight);
}

.nav-menu a:hover {
	color: var(--button1-color);
	border-bottom: 2px solid var(--button1-color);
	animation: marquee 1s linear infinite; /* Menjalankan animasi saat hover */
}

@keyframes marquee {
    0% { transform: translateX(0); }
    25% { transform: translateX(5%); } /* Menggerakkan teks ke kiri */
    75% { transform: translateX(-5%); } /* Menggerakkan teks ke kiri */
}

/* Dropdown menu styling */
.nav-menu ul.dropdown-menu {
	display: block;
	background: rgba(255, 255, 255, 0.7);
	display: none;
	visibility: hidden;
	opacity: 0;
	/* display: block; */
	position: absolute;
	top: 100%;
	left: 10px;
	min-width: 200px;
	z-index: 1000;
	transform: translateY(-10px);
	transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s ease;
	text-align: left;
	padding: 5px 10px;
}

.nav-menu ul.dropdown-menu a {
	padding-top: 3px;
	padding-bottom: 3px;
	margin-left: 0px;
	margin-right: 0px;
	font-size: 0.85rem;
	font-weight: var(--submenu-fontweight);
}

.nav-menu ul.dropdown-menu a:hover {
	border-bottom: none;
}

.nav-menu ul.dropdown-menu li {
	display: block;
}

.nav-menu ul.dropdown-menu a {
	padding: 10px;
}

.dropdown:hover .dropdown-menu {
	display: block;
	opacity: 1;
	visibility: visible;
	transform: translateY(0);
}

.icons {
	display: flex;
	align-items: center;
}

.icon {
	color: var(--dark-color);
	margin-left: 35px;
	text-decoration: none;
	width: 25px;
}

.icon svg {
	fill: currentColor;
}

/* Hamburger menu styling */
.hamburger-menu {
	display: none;
	cursor: pointer;
}

.hamburger-menu svg {
	fill: white;
}

/* Drawer styling */
.drawer {
	position: fixed;
	top: 0;
	right: 0;
	width: 250px;
	height: 100%;
	background-color: var(--button1-color);
	transform: translateX(100%);
	transition: transform 0.3s ease;
	overflow: auto;
	z-index: 1001; /* Ensure it's above other content */
	text-transform: uppercase;
	padding-top: 20px;
	padding-left: 20px;
}

.drawer.open {
	transform: translateX(0);
}

.drawer .close-btn {
	position: absolute;
	top: 10px;
	right: 10px;
	font-size: 30px;
	color: white;
	background: none;
	border: none;
	cursor: pointer;
}

.drawer-menu ul {
	list-style: none;
	padding: 0;
	margin: 0;
}

.drawer-menu a {
	display: block;
	padding: 10px;
	color: white;
	text-decoration: none;
	transition: background-color 0.3s ease;
	font-size: 0.9rem;
}

.drawer-menu a:hover {
	background-color: rgba(255, 255, 255, 0.2);
}

.drawer-menu ul li ul a {
	font-weight: var(--submenu-fontweight);
	font-size: 0.8rem;
}

/* Responsive design */
@media (max-width: 768px) {
	.nav-menu {
		display: none;
	}

	.hamburger-menu {
		display: block;
	}
}

/*Home Slideshow*/
.slideshow-container {
	position: relative;
	width: 100%;
	max-width: 100%;
	margin: auto;
	overflow: hidden;
}

.mySlides {
	display: none;
	width: 100%;
}

.mySlides img {
	width: 100%;
	height: auto;
	vertical-align: middle;
}

.fade {
	animation-name: fade;
	animation-duration: 1.5s;
}

@keyframes fade {
	from {
		opacity: 0.4;
	}
	to {
		opacity: 1;
	}
}

.numbertext {
	color: var(--dark-color);
	font-weight: 100;
	font-size: 52px;
	position: absolute;
	bottom: 0;
	right: 30px;
}

.prev,
.next {
	cursor: pointer;
	position: absolute;
	top: 50%;
	transition: 0.6s ease;
	user-select: none;
}

.prev {
	left: 0;
}

.next {
	right: 0;
}

/* SVG Chevrons */
.prev svg path,
.next svg path {
	stroke-width: 1; /* Set stroke width for thin chevrons */
	transition: stroke 0.3s ease; /* Smooth color transition */
}

.prev:hover svg path,
.next:hover svg path {
	stroke: var(--button1-color);
}

/* Products grids */
.products-section {
	padding-top: 140px;
}

.products-section-home {
	padding-top: 0;
}

.products-section h1,
.contactus h1,
.login h1 {
	text-align: center;
	color: var(--dark-color);
	font-size: 1.8rem;
	margin-bottom: 35px;
}

.products-section .products-container {
	display: grid;
	grid-template-columns: repeat(3, 1fr); /* Creates 3 equal-width columns */
	gap: 30px; /* Space between grid items */
	margin: 0 auto;
}

/* Image Styling */
.products-section .grid-image {
	width: 100%;
	height: auto;
	aspect-ratio: 1/1; /* Makes the image square */
	object-fit: cover; /* Ensures image covers the entire square without stretching */
}

/* Title Styling */
.products-section .grid-title {
	font-size: 1.2rem;
	margin-top: 10px;
	margin-bottom: 10px;
	font-weight: var(--title-fontweight);
}

.products-section .grid-title a {
	color: var(--dark-color);
}

.products-section .grid-title a:hover {
	color: var(--button1-color);
}

/* Line Styling */
.grid-line {
	width: 30px;
	height: 5px;
	margin-top: 5px;
	margin-bottom: 5px;
	background-color: var(--dark-color);
}

/* Subtitle Styling */
.products-section .grid-subtitle {
	font-size: 1.1rem;
	color: var(--dark-color);
	font-weight: var(--subtitle-fontweight);
	margin-top: 5px;
	margin-bottom: 20px;
}

/* Badge Styling */
.products-section .grid-item {
	position: relative; /* Allows positioning the badge relative to the image */
}

.products-section .sold-out::before {
	content: 'SOLD OUT';
	position: absolute;
	top: 15px;
	left: 15px;
	background-color: var(--button1-color);
	color: #fff;
	padding: 5px 20px;
	font-size: 0.8rem;
	font-weight: 400;
	text-transform: uppercase;
	border-radius: 20px;
	z-index: 10; /* Ensures the badge appears on top of the image */
}

.products-section .in-stock::before {
	content: 'IN-STOCK';
	position: absolute;
	top: 15px;
	left: 15px;
	background-color: var(--bg-color);
	color: var(--button1-color);
	padding: 5px 20px;
	font-size: 0.8rem;
	font-weight: 400;
	text-transform: uppercase;
	border-radius: 20px;
	z-index: 10; /* Ensures the badge appears on top of the image */
}

/* Responsive Styles */
@media (max-width: 768px) {
	.products-section .products-container {
		grid-template-columns: 1fr; /* Stacks items in a single column on smaller screens */
		gap: 15px; /* Space between items in a single column layout */
	}

	.products-section .products-page {
		grid-template-columns: 1fr 1fr !important; /* Stacks items in a single column on smaller screens */
		gap: 15px; /* Space between items in a single column layout */
	}

	.products-section .grid-title {
		font-size: 1rem;
	}

	.products-section .grid-subtitle {
		font-size: 0.85rem;
	}
}

/* Footer Styling */
.footer {
	background-color: var(--bg-color);
	padding-top: 50px;
	padding-bottom: 50px;
}

.footer-container {
	display: flex;
	justify-content: space-between;
	margin: 0 auto;
}

.footer-left {
	flex: 0 0 43%;
}

.footer-nav {
	list-style: none;
	padding: 0;
	margin: 0;
}

.footer-nav li {
	margin-bottom: 3px;
}

.footer-nav a {
	text-decoration: none;
	color: var(--dark-color);
	font-size: 0.85rem;
}

.footer-nav a:hover {
	border-bottom: 1px solid var(--dark-color);
}

/* Right Column (Newsletter) */
.footer-right {
	flex: 0 0 57%;
}

.newsletter-title {
	font-size: 0.85rem;
	margin-bottom: 10px;
	color: var(--dark-color);
	font-weight: var(--title-fontweight);
}

.newsletter-form {
	display: flex;
	margin-bottom: 10px;
}

.newsletter-input {
	flex: 1;
	padding: 15px;
	border: 1px solid #ddd;
	font-size: 0.85rem;
}

.newsletter-button {
	padding: 15px 40px;
}

.newsletter-info {
	font-size: 0.9rem;
	color: var(--dark-color);
	font-weight: var(--subtitle-fontweight);
}

/* Footer Bottom */
.footer-bottom {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding-top: 20px;
}

.footer-bottom-left {
	flex: 0 0 43%;
}

.footer-bottom-right {
	flex: 0 0 57%;
	display: flex;
	justify-content: flex-end;
}

.footer-bottom-left .copyright-text {
	font-size: 0.8rem;
	color: var(--dark-color);
	font-weight: var(--text-fontweight);
}

/* Social Media Icons */
.social-icons {
	display: flex;
	gap: 20px;
}

.social-icon img {
	width: 45px;
	height: 45px;
	object-fit: cover;
}

@media (max-width: 768px) {
	/* Stack top footer columns */
	.footer-container {
		flex-direction: column;
	}

	.footer-left,
	.footer-right {
		flex: 1 0 100%;
		margin-bottom: 20px; /* Adds space between columns */
	}

	.newsletter-button {
		padding: 15px 5px;
		font-size: 0.8rem;
	}

	/* Stack bottom footer columns */
	.footer-bottom {
		flex-direction: column;
		align-items: flex-start;
	}

	.footer-bottom-left,
	.footer-bottom-right {
		flex: 1 0 100%;
		margin-bottom: 10px; /* Adds space between columns */
	}

	.footer-bottom-right {
		display: flex;
		justify-content: flex-start; /* Aligns social icons to the left */
	}
}

/* Pagination Container */
.pagination {
	display: flex;
	justify-content: center; /* Centers pagination buttons */
	margin: 20px 0; /* Space above and below pagination */
}

/* Pagination Buttons */
.pagination-button {
	display: inline-block;
	padding: 10px 15px;
	margin: 0 5px;
	color: var(--dark-color);
	background-color: #fff;
	border: 1px solid var(--bg-color);
	text-decoration: none;
	font-size: 1rem;
	border-radius: 5px;
	transition: background-color 0.3s, color 0.3s;
}

.pagination-button:hover,
.pagination-button.active {
	background-color: var(--button1-color);
	color: #fff;
}

.pagination-button.active {
	background-color: var(--button1-color);
	color: #fff;
	font-weight: var(--subtitle-fontweight);
}

/* Product Detail */
.product-detail {
	padding-top: 140px;
}

.product-detail .container {
	display: flex;
	justify-content: space-between;
	gap: 60px;
	margin: 0 auto;
}

/* Left Column */
.product-detail .left-column {
	width: 80%;
	display: flex;
	gap: 60px;
	flex-direction: row; /* Default: Thumbnails on the left */
}

.product-detail .thumbnails {
	display: flex;
	flex-direction: column;
	gap: 25px;
}

.product-detail .thumbnail {
	width: 180px;
	height: auto;
	cursor: pointer;
	opacity: 0.6; /* Reduced opacity by default */
	transition: opacity 0.3s ease; /* Smooth transition */
}

.product-detail .thumbnail.active {
	opacity: 1; /* Full opacity for the active thumbnail */
}

.product-detail .thumbnail:hover {
	opacity: 1; /* Full opacity on hover */
}

.product-detail .main-image img {
	width: 100%;
	height: auto;
	object-fit: cover;
}

/* Responsive Design */
@media (max-width: 768px) {
	.product-detail .left-column {
		flex-direction: column; /* Stack main image and thumbnails vertically */
		width: 100%;
		gap: 0px;
	}

	.product-detail .main-image {
		order: 1; /* Ensure main image is on top */
	}

	.product-detail .thumbnails {
		flex-direction: row; /* Thumbnails in a horizontal row */
		gap: 10px;
		order: 2; /* Ensure thumbnails are below the main image */
		justify-content: center; /* Center the thumbnails horizontally */
	}

	.product-detail .thumbnail {
		width: 80px; /* Adjust thumbnail width */
		height: auto; /* Maintain aspect ratio */
	}
}

/* Right Column */
.product-detail .right-column {
	width: 20%;
	display: flex;
	flex-direction: column;
	gap: 15px;
}

.product-detail .product-title {
	font-size: 1.1rem;
	font-weight: var(--h1-fontweight);
	margin: 0;
	color: var(--dark-color);
}

.product-detail .line {
	width: 25px;
	height: 4px;
	background-color: var(--dark-color);
}

.product-detail .line2 {
	width: 100%;
	height: 1px;
	background-color: var(--button1-color);
}

.product-detail .product-subtitle {
	font-size: 1.1rem;
	font-weight: var(--subtitle-fontweight);
	color: var(--dark-color);
}

.product-detail .product-description {
	font-size: 0.8rem;
	line-height: 1.6;
	color: var(--textlight-color);
	font-weight: var(--text-fontweight);
}

.product-detail .product-description p {
	margin-bottom: 15px;
}

.product-detail .add-to-cart {
	font-size: 0.8rem;
	margin-top: 20px;
}

.product-detail p.share-text {
	color: var(--bg-color);
	font-size: 0.8rem;
}

.product-detail .social-share {
	display: flex;
	gap: 10px;
}

.product-detail .social-icon {
	width: 25px;
	height: 25px;
	opacity: 0.7;
}

/* Responsive */
@media (max-width: 768px) {
	.product-detail .container {
		flex-direction: column;
		align-items: center;
	}

	.product-detail .left-column,
	.product-detail .right-column {
		width: 100%;
	}

	.product-detail .thumbnails {
		flex-direction: row;
		gap: 5px;
		justify-content: center;
	}

	.product-detail .thumbnail {
		width: 60px;
	}

	.product-detail .main-image img {
		width: 100%;
	}

	.product-detail .right-column {
		align-items: center;
		text-align: center;
	}
}

/* Drawer Styling */
.cart-drawer {
	position: fixed;
	right: -100%;
	top: 0;
	width: 400px;
	height: 100%;
	background-color: var(--bg-color);
	z-index: 1000;
	transition: right 0.3s ease;
	padding: 30px;
	padding-top: 45px;
	display: flex;
	flex-direction: column;
}

@media (max-width: 768px) {
	.cart-drawer {
		width: 100%;
	}
}

.cart-drawer.open {
	right: 0;
}

.close-drawer {
	background: none;
	border: none;
	cursor: pointer;
	position: absolute;
	top: 45px;
	right: 20px;
	width: 32px;
	height: 32px;
	padding: 0;
	display: flex;
	align-items: center;
	justify-content: center;
}

.close-drawer svg {
	width: 35px; /* Adjust the size of the SVG */
	height: 35px;
	stroke-width: 1; /* Adjust thickness of the lines */
	color: var(--dark-color);
}

.cart-title {
	font-size: 1.4rem;
	margin-bottom: 10px;
	font-weight: var(--subtitle-fontweight);
	color: var(--dark-color);
}

.drawer-line {
	width: 100%;
	height: 1px;
	background-color: var(--dark-color);
	margin-top: 25px;
	margin-bottom: 35px;
}

/* Cart Items Styling */
.cart-items {
	flex: 1;
	overflow-y: auto;
	margin-bottom: 20px;
}

.cart-item {
	display: flex;
	align-items: flex-start;
	margin-bottom: 30px;
}

.cart-item-left {
	flex: 1;
}

.cart-item-center {
	flex: 1.5;
	padding: 0 20px;
	padding-right: 0;
}

.cart-item-right {
	flex: 1;
	text-align: right;
}

.cart-item-image {
	width: 100px;
	height: 100px;
	object-fit: cover;
}

.cart-item-title {
	font-size: 1rem;
	margin-bottom: 2px;
	font-weight: var(--title-fontweight);
	color: var(--dark-color);
	line-height: 1.2;
}

.cart-item-subtitle {
	font-size: 0.85rem;
	margin-bottom: 10px;
	color: var(--dark-color);
	font-weight: var(--subtitle-fontweight);
}

.cart-item-quantity {
	width: 50px;
	padding: 5px;
	border: none;
	text-align: center;
}

.delete-item {
	background: none;
	border: none;
}

.delete-item svg {
	width: 20px; /* Adjust the size of the SVG */
	height: 20px;
	stroke-width: 1; /* Adjust thickness of the lines */
	color: var(--dark-color);
	cursor: pointer;
}

.cart-item-price {
	font-size: 1rem;
	margin-top: 45px;
	font-weight: var(--text-fontweight);
	color: var(--dark-color);
}

/* Cart Summary Styling */
.cart-summary-container {
	position: sticky;
	bottom: 0;
	padding-top: 10px;
	padding-bottom: 20px;
	border-top: 1px solid var(--dark-color);
}

.cart-summary {
	display: flex;
	justify-content: space-between;
	margin-bottom: 15px;
}

.checkout-btn {
	margin-top: 40px;
}

.cart-summary-left,
.cart-summary-right {
	font-weight: var(--text-fontweight);
	color: var(--dark-color);
}

/*CHECKOUT*/
.checkout {
	padding-top: 140px;
}

.checkout .container-checkout {
	display: flex;
	justify-content: space-between;
	gap: 30px;
	margin: 0 auto;
}

.checkout .left-column {
	width: 60%;
	display: flex;
	/* gap: 60px; */
	flex-direction: column;
}

.checkout .right-column {
	width: 40%;
	display: flex;
	flex-direction: column;
	gap: 15px;
}

.checkout .cart-products {
	background-color: var(--bg-light-color);
	padding: 25px;
	display: flex;
	flex-direction: column;
}

.checkout .cart-summary-bold {
	font-weight: var(--title-fontweight);
}

.checkout .cart-summary-container {
	padding-top: 30px;
}

.checkout .cart-item {
	margin-bottom: 20px;
}

.checkout h2 {
	font-weight: var(--title-fontweight);
	font-size: 1.1rem;
}

.checkout h2.primary {
	color: var(--button1-color);
	margin-bottom: 5px;
}

.checkout .cart-summary-container {
	position: relative;
}

/*Shipping form*/
.vertical-form {
	display: flex;
	flex-direction: column;
	gap: 20px;
	width: 100%;
	margin: 0 auto;
}

.form-group {
	display: flex;
	flex-direction: column;
}

.form-group label {
	margin-bottom: 5px;
	font-weight: var(--title-fontweight);
	color: var(--dark-color);
	font-size: 0.9rem;
}

.form-group input,
.form-group select,
.form-group textarea {
	padding: 12px;
	border: 1px solid var(--bg-color);
	font-size: 16px;
}

.phone-group,
.area-group {
	display: flex;
	gap: 10px;
}

.phone-group select,
.area-group select {
	flex: 1;
}

.phone-group input,
.area-group input {
	flex: 3;
}

textarea {
	resize: vertical;
}

/* General font styling for input and select */
.form-group input,
.form-group select,
.form-group textarea {
	font-size: 16px; /* Default font size */
	font-family: 'Lexend Deca', sans-serif;
	color: var(--button2-color);
}

/* Placeholder styling for input fields */
.form-group input::placeholder {
	color: var(--bg-color);
	font-size: 16px; /* Placeholder font size */
	font-family: 'Lexend Deca', sans-serif;
}

.form-group textarea::placeholder {
	color: var(--bg-color);
	font-size: 16px; /* Placeholder font size */
	font-family: 'Lexend Deca', sans-serif;
}

/* Specific styling for select dropdowns */
/* .form-group select {
	font-size: 16px;
	font-family: 'Lexend Deca', sans-serif;
	color: var(--bg-color);
	background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20' viewBox='0 0 24 24' fill='none' stroke='%23333' stroke-width='1' stroke-linecap='round' stroke-linejoin='round' class='feather feather-chevron-down'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E")
		no-repeat right 10px center;
	background-size: 20px;
	appearance: none;
	-webkit-appearance: none;
	-moz-appearance: none;
} */

/* Change border color on focus */
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus,
input:focus {
	border-color: var(--button1-color);
	outline: none;
}

/* Flexbox layout for the row */
.form-row {
	display: flex;
	gap: 20px; /* Space between the Area and Zip Code fields */
}

/* Ensure the fields take up equal space */
.half-width {
	flex: 1;
}

/* Style the select and input fields */
#area,
#zip-code {
	width: 100%; /* Make sure they take up full width of their containers */
	padding: 10px;
	font-size: 1rem;
}

@media (max-width: 768px) {
	.checkout .container {
		flex-direction: column;
	}

	.checkout .left-column {
		width: 100%;
	}

	.checkout .right-column {
		width: 100%;
	}
}

/*Stepper for checkout*/
/* Row styling */
.container-stepper .row {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin: 20px 0;
	margin-bottom: 50px;
}

/* Left column */
.container-stepper .left-column {
	width: 70%;
	display: flex;
	align-items: flex-start;
}

.container-stepper .stepper {
	display: flex;
	align-items: center;
}

.container-stepper .step {
	display: flex;
	align-items: center;
}

.circle {
	width: 30px;
	height: 30px;
	border-radius: 50%;
	background-color: var(--button1-color); /* Active step color */
	color: var(--dark-color);
	display: flex;
	justify-content: center;
	align-items: center;
	font-size: 1rem;
	font-weight: var(--title-fontweight);
	margin-right: 10px;
}

.circle-disabled {
	background-color: var(--bg-color); /* Active step color */
	color: var(--textlight-color);
}

.circle + span {
	margin-right: 10px;
	font-size: 0.9rem;
	flex: 1;
}

.circle-disabled + span {
	color: var(--textlight-color);
}

.circle + .dash-line {
	margin-right: 10px;
}

.circle + .dash-line + .circle {
	background-color: grey; /* Inactive step color */
}

.container-stepper .dash-line {
	width: 150px;
	height: 2px;
	border-top: 2px dashed var(--bg-color);
	margin-right: 10px;
}

/* Right column */
.container-stepper .right-column {
	width: 30%;
	text-align: right;
}

.container-stepper .right-column p {
	margin: 0;
	color: var(--dark-color);
	font-weight: var(--text-fontweight);
	font-size: 0.9rem;
}

.container-stepper .right-column a {
	color: var(--dark-color);
	text-decoration: none;
}

.container-stepper .right-column a:hover {
	text-decoration: underline;
}

/* Responsive adjustments */
@media (max-width: 768px) {
	.container-stepper .row {
		flex-direction: column;
		align-items: flex-start;
	}

	.container-stepper .dash-line {
		width: 80px;
	}

	.container-stepper .left-column {
		width: 100%;
		margin-bottom: 10px;
	}

	.container-stepper .right-column {
		width: 100%;
		text-align: left;
	}
}

/*Contact Us*/
.contactus {
	padding-top: 140px;
}

.contactus .container-contactus {
	display: flex;
	justify-content: space-between;
	align-items: end;
	gap: 30px;
	margin: 0 auto;
}

.contactus .left-column {
	width: 60%;
	order: 2;
	display: flex;
	/* gap: 60px; */
	flex-direction: column;
}

.contactus .right-column {
	width: 40%;
	order: 1;
	display: flex;
	flex-direction: column;
	gap: 15px;
}

.contactus .cart-products {
	background-color: var(--bg-light-color);
	padding: 25px;
	display: flex;
	flex-direction: column;
}

.contactus .cart-summary-bold {
	font-weight: var(--title-fontweight);
}

.contactus .cart-summary-container {
	padding-top: 30px;
}

.contactus .cart-item {
	margin-bottom: 20px;
}

.contactus h2 {
	font-weight: var(--title-fontweight);
	font-size: 1.1rem;
}

.contactus h2.primary {
	color: var(--button1-color);
	margin-bottom: 5px;
}

.contactus .cart-summary-container {
	position: relative;
}

@media (max-width: 768px) {
	.contactus .container {
		flex-direction: column;
	}

	.contactus .left-column {
		width: 100%;
	}

	.contactus .right-column {
		width: 100%;
	}
}

/*ABOUT US*/
section.aboutus {
	padding-top: 140px;
	font-weight: var(--text-fontweight);
}

section.aboutus p {
	margin-bottom: 15px;
}

.aboutus .full-width-image {
	width: 100%;
	height: auto;
}

.aboutus .text-row {
	display: flex;
	flex-wrap: wrap;
	padding: 20px 0;
	padding-top: 40px;
}

.aboutus .left-column {
	width: 30%;
	padding-right: 20px;
	box-sizing: border-box;
}

.aboutus .right-column {
	width: 70%;
	box-sizing: border-box;
	font-size: 0.9rem;
}

/* Responsive for mobile */
@media (max-width: 768px) {
	.aboutus .left-column,
	.aboutus .right-column {
		width: 100%;
		padding: 10px 0;
	}
}

/*LOGIN & REGISTER*/
section.login {
	padding-top: 140px;
	font-weight: var(--text-fontweight);
}

section.login p {
	margin-bottom: 15px;
}

.login .center-column {
	width: 50%;
	box-sizing: border-box;
	font-size: 0.9rem;
}

/* Responsive for mobile */
@media (max-width: 768px) {
	.login .center-column {
		width: 100%;
		padding: 10px 0;
	}

	.container-login {
		padding-left: 20px;
		padding-right: 20px;
	}
}

.login .container-login {
	display: flex;
	justify-content: center; /* Centers the left column */
}

.aboutus .line {
	margin-top: 12px;
	margin-bottom: 12px;
	width: 25px;
	height: 6px;
	background-color: var(--dark-color);
}

.memories-container {
    display: grid;
    grid-template-columns: repeat(2, 1fr); /* Two columns */
    gap: 20px; /* Adjust the gap between items as needed */
}

.memories-container .grid-item {
    background-color: #f9f9f9; /* Optional: Add a background color */
    padding: 15px; /* Optional: Add padding */
    border-radius: 8px; /* Optional: Add border radius for rounded corners */
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); /* Optional: Add a box shadow */
}
.main-image {
    background-color: #f9f9f9; /* Optional: Add a background color */
    padding: 15px; /* Optional: Add padding */
    border-radius: 8px; /* Optional: Add border radius for rounded corners */
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); /* Optional: Add a box shadow */
	margin-bottom: 10px;
}