#logo {
    width: 100px;
    height: 100px;
    display: flex;
    justify-content: left;
}
#logo-banner {
    background-color: #292929;
    margin: 0 auto;
    width: 100%;
    height: 100px;
    display: flex;
    position: sticky;
    top: 0;
    z-index: 1000;
}
.search-bar {
    display: flex;
    justify-content: center;
    height: 30px;
    margin-left: 300px;
    margin-top: 50px;
}
.search-bar input {
    width: 400px;
    outline: solid 1px #8c52ff;
}
.search-bar button {
    width: 80px;
    background-color: #8c52ff;
    color: white;
    border: none;
    cursor: pointer;
}
#cart {
    width: 50px;
    height: 50px;
    background-color: #8c52ff;
    color: white;
    display: flex;
    flex-direction: column;
    justify-content: right;
    border-radius: 5px;
    margin-left: 400px;
    margin-right: 0px;
    margin-top: 40px;
    outline: solid 1px black;
}
#cart:hover {
    background-color: #9a6cf5;
    cursor: pointer;
}
.cartpanel-layout {
    display: flex;
}
#cart-panel {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 0;
    right: -60%;
    width: 30%;
    height: 100%;
    background: white;
    box-shadow: -5px 0 15px rgba(0,0,0,0.3);
    padding: 20px;
    transition: 0.3 ease;
    overflow-y: auto;
    background-color:#292929;
    color: white;
    top: 0;
    z-index: 1000;
    font-size: 36px;

}
#cart-panel.open {
    right: 0;
}
.cartclose {
    display:flex;
    justify-content: center;
    align-items: right;
    border-radius: 0;
    background-color: rgb(252, 70, 70);
    outline: solid 1px black;
    width: 25px;
    height: 25px;
}
.checkout-submit {
    display: flex;
    justify-content: center;
    border-radius: 20px;
    background-color: green;
    width: 100px;
}
nav {
    position: sticky;
    top: 100px;
    z-index: 1000;
}
nav ul {
    height: 60px;
    list-style: none;
    display: flex;
    justify-content: center;
    background-color: #393939;
    gap: 20px;
    margin: 0;
    position: relative;
    overflow: hidden;
    position: sticky;
    top: 0;
    z-index: 1000;
}
nav ul::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    margin-top: 30px;
    box-shadow: 0 0 20px 8px rgba(217, 217, 217, 0.9);
}
nav a {
    display: inline-block;
    width: 150px;
    height: 50px;
    text-align: center;
    line-height: 50px;
    font-size: 25px;
    text-decoration: none;
    color: #8c52ff;
    background-color: #393939;
    -webkit-text-stroke: .2px white;
    padding: 5px 10px;
}
nav a:hover {
    background-color: #292929;
}
body {
    margin: 0;
}
.main-layout {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: 0px;
    margin-top: 50px;
}
.shop-container {
    display: flex;
    flex-wrap: wrap;
    gap: 50px;
    justify-content: center;
    margin: 0;
}
.clothingset {
    display: flex;
    flex-direction: column;
    border-radius: 0px;
    transition: all 0.3s ease;
    margin: 0px;
}
.clothingset:hover {
    transform: translateY(-8px);
    box-shadow: 10px 10px;
}
.clothingimage {
    display: flex;
    flex-direction: column;
    width: 300px;
    height: 300px;
    margin-left: 0px;
    margin-bottom: 0px;
    margin-top: 0px;
    outline: solid 1px #292929;
}
.set-name {
    display: flex;
    flex-direction: column;
    font-size: 20px;
    margin-left: 0px;
    margin-top: 0px;
    margin-bottom: 0px;
    background-color: #292929;
    color: white;
    text-align: center;
    outline: solid 1px #292929;
    width: 300px;
}
.itemlist {
    display: flex;
    flex-direction: column;
    justify-content: center;
    margin-top: 0px;
    margin-left: 0px;
    margin-bottom: 0px;
    font-size: 28px;
    background-color: lightgray;
    width: 260px;
    outline: solid 1px #292929;
}
.price {
    display: flex;
    flex-direction: column;
    justify-content: center;
    margin-left: 0px;
    font-size: 20px;
    margin-top: 0px;
    margin-bottom: 0px;
    background-color: #292929;
    color: white;
    width: 300px;
    outline: solid 1px #292929;
    text-align: center;
}
.add-to-cart {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100px;
    height: 30px;
    margin-top: 0px;
    margin-left: 0px;
    margin-bottom: 0px;
    background-color: #8c52ff;
    width: 300px;
    color: white;
    text-align: center;
    line-height: 30px;
    cursor: pointer;
    outline: solid 1px #292929;
    font-size: 20px;
}
.add-to-cart:hover {
    background-color: #9a6cf5;
}
#homeinfo {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin-top: 50px;
    margin-right: 50px;
    width: 300px;
}
#homeinfoheader {
    font-size: 30px;
    background-color: #292929;
    color: white;
    width: 300px;
    text-align: center;
    margin-bottom: 0px;
    border-left: 6px solid #8c52ff;
}
#homeinfotext {
    font-size: 20px;
    background-color: lightgray;
    color: #292929;
    width: 300px;
    margin-top: 0px;
    padding: 10px;
    border-left: solid 6px #8c52ff;
    border-bottom: solid 3px black;
    border-top: solid 6px black;
    border-right: solid 3px black;
    box-shadow: 10px 10px;
}
.footer {
    background-color: #292929;
    height: 30px;
    color: white;
    text-align: center;
    margin: 0;
}
.about-layout {
    display: flex;
    justify-content: center;
    align-items: flex-start;
}
.about-container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    margin-left: 50px;
}
.aboutheader {
    display: flex;
    flex-direction: column;
    align-content: center;
    justify-content: center;
    width: 300px;
    height: 50px;
    text-align: center;
    background-color: #292929;
    color: white;
    width: 200px;
    margin-top: 20px;
    margin-left: 150px;
    border-left: solid 6px #8c52ff;
    border-top: solid 3px black;
    border-right: solid 3px black;
    box-shadow : 10px 4px;
}
.aboutcontent {
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: 80%;
    padding: 10px;
    font-size: 36px;
    background-color: lightgray;
    border-left: solid 6px #8c52ff;
    border-bottom: solid 3px black;
    border-top: solid 6px black;
    border-right: solid 3px black;
    box-shadow: 10px 10px;

}
.aboutimg {
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: 600px;
    height: 500px;
    margin-top: 50px;
    margin-right: 0px;

}
.location-layout {
    display: flex;
    flex-direction: row;
}
.mapembed {
    display: flex;
    flex-direction: right;
    margin: 20px;
}
.locationinfo {
    margin-top: 180px;
    display: flex;
    flex-direction: right;
    font-size: 36px;
    border-radius: 0px 0px 0px 0px;
    height: 125px;
    padding: 5px;
    width: 50%;
    border-left: solid 6px #8c52ff;
    border-bottom: solid 3px black;
    border-top: solid 3px black;
    border-right: solid 3px black;
    box-shadow: 10px 10px;
    background-color: lightgray;
}
.sizing-layout {
    display: flex;
    flex-direction: row;
}
.sizingheader {
    margin-left: 50px;
    margin-bottom: 0px;
}
.sizingchart {
    border-collapse: collapse;
    margin-left: 50px;
    margin-top: 10px;
}
table td, th {
    border: 1px solid black;
    padding: 8px;
    margin: 0 auto;
    width: 80px;
    text-align: center;
}
table th {
    background-color: #393939;
    color: white;
    border-bottom: solid 2px black;
}
table td {
    font-size: 18px;
}
.sizingimg {
    display: flex;
    margin-top: 20px;
    margin-left: 20px;
}
.sizingul {
    margin-right: 30px;
    margin-left: 20px;
    width: 200px;
    height: 170px;
    font-size: 22px;
    background-color: lightgray;
    border-left: solid 6px #8c52ff;
    border-bottom: solid 3px black;
    border-top: solid 6px black;
    border-right: solid 3px black;
    box-shadow: 10px 10px;
}
.contactform {
    display: flex;
    flex-direction: column;
    margin-left: 500px;
    margin-top: 0px;
    width: 350px;
    padding: 10px;
    outline: solid 1px #6d24ff;
    border-radius: 0 0 5px 5px;
    animation: breathingOutline 4s ease-in-out infinite;
}
label {
    padding: 5px;
}
input {
    padding: 5px;
}
.contactbanner {
    display: flex;
    flex-direction: column;
    outline: solid 1px #6d24ff;
    background-color: #8c52ff;
    width: 371px;
    margin-left: 499px;
    margin-top: 50px;
    border-radius: 5px 5px 0 0;
    animation: breathingOutline 4s ease-in-out infinite;
    overflow: hidden;
}
.contactheader {
    display: flex;
    flex-direction: column;
    padding: 10px;
    text-align: center;
    color: white;
    margin: 0px;
}
.contactinfo {
    display: flex;
    flex-direction: column;
    color: white;
    margin: 0px;
    padding: 10px;
}
@keyframes breathingOutline {
    0% {
        box-shadow: 0 0 4px rgba(109, 36, 255, 0.6);
    }
    50% {
        box-shadow: 0 0 20px 8px rgba(109, 36, 255, 0.9);
    }
    100% {
        box-shadow: 0 0 4px rgba(109, 36, 255, 0.6);
    }
}
@keyframes gradientBorder {
    0% {
        background-position: 0% 50%;
    }
    100% {
        background-position: 300% 50%;
    }
}
.contactbanner::before {
    filter: blur(6px);
    opacity: 0.9;
}
.contactbutton {
    outline: 1px solid black;
}
.contactbutton:hover {
    cursor:pointer;
}
body {
    font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif
}
::view-transition-old(root) {
    animation: slide-out 0.5s ease forwards;
}

::view-transition-new(root) {
    animation: slide-in 0.5s ease forwards;
}

@keyframes slide-out {
    to { transform: translateX(-30px); opacity: 0; }
}

@keyframes slide-in {
    from { transform: translateX(30px); opacity: 0; }
}