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

@media (max-width: 500px) {
    html {
        padding-left: 10px;
        padding-right: 10px;
    }
}

body {
    font-family:
        "Inter",
        --apple-system,
        BlinkMacSystemFont,
        Segoe UI,
        Roboto,
        Oxygen,
        Ubuntu,
        Cantarell,
        Fira Sans,
        Droid Sans,
        Helvetica Neue,
        sans-serif;
    /*font-family: "HelveticaNeue-Light", "Helvetica Neue Light", "Helvetica Neue", Helvetica, Arial, "Lucida Grande", sans-serif;*/
}

a {
    color: #000;
    text-decoration: none;
}

.header-container-top {
    height: 100px;
}

.header-container-bottom {
    text-align: center;
    width: 100%;
    height: 30px;
    margin-top: 30px;
}

.top-logo-container {
    height: 100%;
    text-align: center;
}

.top-logo {
    margin-top: 20px;
    width: auto;
    height: 80px;
    text-align: center;
}

.checkout-loader {
    margin: auto;
    margin-top: 16px;
    border: 2px solid #f3f3f3; /* Light grey */
    border-top: 2px solid #000000; /* Blue */
    border-radius: 50%;
    width: 20px;
    height: 20px;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

/*Horizontal Navbar*/
.navbar {
    overflow: hidden;
    line-height: 20px;
}

/* Links inside the navbar */
.navbar a {
    font-size: 16px;
    color: #000;
    text-align: center;
    padding: 5px 25px;
    text-decoration: none;
}

ion-icon.navbar-dropdown-icon {
    margin-left: 5px;
    vertical-align: -15%;
}

.header-hr {
    background-color: #dadada;
    height: 1px;
    border: 0;
}

/*Top cart button*/
.login-btn {
    width: 120px;
    float: right;
    font-size: 24px;
    margin-top: 65px;
    margin-right: 5px;
    font-weight: 700;
    font-size: 14px;
    cursor: pointer;
}

.cart-circle {
    position: absolute;
    width: 15px;
    height: 15px;
    border-radius: 6px;
    margin-left: 14px;
    margin-top: 14px;
    background-color: #fce477;
    line-height: 16px;
    text-align: center;
    font-size: 10px;
    z-index: 1;
}

.left-top-btn {
    width: 120px;
    float: left;
    font-size: 24px;
    margin-top: 75px;
    margin-left: 5px;
}

.breadcrumb-container {
    text-align: center;
    margin-top: 40px;
    margin-bottom: 40px;
}

.breadcrumb {
    overflow: hidden;
    line-height: 20px;
}

.breadcrumb a {
    font-size: 16px;
    color: #000;
    text-align: center;
    padding: 5px 15px;
    text-decoration: none;
}

.breadcrumb-current {
    opacity: 0.6;
}

/*Collections*/
.collection-container {
    padding: 20px;
    text-align: center;
}

.collection-thumbnail {
    object-fit: contain;
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    border-radius: 20px;
}

.collection-title-container {
    text-align: center;
}

.collection-title {
    letter-spacing: 1px;
    font-weight: 100;
}

/*Products*/
.product-container {
    padding-bottom: 80px;
}

.product-gallery-thumbnail {
    object-fit: contain;
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
}

.product-gallery-thumbnail:hover {
    cursor: pointer;
    opacity: 0.9;
}

.product-gallery-thumbnail-container {
    margin: 2px;
}

.product-description-container {
    margin-left: 80px;
}

.product-title {
    font-size: 38px;
    font-weight: 400;
    margin-top: 0px;
    letter-spacing: 2px;
}

.product-description {
    font-size: 16px;
    font-weight: 100;
    padding-top: 30px;
}

.product-price {
    font-size: 24px;
    font-weight: 200;
    margin: 2 0;
}

.product-label {
    font-size: 14px;
    font-weight: 300;
    margin: 5px 0;
}

.product-in-stock {
    font-size: 14px;
    font-weight: 300;
    margin-top: 5px;
    margin-bottom: 25px;
    color: #344e41;
}

.product-out-stock {
    font-size: 14px;
    font-weight: 300;
    margin-top: 5px;
    margin-bottom: 25px;
    color: #780000;
}

.product-add-to-cart {
    margin-top: 10px;
    display: inline-block;
    background-color: #fff;
    height: 40px;
    width: 200px;
    line-height: 40px;
    text-align: center;
    border-color: #344e41;
    border-style: solid;
    border-width: 1px;
    border-radius: 8px;
    cursor: pointer;
    font-size: 16px;
    font-weight: 600;
}

.product-buy-now {
    margin-top: 10px;
    display: inline-block;
    background-color: #00c8ff;
    border-color: #00c8ff;
    height: 40px;
    width: 200px;
    line-height: 40px;
    text-align: center;
    border-style: solid;
    border-width: 1px;
    border-radius: 8px;
    cursor: pointer;
    font-size: 16px;
    font-weight: 600;
    color: #fff;
}

/*Inputs*/
input[type="text"],
select {
    width: 100%;
    padding-top: 15px;
    padding-bottom: 15px;
    padding-left: 10px;
    padding-right: 6px;

    margin-bottom: 20px;
    display: inline-block;
    border: 1px solid #dfdfdf;
    border-radius: 4px;
    box-sizing: border-box;
    background-color: #fff;
}

input[type="number"] {
    width: 65px;
    padding-top: 15px;
    padding-bottom: 15px;
    padding-left: 10px;
    padding-right: 6px;

    margin-bottom: 20px;
    display: inline-block;
    border: 1px solid #dfdfdf;
    border-radius: 4px;
    box-sizing: border-box;
}

input[type="email"] {
    width: 100%;
    padding-top: 10px;
    padding-bottom: 10px;
    padding-left: 0px;
    padding-right: 6px;

    margin-bottom: 20px;
    display: inline-block;
    border: none;
    border-bottom: 1px solid #494949;
    box-sizing: border-box;
    background-color: #fff;
}

.input-wrapper {
    position: relative;
    display: inline-block;
}

.input-wrapper input {
    padding-right: 40px;
}

.input-wrapper button {
    position: absolute;
    top: 0;
    right: 0;
    border: none;
    background-color: transparent;
    cursor: pointer;
}

/*Footer*/

.footer {
    padding-top: 40px;
}

.footer-column-container {
    padding-right: 40px;
}

.footer-title {
    font-size: 18px;
    font-weight: 600;
    letter-spacing: 1px;
}

ion-icon.newsletter-btn {
    vertical-align: -65%;
}

.copyright-container {
    padding-top: 40px;
    padding-bottom: 20px;
    font-size: 14px;
    font-weight: 200;
}

.footer-social-container {
}

ion-icon.footer-social {
    margin: 3px;
    font-size: 24px;
}

.footer-menu-item {
    color: black; /* Black text color */
    display: block; /* Make the links appear below each other */
    padding-top: 20px; /* Add some padding */
    text-decoration: none; /* Remove underline from links */
}

/*Cart*/

.cart-items-container {
    padding-bottom: 60px;
    padding-top: 60px;
}

.cart-item-header-title {
    font-size: 13px;
    font-weight: 100;
}

.cart-item-container {
    height: 120px;
    line-height: 120px;
    font-size: 14px;
}

.cart-product-thumbnail {
    float: left;
    width: auto;
    height: 120px;
    margin-left: 5px;
    margin-right: 20px;
    max-width: 30%;
    object-fit: contain;
}

.cart-item-qty-input {
    max-width: 50px;
}

@media (max-width: 600px) {
    .cart-item-container {
        height: 60px;
        line-height: 60px;
        font-size: 14px;
    }

    .cart-product-thumbnail {
        object-fit: contain;
        float: left;
        width: auto;
        height: 60px;
        margin-left: 5px;
        margin-right: 20px;
        max-width: 20%;
    }

    .cart-item-qty-input {
        max-width: 35px;
    }
}

.cart-item-description-container {
}

.cart-item-title {
    display: inline-block;
    overflow: hidden;
    text-overflow: ellipsis;
    width: 60%;
    white-space: nowrap;
}

.cart-item-price {
}

.subtotal-container {
    margin-top: 40px;
}

.cart-notes {
    border-color: #dfdfdf;
}

.cart-notes-title {
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 8px;
}

textarea:focus {
    outline: none !important;
    border-color: #dfdfdf;
    box-shadow: 0 0 0px #fff;
}

.subtotal-values-container {
    text-align: right;
}

.subtotal-title {
    font-size: 20px;
    font-weight: 300;
}

.subtotal-value {
    padding-left: 10px;
    font-size: 20px;
    font-weight: 700;
}

.tax-shipping-hint {
    margin-top: 10px;
    font-size: 15px;
    font-weight: 400;
}

/*Checkout*/
.shipping-address-container {
    margin-top: 60px;
    margin-bottom: 60px;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.billing-address-container {
    display: none;
}

.shipping-title {
    margin: 20px 5px;
}

.checkout-label {
    font-size: 14px;
    font-weight: 300;
    margin: 5px 0px;
}

.checkout-field-container {
    margin-left: 5px;
    margin-right: 5px;
}

.total-checkout-container {
    margin-top: 100px;
    margin-bottom: 80px;
}

.total-values-container {
    width: 300px;
    margin-left: auto;
    margin-right: auto;
}

.subtotal-checkout-title {
    margin-top: 0px;

    font-size: 16px;
    font-weight: 300;
}

.subtotal-checkout-value {
    margin-top: 0px;

    font-size: 16px;
    font-weight: 300;
}

.total-checkout-title {
    font-size: 22px;
    font-weight: 800;
}

.total-checkout-value {
    font-size: 22px;
    font-weight: 800;
}

.checkout-btn {
    max-width: 300px;
    float: right;
    margin-top: 20px;
    margin-bottom: 10px;
}

.checkout-title-container {
    text-align: left;
    margin-top: 0px;
}

.checkout-value-container {
    margin-top: 0px;
    text-align: right;
}

.discount-code-container {
    margin-top: 10px;
    margin-bottom: 5px;
}

/*Home*/
.home-title {
    max-width: 700px;
    padding-left: 10px;
    padding-right: 10px;
    margin: auto;
    font-size: 50px;
    font-weight: 800;
    letter-spacing: 2px;
}

.home-subtitle {
    max-width: 800px;
    padding-left: 10px;
    padding-right: 10px;
    margin: auto;
    font-size: 18px;
    font-weight: 200;
    margin-top: 30px;
    margin-bottom: 60px;
}

.home-header-container {
    margin-top: 80px;
    margin-bottom: 80px;
    text-align: center;
}

.home-section-container {
    max-width: 1200px;
    border-radius: 20px;
    background-color: #f5f5f5;
    margin: auto;
    margin-top: 120px;
    margin-bottom: 120px;
}

.home-section-img-container {
    height: 100%;
    display: flex;
    align-items: center; /* Vertically center */
    justify-content: center; /* Optional: horizontally center too */
    padding: 0%;
}

.home-section-text-container {
    margin-left: 60px;
    margin-right: 10px;
    margin-top: 60px;
    margin-bottom: 60px;
}

.home-section-title {
    font-size: 22px;
    font-weight: 600;
}

.home-section-description {
    font-size: 17px;
    font-weight: 200;
    letter-spacing: 1px;
    margin-right: 20px;
}

.create-store-btn {
    margin-top: 10px;
    display: inline-block;
    background-color: #00c8ff;
    border-color: #00c8ff;
    height: 40px;
    width: 150px;
    line-height: 40px;
    text-align: center;
    border-style: solid;
    border-width: 1px;
    border-radius: 8px;
    cursor: pointer;
    font-size: 16px;
    color: #fff;
}

.home-section-feature-container {
    max-width: 900px;
    border-radius: 20px;
    background-color: #fff;
    margin-left: 40px;
    margin-right: 40px;
    margin-top: 20px;
    margin-bottom: 20px;
    min-height: 140px;
    padding-top: 20px;
    padding-bottom: 20px;
    padding-left: 40px;
    padding-right: 20px;
}

.home-section-features-title {
    max-width: 600px;
    font-size: 30px;
    font-weight: 600;
    text-align: center;
    margin: auto;
    padding-top: 80px;
    padding-bottom: 50px;
    padding-left: 30px;
    padding-right: 30px;
}

.home-section-plan-container {
    width: 300px;
    height: 210px;
    border-radius: 20px;
    background-color: #fff;
    margin-left: auto;
    margin-right: auto;
    margin-top: 20px;
    margin-bottom: 20px;
    min-height: 140px;
    padding-top: 20px;
    padding-bottom: 20px;
    padding-left: 20px;
    padding-right: 20px;
}

.pricing-plan-title {
    font-weight: 900;
    font-size: 35px;
    text-align: center;
    margin-bottom: 10px;
}

.pricing-plan-subtitle {
    margin-top: 0px;
    font-weight: 300;
    font-size: 14px;
    text-align: center;
    padding-bottom: 20px;
}

.pricing-plan-description {
    text-align: center;
    font-weight: 700;
}

.pricing-plan-feature {
    font-weight: 400;
    font-size: 18px;
    padding-bottom: 10px;
}

.home-section-bottom-btn-container {
    text-align: center;
    padding-top: 50px;
    padding-bottom: 50px;
}

.home-section-clear-back-container {
    max-width: 1200px;
    margin: auto;
    margin-top: 120px;
    margin-bottom: 120px;
}

.home-section-feature-cell {
    max-width: 900px;
    border-radius: 20px;
    background-color: #f5f5f5;
    margin-left: 20px;
    margin-right: 20px;
    margin-top: 20px;
    margin-bottom: 20px;
    min-height: 140px;
    padding-top: 20px;
    padding-bottom: 20px;
    padding-left: 40px;
    padding-right: 20px;
}

.map-example-container {
    padding: 20px;
    text-align: center;
}

.home-section-map-title {
    max-width: 600px;
    font-size: 30px;
    font-weight: 600;
    text-align: center;
    margin: auto;
    padding-top: 80px;
    padding-bottom: 10px;
    padding-left: 30px;
    padding-right: 30px;
}

.home-section-description-maps {
    text-align: center;
    font-size: 17px;
    font-weight: 200;
    letter-spacing: 1px;
    margin: auto;
    max-width: 600px;
    padding-bottom: 30px;
}
