html {
    overflow-y: scroll;
}

body { 
	height: 100%; 
	width: 100%; 
	margin: 0; 
	padding: 0; 
	border: 0; 
	background: #FFFFFF;
	font-size: 16px;
	font-family: "Inter", sans-serif;
	color: #333;
}

a{
	color: #daa660;
}

a:hover{
	color: #ae844c;
}

#header {
	display: flex;
	justify-content: center;
	align-items: center;
	background-color: #111;
	margin: 0;
	padding: 1em;
	position: relative;
	max-height: 40px;
}

#header img {
	max-height: 50px;
	border: none;
}

#site-branding {
	z-index: 10;
}

.btn, .submit-btn{
	appearance: button;
	-webkit-appearance: button;
	font-family: "Poppins", sans-serif;
	text-transform: uppercase;
	transition: background-color 0.5s ease;
}

/* Start: Front Page */
.user-welcome{
	width: 100%;
	display: flex;
	flex-direction: column;
    align-items: center;
}

.user-welcome p{
	font-size: 1.12em;
	font-weight: 450;
}
	
.get-started{
	display: flex;
	flex-direction: column;
	text-align: center;
	width: 600px; 
	max-width: 90%;
}

.start-buttons{
	display: flex;
	flex-direction: row;
}

.start-buttons a{
	text-decoration: none;
	margin: 0 15px;
}

.start-buttons .start-btn{
	width: 300px;
	font-size: 1.2em;
	display: inline-block; 
	clear: both;
	padding: 12px 10px;
	border: 1px solid #ccc;
	border-radius: 4px;
	box-sizing: border-box;
	color: white;
	background-color: #daa660;
	font-weight: 600;
	cursor: pointer;
	text-align: center;
}


.start-buttons .start-btn:hover{
	background-color: #ae844c;
}

/* End: Front Page */

/* Start: Header Menu */
#header::before, #header::after {
	content: "";
	flex: 1;
}

#primary-menu, #nav-menu {
	position: absolute;
	font-size: 1em;
	font-family: "Poppins", sans-serif;
	display: flex;
	text-transform: uppercase;	
	max-width: 300px;
}

#primary-menu {
	left: 1em;
}

#nav-menu {
	right: 1em;
}

#primary-menu a, #nav-menu a {
	color: #fff;
	text-decoration: none;
	font-weight: bold;
	padding: 0 10px;
}

#primary-menu a:hover, #nav-menu a:hover {
	text-decoration: underline;
}

#hamburger-menu {
    display: none;
    cursor: pointer;
    
}
#menu-wrapper{
	display: flex;
	align-items: center;
}

.user-menu {
	position: relative;
	display: inline-flex;
}

.dropdown__trigger{
	margin: 15px 0;
	max-width: 100%;
	text-align: end;
	word-break: break-word;
}

.dropdown-menu {
    display: none;
    position: absolute;
    background-color: #f9f9f9;
    min-width: 150px;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
    padding: 12px 16px;
    z-index: 1;
	list-style: none;
	margin: 0;
	top: 100%;
	right: 0;
}

.user-menu:hover .dropdown-menu {
    display: flex;
	flex-direction: column;
	align-content: end;
}

.dropdown-menu li{
	padding: 5px 8px;
}

#nav-menu a.profile-link {
	font-size: 0.9em;
	color: #333;
}

/* End: Header Menu */

#main { 
	min-height: 85vh; 
	width: 1280px; 
	max-width: 100%; 
	background: #fff; 
	margin: 0 auto;
	padding: 2em 0;
}

#loading{
	margin-top: 50px;
	text-align: center;
	font-weight: 450;
}

#footer{
	position: relative;
	width: 100%;
	height: 20px;
	background-color: #f3f5f7;
	padding: 1em 0;
	text-align: center;
}

#footer .copyright{
	font-size: 0.80em;
	text-transform: uppercase;
	font-family: "Poppins", sans-serif;
}

.content-area{
	display: block;
	padding: 30px 50px;
}

/* Begin: Search Bar */
.search-form-fields{
	text-align: center;
	margin: 10px 0 20px;
	position: relative;
}

.custom-select-wrapper{
	display: flex;
	flex-direction: row;
	justify-content: center;
	gap: 20px;
}

.custom-select, .select-item-button {
	color: #383838;
	font-size: 0.95em;
    position: relative;
    display: inline-block;
    width: 200px;
    margin-bottom: 15px;
}

.select-item-button{
	appearance: none; 
	-webkit-appearance: none;
	font-family: "Inter", sans-serif;
}

.custom-select__trigger{
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.custom-select__trigger, .select-item-button{
	background-color: #fff;
    border: 1px solid #ccc;
    border-radius: 0.25rem;
    font-weight: 500;
	padding: 10px;
	cursor: pointer;
}

.custom-options {
    display: none;
    position: absolute;
    width: 100%;
    background: #fff;
    border: 1px solid #ccc;
    border-top: none;
    box-sizing: border-box;
    z-index: 2;
}

.custom-option {
    display: block;
    padding: 10px;
    cursor: pointer;
    border-bottom: 1px solid #eee;
}

.custom-option:last-child {
    border-bottom: none;
}

.custom-option:hover, .custom-option[selected] {
    background-color: #ddae6f;
    color: #fff;
}

.custom-select.active .custom-options {
    display: block;
}

.arrow {
    border: solid #333;
    border-width: 0 2px 2px 0;
    display: inline-block;
    padding: 2.25px;
    transform: rotate(45deg);
    -webkit-transform: rotate(45deg);
	transition: transform ease-in-out 0.3s;
}

.custom-select.active .arrow {
    transform: rotate(225deg);
    -webkit-transform: rotate(225deg);
}

.custom-select-overlay {

}
/* End: Search Bar */

/* Begin: All Outfits */
.display-outfits{
	display: flex;
	flex-wrap: wrap;
	width: 1080px;
	max-width: 100%;
	margin: auto;
}

.single-outfit-list{
	display: flex;
	flex-direction: column;
	align-items: center;
	margin: 10px 15px;
	width: 330px;
}

.single-outfit-list p{
	margin: 0px 0px 10px;
}

.single-outfit-image img{
	width: 330px;
	border-radius: 3px;
	box-shadow: 0px 4px 8px 0px rgba(0,0,0,0.1);
}

.single-outfit-items{
	display: inline-flex;
	margin: 5px 0;
	flex-wrap: wrap;
	justify-content: center;
}

.single-item-display{
	display: inline-flex;
    flex-direction: row;
	align-items: center;	
}

.single-item-display img{
	width: 55px;
	margin: 0 auto;
}

.display-outfits .align-left{
    justify-content: flex-start;
}
/* End: All Outfits */


/* Begin: Single Outfit Style */
h1.outfit-heading{
	font-size: 28px; 
	text-transform: capitalize;
	width: 90%;
	margin: 0 auto;
}

h1.outfit-heading, h2.heading, h3.heading{
	font-family: "Poppins", sans-serif;
}

.outfit-wrapper {
	display: flex;
	align-items: flex-start;
	justify-content: center; 
	width: 100%;
	text-align: left;
	flex-wrap: wrap; 
	margin-bottom: 100px;
}

.featured-outfit-image {
	display: flex;
	flex-direction: column;
	flex: 0 1 440px;
	gap: 10px;
	max-width: 45%;
	margin: 20px 0px 10px 30px;
}

.featured-outfit-image img{
	width: 100%;
	height: auto;
	box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.15);
}

.favorite-btn, .wardrobe-btn{
	display: inline-block;	
	border-radius: 4px;
	font-weight: 450;
	color: #333;
	text-decoration: none;
	text-align: center;
	outline: none;
	cursor: pointer;
	margin: 5px auto;
	padding: 10px 20px;
	border: none;	
}

.favorite-btn{
	background: #f2f2f2;

}

.favorite-btn:hover{
	color: #fff;
	background: #daa660;
}

.wardrobe-btn{
	background: #e8e8ef;
}

.wardrobe-btn:hover{
	color: #fff;
	background: #88abc8;
}

.outfit-body{
	flex: 1;
	padding: 0 20px;
	text-align: center;
}

.outfit-items-list{
	margin: 20px auto 0;
}

.outfit-item-display{
	display: inline-grid;
    grid-auto-columns: min-content;
	margin: 0 5px;
	align-items: center;	
}

.outfit-item-display p{
    font-weight: 500;
}

.outfit-item-display img{
	width: 120px;
	margin: 0 auto;
}

.outfit-description{
	line-height: 1.7em;
	font-size: 1.12em;
	padding: 0px 10%;
}

.outfit-item-set-wrapper, .item-to-item-wrapper{
	padding: 20px 50px;
}

.outfit-item-set, .item-to-item-set{
	margin-bottom: 30px;
}

.outfit-item-set a, .item-to-item-set a{
	text-decoration: none; 
}

.outfit-item-set a:hover, .item-to-item-set a:hover{
	text-decoration: underline; 
}

.outfit-item-set .description, .item-to-item-set .description{
	margin: 0 0 20px;
	padding: 0px;
}

.single-item-buttons{
	display: inline-flex;
	margin: 0 0 20px; 
	gap: 10px;
}

.similar-outfits-set{
	display: flex;
	justify-content: flex-start;
	max-width: 1080px;
	flex-wrap: nowrap;
	gap: 20px;
	padding: 0px;
	margin-bottom: 20px;
	overflow-x: auto;
}

.similar-outfit-image{
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	flex-basis: min-content;
}

.similar-outfit-image h3{
	font-size: 0.95em;
	font-weight: 450;
	color: #111;
}

.similar-outfit-image img{
	max-width: 200px;
	height: 300px;
}
/* End: Single Outfit Style */

/* Start: Look Toggle Style */
.tabs-wrapper {
    width: 100%;
    margin-bottom: 15px;
}

.tabs {
    border-bottom: 2px solid #e0e0e0;
    margin-bottom: 10px;
}

.tab-btn {
    background-color: #f2f2f2;
    border: none;
    padding: 10px 15px;
    cursor: pointer;    
    transition: background-color 0.2s ease;
	font-family: "Poppins", sans-serif;
	font-size: 0.95em;
	font-weight: bold;
	text-transform: uppercase;
	letter-spacing: 0.05em;
	color: #333;
}

.tab-btn.active {
    background-color: #ffffff;
    border-bottom: 2px solid #333;
}

.tab-content {
    padding: 10px 0;
}

.tab {
    display: none;
}

.tab.active {
    display: block;
}
/* End: Look Toggle Style */

/* Start: Comment Section */
#comments{
	margin-top: 50px;
	font-family: "Poppins", sans-serif;
}

#comment-form, #comments-display {
	max-width: 600px;
	margin: auto;
	padding: 0 20px 10px;
}

#comments .comment-btn {
	font-size: 16px;
	font-weight: bold;
	border-radius: 4px;
	cursor: pointer;
}

.comment-line{
	display: flex;
	flex-direction: row; 
	justify-content: space-between;
	align-items: flex-start;
	text-align: left;
	margin-bottom: 20px;
	padding-bottom: 10px;
}

.comment-line:last-child {
	border-bottom: none;
}

.comment-line.no-comments {
	text-align: center;
}

.comment-body.child-comment{
	margin-left: 30px;
}

.comment-header {
	margin-bottom: 5px;
}

.comment-line .reply-btn{
	color: #111;
	margin-left: 30px;
	display: flex;
	background: transparent;
	border: 2px solid #daa660;
	padding: 8px 20px;
}

.comment-author {
	color: #333;
	font-size: 16px;
}

.comment-text-area {
    font-size: 16px;
    line-height: 1.7;
    color: #333;
}

.comment-form .form-row {
	margin-bottom: 15px;
}

.comment-form input[type="text"],
.comment-form textarea {
	width: 100%;
	background-color: #eee;
	color: #888;
	font-size: 16px;
	font-weight: 500;
	font-family: "Poppins", sans-serif;
	line-height: 1em;
	padding: 10px;
	border-radius: 4px;
	border-width: 0;
}

.comment-form input[type="text"]:focus,
.comment-form textarea:focus {
	outline: 2px solid #daa660;
	border-color: #daa660;
}

.comment-form .submit-btn{
	border: none;
	color: white;
	background-color: #daa660;
	padding: 12px 25px;
}

.comment-form .submit-btn:hover {
	background-color: #ae844c;
}

.reply-form-container .cancel-reply-btn{
	color: #111;
	display: flex;
	background: transparent;
	border: 2px solid #daa660;
	padding: 10px 20px;
}

.comment-line .reply-btn:hover, .reply-form-container .cancel-reply-btn:hover{
	color: white;
	background-color: #daa660;
}

.comment-submit-form label {
	display: none;
	margin-bottom: 5px;
	font-weight: bold;
}

.button-group {
    display: flex;
    justify-content: start;
    gap: 20px; /* Adjust the gap between buttons as needed */
}

.meta-data {
	font-size: 14px;
	color: #666;
	margin-left: 2px;
}
/* End: Comment Section */

/* Begin: Item overlay */
#item-selection-overlay{
    display: none;
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.7);
    z-index: 1000;
    padding-top: 90px;
}

#overlay-items-container{
    position: relative;
    margin: auto;
    padding: 20px;
    border-radius: 8px;
    background: white;
    width: 80%;
    height: 80vh;
    overflow-y: auto;
}

#search-results-container{
	padding: 10px 20px 0px;
}

#item-search{
	max-width: 100%;
	width: 500px;
	background-color: #eee;
	color: #888;
	font-size: 16px;
	font-weight: 500;
	font-family: "Inter", sans-serif;
	line-height: 1em;
	padding: 10px;
	border-radius: 4px;
	border-width: 0;
	margin: 10px;
}

#item-search:focus{
	outline: 2px solid #daa660;
	border-color: #daa660;
}

.overlay-item{
    cursor: pointer;
    display: inline-grid;
    align-items: center;
	text-align: center;
    margin-bottom: 0px;
	width: 100%;
	max-width: 80px;
}

.overlay-item img{
    margin: 0 auto;
    width: 70px;
    height: auto;
}

.overlay-item span{
    margin: 10px 0px;
	font-size: 0.9em;
}

#close-overlay{
    position: fixed;
    right: 10%;
    top: 100px;
    cursor: pointer;
    font-size: 28px;
    font-weight: bold;
    background: transparent;
    border: none;
	z-index: 1099;
}

#close-overlay:after{
	color: #333;
	display: inline-block;
	content: "\00d7"; 
}

.item-category-separator {
    height: 1px;
    background-color: #eee;
    margin: 10px 0 20px;
}

.empty-item-set{
	font-weight: 450;
	padding: 10px 0;
}
/* End: Item overlay */

/* Start: Login/Register Form */
.user-submit-form{
    padding: 5% 0 30px;
    text-align: center;
    font-size: 1.2em;
    min-height: 75vh;
}

.user-submit-form h2{
	text-transform: capitalize;
	font-variant: small-caps;
	font-size: 1.75em;
	letter-spacing: 1px;
}

.user-submit-form .input-group {
	margin-bottom: 10px;
}

.user-submit-form input, .custom-modal-form input{
	font-size: 1.2em;
	padding: 12px 10px;
}

.user-submit-form select, .custom-modal-form select{
	font-size: 1.08em;
	padding: 15px 20px 15px 10px;
	cursor: pointer;
}

.user-submit-form .submit-btn, .custom-modal-form .submit-btn{
	color: white;
	background-color: #daa660;
	font-weight: 600;
	cursor: pointer;
}

.user-submit-form label{
	margin-right: 10px;
	display: inline-block;
	vertical-align: middle;
	width: 150px;
	text-align: right;
	font-weight: 450;
}

.user-form-field{
	background-color: #fff;
	width: 300px;	
	display: inline-block; 
	clear: both;	
	margin: 8px 0;
	border: 1px solid #ccc;
	border-radius: 4px;
	box-sizing: border-box;
	vertical-align: middle;
}
/* End: Login/Register Form */

/* Start: Login/Register Modal */
.custom-modal {
    position: fixed;
    z-index: 1;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgb(0,0,0);
    background-color: rgba(0,0,0,0.4);
}

.custom-modal-form {
    background-color: #fefefe;
    margin: 15% auto;
    padding: 20px;
    border: 1px solid #888;
	border-radius: 8px;
    height: min-content;
}

.custom-modal-form h3{
	font-size: 1.55em;
}

.custom-modal-close {
    color: #aaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
}

.custom-modal-close:hover,
.custom-modal-close:focus {
    color: black;
    text-decoration: none;
    cursor: pointer;
}

#login-modal-form, #register-modal-form, .submit-modal-form{
	display: flex; 
	flex-direction: column;
	align-items: center;
	justify-content: center;
}

#login-modal-form, #register-modal-form{
	padding-bottom: 20px;
	padding-left: 15px;
}

.submit-modal-form{
	padding: 0px 15px 10px;
	font-size: 16px;
	gap: 10px; 
}

.modal-switch-btn{
	font-weight: 450; 
	cursor: pointer;
}
/* End: Login/Register Modal */

.logout-btn{
	cursor: pointer;
}

.message{
	text-align: center;
	padding: 10px 30px;
	background-color: transparent;
	color: #333;
	font-weight: bold;
	margin: 10px auto 25px;
	width: 600px;
	max-width: 90%;
}

.message li{
	list-style-position: inside;
}

.custom-alert{
	position: fixed;
	flex-direction: column;
	top: 20%; 
	left: 50%;
	transform: translateX(-50%);
	z-index: 9999;
	background-color: #f2f2f2;
	text-align: center;
	align-items: center;
	color: #111;
	font-weight: 500;
	font-family: "Inter", sans-serif;
	padding: 20px;
	border-radius: 5px;
	box-shadow: 0 0 10px rgba(0,0,0,0.3);
	min-width: 250px;
}

.custom-alert button{
	margin-top: 10px;
	padding: 5px 10px;
	background-color: white;
	color: #111;
	border: none;
	border-radius: 5px;
	cursor: pointer;
	font-weight: 550;
	max-width: 50%;
}

/* Start: Misc */

.admin-actions{
	display: flex; 
	flex-direction: column;
	gap: 5px;
	font-size: 0.9em;
}

.admin-actions #description{
	width: 1080px;
	max-width: 100%;
	min-height: 100px;
	margin: 10px auto;
	padding: 10px;
}

/* End: Misc */