/* Proxima Nova Font */
@import url('https://use.typekit.net/upo4ozn.css');

/* Global Styles */
body {
    font-family: 'proxima-nova', sans-serif;
    font-size: 16px;
    line-height: 1.5;
    color: #3B3B3B;
    background-color: #FFFFFF;
    margin: 0;
    padding: 0;
}

h1 {
    font-size: 42px;
    font-weight: 600;
    color: #2B1C50;
    margin-bottom: 40px;
}

h2 {
    font-size: 34px;
    font-weight: 600;
    color: #2B1C50;
    margin-bottom: 35px;
}

h3 {
    font-size: 28px;
    font-weight: 600;
    color: #2B1C50;
    margin-bottom: 30px;
}

h4 {
    font-size: 23px;
    font-weight: 600;
    color: #2B1C50;
    margin-bottom: 25px;
}

h5 {
    font-size: 20px;
    font-weight: 600;
    color: #2B1C50;
    margin-bottom: 20px;
}

h6 {
    font-size: 16px;
    font-weight: 600;
    color: #2B1C50;
    margin-bottom: 15px;
}

p {
    margin-bottom: 20px;
}

ul, ol {
    margin-bottom: 20px;
    padding-left: 40px;
}

a {
    color: #575BDE;
    text-decoration: none;
}

a:hover {
    color: #4448B0;
    text-decoration: underline;
}

b, strong {
    font-weight: 600 !important;
}

/* Buttons */
.button-container {
    display: flex;
    justify-content: flex-start; 
    align-items: center;
    width: 100%;
}

.button-container .btn {
    background-color: #575BDE;
    color: #FFFFFF;
    border: none;
    padding: 10px 20px;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.button-container .btn:hover {
    background-color: #4448B0;
}

/* Main Site Container */
#content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0;
}

/* Responsive Site Container */
@media only screen and (max-width: 768px) {
    #content {
        padding: 10px;
    }
}

/* Form Container */
form {
    display: flex;
    flex-direction: column;
    width: 100%;
    box-sizing: border-box;
    gap: 0px;
}

/* Base Input Styling */
input[type="text"],
input[type="email"],
input[type="password"],
input[type="number"],
input[type="tel"],
select,
textarea {
    font-family: 'proxima-nova', sans-serif;
    width: 100%;
    padding: 12px;
    border: 1px solid #EFEFEF;
    background-color: #f6f6f7;
    border-radius: 4px;
    font-size: 15px;
    color: #3B3B3B;
    box-sizing: border-box;
    transition: border-color 0.3s ease, background-color 0.3s ease;
}

/* Input Placeholder */
input::placeholder,
textarea::placeholder {
    color: #999999;
}

/* Input Focus State */
input:focus,
select:focus,
textarea:focus {
    border-color: #575BDE;
    background-color: #FFFFFF;
    outline: none;
}

/* Select Element Styling */
select {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}

/* Checkbox and Radio Button */
input[type="checkbox"],
input[type="radio"] {
    accent-color: #575BDE;
    width: 18px;
    height: 18px;
    margin-right: 8px;
    cursor: pointer;
}

/* Submit Button */
button[type="submit"],
button {
    font-family: 'proxima-nova', sans-serif;
    padding: 12px 20px;
    background-color: #575BDE;
    border: 1px solid #575BDE;
    border-radius: 4px;
    color: #FFFFFF;
    cursor: pointer;
    transition: background-color 0.3s ease;
    font-size: 15px;
}

button[type="submit"]:hover,
button:hover {
    background-color: #4448B0;
}

/* Form Group Styling */
.form-group {
    position: relative;
    margin-bottom: 15px;
    box-sizing: border-box;
    width: 100%; /* Ensure the form group takes full width */
}

/* Floating Labels */
.form-group label {
    position: absolute;
    top: 12px;
    left: 12px;
    font-size: 15px;
    font-weight: 500;
    color: #999999;
    transition: all 0.2s ease;
    pointer-events: none;
}

.form-group input:focus ~ label,
.form-group input:not(:placeholder-shown) ~ label,
.form-group select:focus ~ label,
.form-group select:not([value=""]) ~ label {
    top: -8px;
    left: 12px;
    font-size: 12px;
    color: #575BDE;
    background-color: #fff;
    padding: 0 5px;
}

.form-group input:not(:focus):valid ~ label,
.form-group select:not(:focus):valid ~ label {
    color: #999999; /* Reset to default color when not focused */
}

/* Half-width fields for First and Last Name, Passwords */
.half-width {
    width: calc(50% - 7.5px);
    float: left;
    margin-right: 15px;
    box-sizing: border-box;
}

.half-width:last-child {
    margin-right: 0;
}

/* Third-width fields for City, Province, Postal Code */
.third-width {
    width: calc(33.33% - 10px);
    float: left;
    margin-right: 15px;
    box-sizing: border-box;
}

.third-width:last-child {
    margin-right: 0;
}

/* Error Styling */
.form-group .x-error {
    color: rgba(213, 22, 54, 0.867);
    font-size: 12px;
    margin-top: 5px;
}

/* Clear floats */
form::after {
    content: "";
    display: table;
    clear: both;
}

/* Mobile styles */
@media (max-width: 768px) {
    .half-width,
    .third-width {
        width: 100%;
        margin-right: 0;
    }
}

/* Header */
#nav-container {
    width: 100%;
    background-color: #fff;
    position: sticky;
    padding: 0;
    top: 0;
    z-index: 1000;
}

/* Mobile Navigation */
#nav-mobile-container {
    display: block;
}

#nav-mobile-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
}

#nav-mobile-logo img {
    width: 200px; 
}

#nav-mobile-icons {
    display: flex;
    align-items: center;
    gap: 15px;
}

#nav-mobile-icons svg {
    width: 24px;
    height: 24px;
    cursor: pointer;
}

#nav-mobile-search-container {
    padding: 10px 0;
}

#nav-mobile-search-container form {
    display: flex;
    align-items: center;
    position: relative;
}

#nav-mobile-search-input {
    font-family: 'proxima-nova', sans-serif;
    width: calc(100% - 40px);
    width: 100%;
    padding: 12px;
    border: 1px solid #EFEFEF;
    background-color: #f6f6f7;
    border-radius: 4px;
    font-size: 16px;
    color: #3B3B3B;
    transition: border-color 0.3s ease-in-out, background-color 0.3s ease-in-out; 
    -webkit-appearance: none; 
    box-sizing: border-box;
}

#nav-mobile-search-input::placeholder {
    color: #999999;
}

#nav-mobile-search-input:focus {
    border-width: 1px !important;
    border-color: #575BDE;
    background-color: white;
    outline: none;
}

#nav-mobile-search-glass {
    position: absolute;
    right: 5px;
    top: 11px;
    cursor: pointer;
}

#nav-mobile-search-svg {
    position: absolute;
    right: 10px;
    width: 24px;
    height: 24px;
}

/* Hide Mobile Navigation on Desktop */
@media only screen and (min-width: 768px) {
    #nav-mobile-container {
        display: none;
    }
}
/* Top Bar */
#top-bar {
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
    font-family: 'proxima-nova', sans-serif;
    font-size: 13px;
}

#top-bar-left
{
    display: flex;
    align-items: center;
    gap: 20px;
}

#top-bar-right {
    display: flex;
    align-items: center;
    gap: 5px;
}

#wishlist-link{
    margin-right:15px;
}

#top-bar a {
    color: #3B3B3B;
    text-decoration: none;
    position: relative;
}

#top-bar a:hover {
    color: #3B3B3B;
}

#top-bar a:hover::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -2px;
    width: 100%;
    height: 1px;
    background-color: #3B3B3B;
    transition: all 0.3s ease;
}

/* Desktop Navigation */
#nav-desktop-container {
    display: none;
}

@media only screen and (min-width: 768px) {
    #nav-desktop-container {
        display: flex;
        justify-content: space-between;
        align-items: center;
    }
}

#nav-desktop-header {
    display: flex;
    padding:20px 0 30px 0;
    gap: 20px;
    width: 100%;
    align-items: center;
}

#nav-desktop-logo img {
    width: 222px;
}

/* Search Form */

#nav-desktop-search {
    flex: 1;
    display: flex;
    align-items: center;
    position: relative;
}

#nav-desktop-search form {
    flex: 1;
    display: flex;
    align-items: center;
    position: relative;
}

#nav-desktop-search-input {
    font-family: 'proxima-nova', sans-serif;
    width: 100%;
    padding: 12px;
    border: 1px solid #EFEFEF;
    background-color: #f6f6f7;
    border-radius: 4px;
    font-size: 15px;
    color: #3B3B3B;
    outline: none;
    box-shadow: 0 0 0 0 #EFEFEF;
    transition: background-color 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease, 
}

#nav-desktop-search-input::placeholder {
    color: #999999;
}

#nav-desktop-search-input:focus {
    border-width: 1px !important;
    border-color: #575BDE;
    background-color: #ffffff;
}

#nav-desktop-search-glass {
    position: absolute;
    top: 11px;
    right: 10px;
    cursor: pointer;
}

#nav-desktop-search-svg {
    width: 24px;
    height: 24px;
}

#nav-desktop-box {
    display: none;
}

#nav-desktop-copy {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}

#nav-desktop-discreet {
    font-size: 17px;
    font-weight: 400;
    color: #3B3B3B;
    text-align: right;
}

#nav-desktop-deliveries {
    font-size: 13px;
    text-align: right;
}

#nav-desktop-links a {
    color: #444;
}

#nav-desktop-svg-user {
    width: 24px;
    height: 24px;
}

#cart-button {
    position: relative;
    display: inline-block;
}

#nav-desktop-svg-cart {
    width: 30px;
    height: 30px;
}

#cart-item-count {
    position: absolute;
    top: -5px;
    right: -10px;
    background-color: #575BDE;
    color: #FFFFFF;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 400;
}

/* Main Shop Menu - Desktop */
#main-menu-container {
    display: flex;
    width: 100%;
    justify-content: space-between;
}

#main-menu-container #main-menu-category-links {
    flex: 1;
    display: flex;
    justify-content: flex-start;
    gap: 30px;
}

#main-menu-container #main-menu-special-links {
    flex: 1;
    display: flex;
    justify-content: flex-end;
    gap: 30px;
}

#main-menu-container #main-menu-category-links a,
#main-menu-container #main-menu-special-links a {
    font-family: 'proxima-nova', sans-serif;
    font-size: 15px;
    font-weight: 500;
    color: #2B1C50;
    text-decoration: none;
    padding-bottom: 5px; 
    position: relative;
}

#main-menu-container #main-menu-category-links a::after,
#main-menu-container #main-menu-special-links a::after {
    content: '';
    display: block;
    width: 0;
    height: 2px;
    background: #575BDE;
    transition: width 0.3s;
    position: absolute;
    bottom: 0;
    left: 0;
}

#main-menu-container #main-menu-category-links a:hover::after,
#main-menu-container #main-menu-special-links a:hover::after {
    width: 100%;
}

/* Hide Top Bar and Main Menu on Mobile */
@media only screen and (max-width: 768px) {
    #top-bar,
    #main-menu-container {
        display: none;
    }
}

/* Container for the form page */
.form-page-container {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 20px;
    width: 100%;
    box-sizing: border-box;
    margin: 0 auto;
    padding: 40px 0;
}

/* Form section styling */
.form-section {
    flex: 0 0 50%;
    box-sizing: border-box;
}

/* Information section styling */
.info-section {
    flex: 0 0 50%;
    box-sizing: border-box;
    padding: 0 20px;
    font-family: 'proxima-nova', sans-serif;
}

.info-section h2 {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 20px;
    color: #2B1C50;
}

.info-section p {
    font-size: 16px;
    margin-bottom: 20px;
    color: #3B3B3B;
}

.info-section ul {
    list-style-type: disc;
    padding-left: 20px;
}

.info-section ul li {
    margin-bottom: 10px;
    font-size: 14px;
    color: #3B3B3B;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .form-page-container {
        flex-direction: column;
        padding: 20px 0;
    }

    .form-section,
    .info-section {
        flex: 0 0 100%;
        padding: 0;
    }

    .info-section ul {
        padding-left: 0;
        list-style-type: none;
    }

    .info-section ul li {
        margin-left: 0;
    }
}

/* Collection Page */
#collection-page {
    max-width: 1200px;
    margin: 0 auto;
}

#collection-header {
    margin: 60px 0;
}

#collection-name {
    font-family: 'proxima-nova', sans-serif;
    font-size: 23px;
    font-weight: 600;
    color: #2B1C50;
    letter-spacing: 0.2px;
    margin-bottom: 20px;
}

#collection-description {
    font-family: 'proxima-nova', sans-serif;
    font-size: 16px;
    line-height: 1.5;
    color: #3B3B3B;
}

/* Sidebar and Product Container */
#spi-container {
    display: flex;
    gap: 20px;
    box-sizing: border-box;
}

#spi-sidebar {
    width: 20%;
}

#spi-products-container {
    width: 80%;
}

/* Accordion Styles */
#spi-collections-header {
    font-size: 15px;
    font-weight: 500;
    color: #2B1C50;
    text-decoration: none;
}

/* Collection & Attribute Lists */
#spi-collections-links ul, #spi-vendors ul, .spi-attribute-groups ul {
    list-style-type: none; 
    padding: 0;
}

/* Collection & Attribute Links */
#spi-collections-links ul li, #spi-vendors ul li, .spi-attribute-groups ul li {
    background-color: #f6f6f7;
    font-size: 14px;
    padding: 8px 15px;
    margin-bottom: 10px;
    border-radius: 4px;
    border: 1px solid #f6f6f7;
}

/* Filter Links */
#spi-collections-links ul li a, #spi-vendors ul li a, .spi-attribute-groups ul li a {
    text-decoration: none;
    color: #3B3B3B;
    font-family: 'proxima-nova', sans-serif;
    font-size: 14px;
    display: block;
}

/* Hover - Collection & Attribute Links */
#spi-collections-links ul li:hover, #spi-vendors ul li:hover, .spi-attribute-groups ul li:hover {
    border: 1px solid #575BDE;
}

/* Active - Collection & Attribute Links */
#spi-vendors ul li.active, .spi-attribute-groups ul li.active {
    border: 1px solid #575BDE;
    background-color: #e0e0f8;
    color:#575BDE;
    font-weight:600;
}

.spi-attribute-group-header,
#spi-vendors-header {
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 15px;
    font-weight: 500;
    color: #2B1C50;
    text-decoration: none;
}

#spi-products {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

#spi-products a {
    border: 1px solid #efefef;
    padding: 15px;
    text-align: center;
    transition: box-shadow 0.3s;
}

#spi-products a:hover {
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.05);
    text-decoration: none;
}

#spi-products img {
    max-width: 100%;
}

#spi-products .product-name {
    font-family: 'proxima-nova', sans-serif;
    font-size: 14px;
    font-weight: 400;
    color: #2B1C50;
    margin: 10px 0 10px 0;
    letter-spacing: 0.20px;
}

#spi-products .product-price {
    font-family: 'proxima-nova', sans-serif;
    font-size: 14px;
    font-weight: 600;
    color: #3B3B3B;
    letter-spacing: 0.20px;
}

#spi-products .product-name:hover {
    text-decoration: underline;
}

/* Responsive Styles */
@media only screen and (max-width: 768px) {
    #collection-header {
        margin: 20px 0;
    }
        #spi-container {
        flex-direction: column;
    }

    #spi-sidebar {
        display: none; 
    }

    #spi-products-container {
        width: 100%;
    }

    #spi-products {
        grid-template-columns: repeat(2, 1fr); 
    }
}

/* Pagination */
.spi-products-pagination {
    text-align: center;
    margin: 20px 0;
}

/* Single Product Page */
#products-detail-block {
    display: flex;
    width: 100%;
}

/* Product Image Gallery */
#products-detail-images {
    width: 40%;
}

#products-detail-jumbo-container {
    display: flex;
}

#products-detail-jumbo {
    display: flex;
    width: 100%;
    scroll-snap-type: x var(--tw-scroll-snap-strictness);
    --tw-scroll-snap-strictness: mandatory;
    overflow: scroll;
    align-items: center;
    -ms-overflow-style: none;
    scrollbar-width: none; 
}

#products-detail-jumbo::-webkit-scrollbar {
    display: none;  
}

.products-detail-jumbo-image {
    display: flex;
    width: 100%;
    flex-shrink: 0;
    flex-direction: column;
    scroll-snap-align: start;
    justify-content: center;
}

#products-detail-gallery-container {
    display: flex;
}

.products-detail-chevron {
    height: 3rem;
    width: 3rem;
    color: rgb(75 85 99);
}

#products-detail-gallery {
    display: flex;
    overflow: hidden;
    margin-left: 0.5rem;
    max-width: calc(5 * 60px);
    -ms-overflow-style: none;  
    scrollbar-width: none;
}

#products-detail-gallery::-webkit-scrollbar {
    display: none;  
}

.products-detail-gallery-image-block {
    flex-shrink: 0;
    width: 60px
}
.products-detail-gallery-image-block:hover {
    cursor: pointer;
}

.products-detail-gallery-image {
    width: 100%;
    height: auto;
}

.products-detail-gallery-btn {
    border: none;
    background-color: #fff;
}
.products-detail-gallery-btn:hover {
    cursor: pointer;
}

/* Product Main Details */
#products-show-info {
    flex: 0 0 60%;
    max-width: 60%;
    box-sizing: border-box;
    padding: 60px;
    display: flex;
    flex-direction: column;
    justify-content: center; 
}
#products-show-info #products-show-name {
    font-family: 'proxima-nova', sans-serif;
    font-size: 23px;
    color: #2B1C50;
    font-weight: 600;
    letter-spacing: 0.2px;
    margin-bottom: 20px;
}

#products-show-info #products-show-blurb {
    font-size: 16px;
    font-weight: 400;
    margin-bottom: 20px;
}

#products-show-info #products-show-price {
    font-size: 18px;
    color: #2B1C50;
    font-weight: 600;
    margin-bottom: 20px;
}

#products-show-info #products-show-stock {
    font-size: 12px;
    font-weight: 400;
    margin-bottom: 20px;
}

/* Styling for attribute group header */
.products-show-attribute-group-header {
    font-weight: 600;
    font-family: 'proxima-nova', sans-serif;
    font-size: 14px;
    margin-bottom: 10px;
}

/* Styling for attribute group values */
.products-show-attribute-group-values {
    display: flex;
    gap: 10px;
    margin-bottom: 20px;
}

/* Styling for image attribute values */
.products-show-attribute-image-value {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #f6f6f7;
    cursor: pointer;
    position: relative; 
    transition: border 0.3s ease;
    padding: 2px; 
    border: 2px solid transparent; 
}

.products-show-attribute-image-value img {
    border-radius: 50%;
    width: 100%;
    height: 100%;
}

/* Hover effect for image attribute values */
.products-show-attribute-image-value:hover {
    border: 2px solid #2B1C50; 
    background-color: white;
}

/* Add tick mark to selected image attribute */
.attribute-active.products-show-attribute-image-value::after {
    content: "\2713"; 
    color: white;
    border-radius: 50%;
    position: absolute;
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2px;
    font-size: 14px;
    border: 2px solid #2B1C50; 
}

/* Styling for text attribute values */
.products-show-attribute-text-value {
    width: auto;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #f6f6f7;
    cursor: pointer;
    position: relative; 
    transition: border 0.3s ease;
    border-radius: 4px; 
    font-family: 'proxima-nova', sans-serif;
    font-size: 14px;
    padding: 2px 10px; 
    border: 2px solid transparent; 
}

/* Hover effect for text attribute values */
.products-show-attribute-text-value:hover {
    border: 2px solid #2B1C50; 
    background-color: white;
}

/* Add border to selected text attribute */
.attribute-active.products-show-attribute-text-value {
    border: 2px solid #2B1C50; 
}

/* Add to Cart */
.add-to-cart-container {
    display: flex;
    align-items: center; 
    margin-top: 20px;
}

#add-to-cart-btn {
    font-family: 'proxima-nova', sans-serif;
    background-color: #575BDE;
    letter-spacing: 0.2px;
    color: #FFFFFF;
    border: 1px solid #575BDE;
    padding: 15px 24px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
    border-radius: 4px;
    width: 60%;
}

#add-to-cart-btn:hover {
    background-color: #4448B0;
}

/* Wishlist Link */
.wishlist-container {
    display: flex;
    align-items: center;
    margin-top: 10px;
    font-size: 14px;
    color: #3B3B3B;
}
.wishlist-svg-heart {
    height: 1rem;
    color: #575BDE;
    margin-right: 8px;
}

.wishlist-text {
    color: #575BDE;
    text-decoration: none;
}

.wishlist-text:hover {
    text-decoration: underline;
}

/* Responsive Styles for Product Detail Block */
@media only screen and (max-width: 768px) {
    #products-detail-block {
        flex-direction: column;
        padding: 0;
    }

    #products-detail-images,
    #products-show-info {
        width: 100%;
        max-width: 100%;
        padding: 0px;
        box-sizing: border-box;
        margin-bottom: 22px;
    }

    #products-detail-jumbo-container {
        display: flex;
        flex-direction: column;
        align-items: center;
        overflow-x: auto;
    }

    #products-detail-jumbo {
        width: 100%;
        display: flex;
        scroll-snap-type: x mandatory;
        overflow-x: scroll;
        align-items: center;
    }

    .products-detail-jumbo-image {
        flex: 0 0 100%;
        scroll-snap-align: center;
        display: flex;
        justify-content: center;
    }

    #products-detail-gallery {
        display: flex;
        overflow-x: auto;
        margin: 0;
    }

    .products-detail-gallery-image-block {
        height: auto;
        margin: 0 5px; 
    }

    .products-detail-gallery-image {
        height: 50px; 
    }
}

/* Product Full Description Details */
#products-show-features .header,
#products-show-description .header,
#products-show-specs .header {
    font-family: 'proxima-nova', sans-serif;
    font-size: 28px;
    color: #2B1C50;
    font-weight: 600;
    letter-spacing: 0.2px;
    margin-bottom: 22px;
}

#products-show-features,
#products-show-description,
#products-show-usage-guide,
#products-show-care-guide,
#products-show-conclusion {
    font-family: 'proxima-nova', sans-serif;
    font-size: 16px;
    font-weight: 400;
    margin-bottom: 60px;
}

/* Responsive Details */
@media only screen and (max-width: 768px) {
    #products-show-features, 
    #products-show-description,
    #products-show-usage-guide,
    #products-show-care-guide,
    #products-show-conclusion {
        margin-bottom: 40px;
    }
}
/* Features Section */
#products-show-features .content ul {
    display: flex;
    flex-wrap: wrap;
    list-style: none;
    padding: 0;
    margin: 0;
}

#products-show-features .content ul li {
    width: 33.33%; 
    box-sizing: border-box;
    padding: 10px;
}

@media (max-width: 768px) {
    #products-show-features .content ul li {
        width: 100%; 
    }
}

/* Product Specifications Table */
#products-show-specs .content {
    width: 100%;
    border-spacing: 0 20px;
    border-collapse: collapse;
    margin-bottom: 60px;
}

#products-show-specs .content table {
    width: 100%;
    border-spacing: 0;
    border-collapse: collapse;
    border: 1px solid #efefef;
}

#products-show-specs .content tr {
    border-bottom: 1px solid #EFEFEF;
}

#products-show-specs .content td {
    padding: 10px 20px;
    font-size: 16px;
    vertical-align: middle;
}

#products-show-specs .content td.header {
    font-weight: 600;
    background-color: #f6f6f7;
    color: #2B1C50;
    width: 20%; 
    white-space: nowrap; 
    border-right: #efefef;
}

#products-show-specs .content td.content {
    font-weight: 400;
    color: #3B3B3B;
    width: 80%;
}

/* Checkout */
#checkout-container {
    display: flex;
}

#checkout-details {
    width: 50%;
}

#checkout-cart {
    width: 50%;
    padding-left: 50px;
}


/* Admin Styling */
#a-main {
    display: flex;
}
#a-sidebar {
    width: 12rem;
}
#a-content {
    flex-grow: 1;
}
.a-header {
    font-weight: bold;
    font-size: 1.5rem;
    line-height: 2rem;
}
.a-flex-bar {
    display: flex;
    gap: 0.5rem;
}
.a-two-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.5rem;
}
.a-sm {
    font-size: 0.75rem;
}
.a-txt {
    width: 100%;
}
.a-prod-stat {
    background-color: gray;
    color: #fff;
    padding: 0.5rem
}
.a-prod-stat:hover {
    cursor: pointer;
}
.a-prod-selected {
    background-color: green;
}
/* Desktop Mega Menu */
#category-links {
    list-style: none;
    display: flex;
    gap: 1rem;
    padding-left:0;
}
.flyout-hidden {
    display: none;
}
.flyout {
    margin-top: 0.3rem;
    list-style: none;
    position: absolute;
    background-color: white;
    padding-left: 1rem;
    padding-right: 1rem;
    padding-top: 0.4rem;
    padding-bottom: 0.4rem;
    border: 1px solid gray;
}
/* Mobile expanded menu */
#nav-mobile-expanded-menu {
    position: fixed; /* Stay in place */
    z-index: 1; /* Sit on top */
    left: 0;
    top: 0;
    width: 100%; /* Full width */
    height: 100%; /* Full height */
    overflow: scroll; /* Enable scroll if needed */
    background-color: white; /* Fallback color */
    color: white;
}
#nav-mobile-expanded-menu.hidden {
    display: none;
}
#nav-mobile-expanded-header {
    display: flex;
    padding: 10px;
}
#nav-mobile-expanded-logo {
    width: 200px;
}
#nav-mobile-expanded-burger {
    text-align: right;
}
#nav-mobile-expanded-svg-burger {
    width: 24px;
    height: 24px;
    cursor: pointer;
    color: black;
}

/* Misc */
.form-error {
    background-color: white;
    color: rgba(213, 22, 54, 0.867);
}
/* Footer */
#footer-container {
    background-color: #ffffff;
    margin-top: 50px;
    padding: 10px 0 20px 0;
    border-top: 1px solid #efefef;
    color: #3B3B3B;
    font-family: 'proxima-nova', sans-serif;
}

/* First Row */
#footer-row-1 {
    display: flex;
    justify-content: space-between;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

#footer-signup-form {
    display: inline-block; 
    text-align: left;
    width: 100%;
    box-sizing: border-box;
}

#footer-signup-form input {
    display: inline-block;
    width: calc(100% - 130px); 
    margin-right: 5px; 
}

#footer-signup-form button {
    display: inline-block;
    vertical-align: middle; 
}

/* Social Media Section */
#footer-social-icons {
    text-align: right; 
}

.social-icons-container {
    display: flex;
    gap: 10px;
    justify-content: flex-end; 
}

.social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: #f6f6f7;
    border-radius: 50%;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.social-icon svg {
    fill: #2B1C50;
    width: 24px; 
    height: 24px;
}

.social-icon:hover {
    background-color: #575BDE;
}

.social-icon:hover svg {
    fill: #ffffff;
}


/* Second Row */
#footer-row-2 {
    display: flex;
    justify-content: space-between;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.footer-column {
    margin-bottom: 20px;
    font-size: 13px;
}

/* Customer Service */
.footer-column-1 h4 {
    font-size: 16px;
    font-weight: 600;
    color: #575BDE;
    margin-bottom: 10px;
}

.footer-column-1 p {
    font-size: 14px;
    margin-bottom: 15px;
}

.footer-column-1 ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-column-1 li {
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    font-size: 14px;
}

.footer-column-1 li img {
    width: 24px;
    height: 24px;
    margin-right: 8px;
    display: inline-block;
}

.footer-column-1 li a {
    text-decoration: none;
    color: #3B3B3B;
    display: flex;
    align-items: center;
    gap: 8px;
}

.footer-column-1 li a:hover {
    color: #575BDE;
}


.footer-column h4 {
    font-size: 15px;
    font-weight: 500;
    margin-bottom: 10px;
}

.footer-column p {
    margin-bottom: 5px;
    font-size: 13px;
}

.footer-column ul {
    list-style: none;
    padding: 0;
}

.footer-column li {
    margin-bottom: 5px;
    font-size: 13px;
}

.footer-column ul li a {
    color: #3B3B3B;
}

/* Wider columns for 1 and 5 */
.footer-column-1,
.footer-column-5 {
    width: 26%; 
    margin-bottom: 20px;
}

/* Standard width for columns 2, 3, and 4 */
.footer-column-2,
.footer-column-3,
.footer-column-4 {
    width: 16%; 
    margin-bottom: 20px;
}


/* Third Row */
#footer-row-3 {
    display: flex;
    font-size: 13px;
    justify-content: space-between;
    align-items: center;  
    flex-wrap: wrap;
    margin-top: 20px; 
}
#footer-left {
    flex: 1;
    text-align: left; 
    margin-bottom: 10px;
}

#footer-right {
    flex: 1;
    display: flex;
    justify-content: flex-end; 
    gap: 10px;
    text-align: right;
}

/* Mobile Footer */
@media (max-width: 768px) {
    #footer-container {
        margin-top:20px;
        padding-top: 20px;
    }

    #footer-signup {
        text-align: center;
    }

    #footer-signup-form {
        flex-direction: column;
    }

    #footer-signup-form input {
        width: 100%;
        text-align: center;
        margin: 0 auto;
    }

    #footer-signup-form button {
        margin-left: 0;
        margin-top: 5px;
        border-radius: 4px; 
    }

    #footer-social-icons {
        display: flex;
        flex-direction: column;
        align-items: center;
        width: 100%;
        text-align: center;
    }

    #footer-social-icons p {
        margin-bottom: 10px;
    }

    #footer-social-icons a {
        margin: 5px;
    }

    #footer-row-2 {
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
    }

    .footer-column-1, .footer-column-5 {
        width: 100%;
        margin-bottom: 20px;
    }

    .footer-column-2, .footer-column-3, .footer-column-4 {
        width: 48%;
        margin-bottom: 20px;
    }


    #footer-row-3 {
        flex-direction: column; 
        align-items: center;
        text-align: center;  
    }

    #footer-left, #footer-right {
        flex: 1;
        width: 100%;  
        margin-bottom: 10px;
    }

    #footer-right {
        justify-content: center;  
    }
}
/* Footer End */

/* Cart flyout start */
.cart-flyout {
    margin-top: 0.3rem;
    right: 0;
    width: 20rem;
    position: absolute;
    background-color: white;
    padding-left: 1rem;
    padding-right: 1rem;
    padding-top: 0.4rem;
    padding-bottom: 0.4rem;
    border: 1px solid gray;
}
.cart-item {
    display: flex;
    gap: 0.5rem;
}

/* Cart flyout end */
