/* -----((( HTML )))-----///////////////////////////////////////// */
html {
    margin: 0;
    padding: 0;
    font-family: sans-serif;
}
/* -----((( BODY )))-----///////////////////////////////////////// */
body {
    margin: 0 auto;
    padding: 0;
    min-width: 360px;
    justify-content: center;
}
/* -----((( MAIN )))---- ////////////////////////////////////////// */
main {
    margin: 0 auto;
    max-width: 1198px;
    padding: 20px;
}
/* -----((( HEADER )))---- //////////////////////////////////// */
#headerContainer {
    background-color: white;
}
#headerSubCont {
    margin: 0 auto;
    max-width: 1196px;
    position: relative; /* Make this element the reference for absolute positioning fo cartBtnDiv */
}
/* Logo - section ----------------------- */
#topCont {
    padding-right: 4px;
    display: flex;
    align-items: center;
}
#logoDiv {
    padding-top: 10px;
    padding-left: 10px;
    max-width: 30%;
}
#siteLogo {
    max-width: 90%;
    max-height: 100px;
}
#underLogo {
    font-size: 8px;
    font-weight: 600;
    color: gray;
    border: solid greenyellow 1px;
    text-align: right;
    padding-top: 0;
    padding-right: 10px;
    margin-top: 0;
}
/* Slogan - section ---------------------- */
#giftsSmiles {
    margin: 0;
    padding-left: 20px;
    color: rgb(250, 58, 224);
    font-size: 2.5dvw;
    letter-spacing: 0.3em;
    font-weight: 400;
    text-align: center;
    font-family: 'Times New Roman', Times, serif;
}
/* Cart Btn - section ------------------- */
#cartBtnDiv { /* Floats top-right */
    position: absolute;  /* Position relative to #headerSubCont */
    top: 40px;           /* Align it to the top */
    right: 10px;         /* Align it to the right */
    z-index: 1000;    /* Ensure it's on top of other content */
    background-color: #3498db;
    padding: 2px;
}
#cartBtn {
    width: 60px;
    height: 30px;
    font-weight: 600;
}
#cartNotification {
    margin: 0;
    padding: 0;
    background-color: red;
    border-radius: 2px;
    text-align: center;
    color: white;
}
/* -----((( Header NAV Dropdown )))----- */
#navBackgroundDiv {
    background-color: #3498db;
}
.navCont { /* For each category word/text/div*/
    margin-left: 2px;
    position: relative;
    display: inline-block;
}
.navTrigger { /* hover-on text/div */
    color: white;
    margin-top: 4px;
    padding: 5px;
    cursor: pointer;
    font-size: 12px;
    padding-top: 4px;

}
.dropdown { /* menu that drops */
    position: absolute;
    top: 100%;
    left: 0;
    background-color: #f1f1f1;
    min-width: 160px;
    box-shadow: 0px 8px 16px rgba(0, 0, 0, 0.2);
    z-index: 1;
    border-radius: 3px;
    font-size: 13px;

    
    /* Initially hidden */
    visibility: hidden;
    opacity: 0;
    transition: visibility 0s, opacity 0.3s ease-in-out;
}
.dropdown a {
    color: black;
    padding: 12px 16px;
    text-decoration: none;
    display: block;

}
.dropdown a:hover {
    background-color: #ddd;
}
/* Show dropdown on hover */
.navCont:hover .dropdown {
    visibility: visible;
    opacity: 1;
}
/* -----((( FOOTER )))---- /////////////////////////////////////// */
.footer-container-for-background-color-wide {
    background-color: black;
    width: 100%;
    border: solid red;
}
footer {
    max-width: 800px;
    min-width: 200px;
    margin: 0 auto;
    padding: 10px 0;
    color: #eeeeee;
    text-align: center;
    align-content: center;
    height: 200px;
    background-color: black;
}
footer ul {
    margin: 0;
    padding: 0;
    text-align: left;
    max-width: 800px;
    list-style-type: none;
}
footer li {
    background-color: black;
}
footer a {
    text-decoration: none;
    color: rgb(161, 161, 161);
    font-weight: 500;
    border-radius: 4px;
    padding: 5px;
    font-size: 1em;
}
footer a:hover {
    color: #f0f0f1;
    background-color: #a7a7a7;
    font-weight: 600;
}
#copyright {
    color: rgb(161, 161, 161);
}
