@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@400..900&display=swap');

* {
    box-sizing: border-box;
    padding: 0;
    margin: 0;
}

body {
    font-family: "Cinzel", serif;
}

.myaccount-dashboard {
        padding: 40px 0;
    }

    .container-width {
        max-width: 1200px;
        margin: 0 auto;
    }

    /* Page Title */
    .page-title-container {
        display: flex;
        align-items: center;
        justify-content: center;
        margin-bottom: 30px;
    }

    .page-title {
        font-size: 28px;
        margin: 0 15px;
        text-transform: uppercase;
        letter-spacing: 1px;
    }

    .decorative-line {
        height: 1px;
        background: linear-gradient(to right, transparent, #000, transparent);
        flex-grow: 1;
        opacity: 0.3;
    }

    .customer-profile-card {
        background: #fff;
        border-radius: 10px;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
        padding: 20px;
        margin-bottom: 30px;
    }

    .profile-header {
        display: flex;
        align-items: center;
        margin-bottom: 20px;
    }

    .avatar-placeholder {
        width: 60px;
        height: 60px;
        border-radius: 50%;
        background: #f3e5e5;
        color: #a06060;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 22px;
        font-weight: bold;
        margin-right: 15px;
    }

    .customer-name {
        display: flex;
        flex-direction: column;
    }

    .customer-name h4 {
        margin: 0;
        font-size: 20px;
    }

    .customer-since {
        font-size: 14px;
        color: #777;
    }

    .profile-details {
        display: grid;
        grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
        gap: 15px;
    }

    .detail-item {
        display: flex;
        align-items: center;
    }

    .detail-item i {
        margin-right: 10px;
        color: #a06060;
        width: 20px;
        text-align: center;
    }

    .orders-summary {
        display: flex;
        gap: 20px;
        margin-bottom: 30px;
    }

    .summary-card {
        background: #fff;
        border-radius: 10px;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
        padding: 15px;
        display: flex;
        flex: 1;
        align-items: center;
        transition: transform 0.3s ease;
    }

    .summary-card:hover {
        transform: translateY(-5px);
    }

    .summary-icon {
        width: 50px;
        height: 50px;
        border-radius: 50%;
        background: #f3e5e5;
        color: #a06060;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 20px;
        margin-right: 15px;
    }

    .summary-icon.delivered {
        background: #e5f3e5;
        color: #60a060;
    }

    .summary-icon.pending {
        background: #f3f0e5;
        color: #a09060;
    }

    .summary-content h4 {
        margin: 0 0 5px;
        font-size: 22px;
    }

    .summary-content p {
        margin: 0;
        font-size: 14px;
        color: #777;
    }

    .order-card {
        background: #fff;
        border-radius: 10px;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
        margin-bottom: 25px;
        overflow: hidden;
        transition: transform 0.3s ease;
    }

    .order-card:hover {
        transform: translateY(-5px);
    }

    .order-header {
        padding: 20px;
        border-bottom: 1px solid #f0f0f0;
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    .order-meta {
        display: flex;
        align-items: center;
        gap: 20px;
    }

    .order-number h5 {
        margin: 0;
        font-size: 16px;
        letter-spacing: 1px;
    }

    .order-date {
        color: #777;
        font-size: 14px;
        display: flex;
        align-items: center;
    }

    .order-date i {
        margin-right: 5px;
    }

    .order-status-badge {
        padding: 8px 15px;
        border-radius: 20px;
        font-size: 14px;
        display: flex;
        align-items: center;
        gap: 5px;
        text-transform: capitalize;
    }

    .order-status-badge.pending {
        background-color: #fff5e5;
        color: #cc9933;
    }

    .order-status-badge.processing {
        background-color: #e5f0ff;
        color: #3377cc;
    }

    .order-status-badge.shipped {
        background-color: #e5f2ff;
        color: #3399cc;
    }

    .order-status-badge.delivered {
        background-color: #e5ffe5;
        color: #33cc33;
    }

    .order-details {
        padding: 20px;
    }

    .order-summary {
        display: flex;
        justify-content: space-between;
        align-items: center;
        margin-bottom: 20px;
    }

    .price-tag {
        font-size: 20px;
        font-weight: bold;
        display: flex;
        align-items: center;
    }

    .price-tag i {
        font-size: 16px;
        margin-right: 5px;
    }

    .item-count {
        display: flex;
        align-items: center;
        gap: 5px;
        color: #666;
    }

    .view-details-btn {
        background: transparent;
        border: none;
        color: #a06060;
        cursor: pointer;
        display: flex;
        align-items: center;
        gap: 5px;
        padding: 5px 10px;
        border-radius: 5px;
        transition: background-color 0.3s ease;
    }

    .view-details-btn:hover {
        background-color: #f9f0f0;
    }

    .view-details-btn .hide-text {
        display: none;
    }

    .view-details-btn.active .show-text {
        display: none;
    }

    .view-details-btn.active .hide-text {
        display: inline;
    }

    .view-details-btn.active i {
        transform: rotate(180deg);
    }

    .order-items {
        display: none;
    }

    .order-items.show {
        display: block;
    }

    .item-card {
        display: flex;
        padding: 15px;
        border-radius: 8px;
        background-color: #f9f9f9;
        margin-bottom: 10px;
        width: 100%;
    }

    .item-image {
        width: 150px;
        height: 150px;
        margin-right: 15px;
    }

    .item-image img {
        width: 100%;
        height: 100%;
        object-fit: contain;
        border-radius: 5px;
    }

    .item-info {
        flex: 1;
    }

    .item-info h6 {
        margin: 0 0 10px;
        font-size: 16px;
    }

    .item-details {
        display: flex;
        justify-content: space-between;
    }

    .item-specs {
        display: flex;
        gap: 10px;
        align-items: center;
        flex-wrap: wrap;
    }

    .item-qty,
    .item-size {
        background-color: #f0f0f0;
        padding: 3px 10px;
        border-radius: 12px;
        font-size: 12px;
    }

    .item-color {
        display: flex;
        align-items: center;
        gap: 5px;
        background-color: #f0f0f0;
        padding: 3px 10px;
        border-radius: 12px;
        font-size: 12px;
    }

    .color-dot {
        width: 12px;
        height: 12px;
        border-radius: 50%;
        display: inline-block;
    }

    .item-price {
        text-align: right;
        font-size: 14px;
        color: #777;
    }

    .item-subtotal {
        font-size: 16px;
        font-weight: bold;
        color: #333;
        margin-top: 5px;
    }

    .order-actions {
        display: flex;
        padding: 15px 20px;
        background-color: #f9f9f9;
        border-top: 1px solid #f0f0f0;
        justify-content: space-around;
    }

    .action-btn {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 5px;
        color: #666;
        text-decoration: none;
        transition: color 0.3s ease;
        font-size: 13px;
    }

    .action-btn i {
        font-size: 18px;
    }

    .action-btn:hover {
        color: #a06060;
    }

    .track-btn:hover {
        color: #3399cc;
    }

    .reorder-btn:hover {
        color: #33cc33;
    }

    .invoice-btn:hover {
        color: #cc9933;
    }

    .review-btn:hover {
        color: #ff9900;
    }

    /* Empty Orders */
    .empty-orders-card {
        background: #fff;
        border-radius: 10px;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
        padding: 30px;
        text-align: center;
    }

    .empty-illustration {
        max-width: 250px;
        margin: 0 auto 20px;
    }

    .empty-illustration img {
        width: 100%;
    }

    .empty-content h2 {
        margin-bottom: 10px;
        font-size: 24px;
    }

    .empty-content p {
        color: #777;
        margin-bottom: 25px;
    }

    .shop-now-btn {
        background-color: #a06060;
        color: #fff;
        padding: 12px 25px;
        border-radius: 25px;
        text-decoration: none;
        display: inline-flex;
        align-items: center;
        gap: 10px;
        transition: all 0.3s ease;
    }

    .shop-now-btn:hover {
        background-color: #8a5252;
        transform: translateY(-3px);
        box-shadow: 0 5px 15px rgba(160, 96, 96, 0.3);
        color: #fff;
    }

    @media screen and (max-width: 992px) {
        .orders-summary {
            flex-wrap: wrap;
        }

        .summary-card {
            min-width: calc(50% - 10px);
        }
    }

    @media screen and (max-width: 768px) {
        .order-meta {
            flex-direction: column;
            align-items: flex-start;
            gap: 5px;
        }

        .order-header {
            flex-direction: column;
            gap: 15px;
            align-items: flex-start;
        }

        .order-status-badge {
            align-self: flex-start;
        }

        .order-summary {
            flex-direction: column;
            gap: 15px;
            align-items: flex-start;
        }

        .item-details {
            flex-direction: column;
            gap: 10px;
        }

        .item-price {
            text-align: left;
        }

        .order-actions {
            overflow-x: auto;
            justify-content: flex-start;
            gap: 20px;
            padding: 15px;
        }

        .action-btn {
            min-width: 70px;
        }
    }

    @media screen and (max-width: 576px) {
        .summary-card {
            min-width: 100%;
        }

        .profile-details {
            grid-template-columns: 1fr;
        }
    }

a {
    color: #F3ACB4;
}

.quantitytext {
    position: relative;
    left: 12px;
}

.price-label {
    font-weight: bold;
}

.price {
    font-size: 1.5em;
    color: #ff5722;
}

.quantity-selector {
    display: flex;
    align-items: center;
    gap: 0;
    margin-top: 20px;
}

.quantity-selector label {
    font-weight: 300;
}

.quantity-btn {
    cursor: pointer;
    width: 30px;
    height: 30px;
    background-color: #ffffff;
    border: 1px solid #ededed;
    text-align: center;
}

.quantity-btn:hover {
    background-color: #e0e0e0;
}

#quantity {
    width: 50px;
    height: 30px;
    text-align: center;
    background-color: #fff;
    border: 1px solid #ededed;
}

.product-info img {
    width: 100%;
    max-width: 100%;
    border-radius: 5px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.product-details {
    padding: 0 15px 10px 40px;
}

.product-details .price {
    position: relative;
    top: 7px;
    font-size: 20px;
    font-weight: 400;
    line-height: normal;
    color: #333;
}

.product-info .product-image {
    text-align: center;
}

.product-info .product-image img {
    width: 100%;
    height: auto;
    object-fit: cover;
    margin: 0 auto;
}

.colproduct3 {
    flex: 0 0 auto;
    width: 33.3%;
}

.colproduct9 {
    flex: 0 0 auto;
    width: 66.6%;
}

@media (max-width: 768px) {
    .colproduct3 {
        width: 100%;
    }

    .colproduct9 {
        width: 100%;
    }

    .product-details {
        padding: 10px 0;
    }

    .product-info .product-image img {
        max-width: 100%;
        height: auto;
    }

    .product-details h2 {
        font-size: 20px;
    }

    .product-details .price {
        font-size: 18px;
    }
}

@media (max-width: 480px) {
    .product-info .product-image img {
        max-width: 100%;
        height: auto;
    }

    .product-details h2 {
        font-size: 18px;
    }

    .product-details .price {
        font-size: 16px;
    }
}

.colectionspacetext {
    padding-top: 50px;
}

.reset-button {
    cursor: pointer;
    background-color: #fcd7dd;
    border: 1px solid #fcd7dd;
    border-radius: 5px;
    font-size: 12px;
    font-weight: 400;
    line-height: normal;
    padding: 5px 10px;
    margin-left: 10px;
}

.filtertext {
    display: inline-grid;
}

.filterspace select {
    background-color: transparent;
    border: 1px solid;
    outline: none;
    border-radius: 200px;
    font-size: 12px;
    padding: 5px 10px;
    margin-left: 10px;
}

.no-products-message {
    text-align: center;
    font-size: 18px;
    color: #d9534f;
    margin-top: 20px;
    font-weight: bold;
}

.header {
    background-color: #FCD7DD;
    padding: 20px 0 4px 0;
}

header {
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 10px;
}

.logo {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
}

.logo img {
    width: 850px;
    height: auto;
    margin-top: 105px;
}

.icons {
    display: flex;
    gap: 20px;
    position: absolute;
    right: 40px;
}

.icon {
    cursor: pointer;
    font-size: 20px;
    color: #4f4f4f;
}

.icon:hover {
    color: #FCD7DD;
}

.primary-menu {
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 14px;
    font-weight: 400;
    line-height: normal;
    padding-top: 130px;
}

.primary-menu a {
    color: #000;
    text-decoration: none;
    padding: 0 15px;
    font-size: 16px;
    font-family: "EB Garamond", serif;
}

.primary-menu a:hover {
    color: #000;
}

.hamburger {
    display: none;
    font-size: 30px;
    cursor: pointer;
}

.cta-section {
    display: flex;
    justify-content: left;
    align-items: center;
    width: 100%;
    height: 400px;
    padding: 0 25px;
}

.cta-content {
    text-align: left;
    max-width: 635px;
    margin-top: 71px;
}

.cta-content a {
    text-decoration: none;
}

.shopbycategoryspace {
    padding-top: 20px;
}

.cta-content h1 {
    font-size: 50px;
    font-weight: 600;
    line-height: 2.5rem;
    color: #333;
    margin: 0;
}

.cta-content p {
    font-size: 18px;
    color: #666;
    margin-bottom: 20px;
}

.cta-button {
    cursor: pointer;
    background-color: #000;
    border: none;
    border-radius: 5px;
    color: #fff;
    font-size: 17px;
    font-weight: 500;
    line-height: normal;
    transition: background-color 0.3s;
    padding: 10px 30px;
}

.cta-button:hover {
    background-color: #FCD7DD;
    color: #000;
}

.container {
    width: 100%;
    padding: 0 15px;
    margin: 0 auto;
}

.row {
    display: flex;
    flex-wrap: wrap;
}

.col-md-3 {
    flex: 0 0 auto;
    width: 25%;
}

.col-md-4 {
    flex: 0 0 auto;
    width: 33.3%;
}

.categoryimg {
    position: relative;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
}

.categoryimg img {
    width: 100%;
    height: auto;
    border-radius: 20px;
    margin: 10px;
    opacity: 1;
    transition: opacity 0.3s ease-in-out, transform 0.3s ease-in-out;
}

.categoryimg:hover img {
    opacity: 0.6;
    transform: scale(1.02);
}

.categorytext h4 {
    text-align: center;
    font-size: 20px !important;
    font-weight: 500;
    margin-top: 10px;
    margin-bottom: 10px;
    font-family: "EB Garamond", serif;
}

.categorieslink {
    color: #000;
    text-decoration: none;
}

.shopbycategory {
    text-align: center;
    padding-bottom: 30px;
}

.shopbycategory h2 {
    font-size: 40px;
    font-weight: 400;
    line-height: normal;
}

.bestsellers {
    text-align: center;
}

.bestsellers h2 {
    font-size: 40px;
    font-weight: 400;
    margin: 0;
    margin-bottom: 10px;
}

.bestsellers p {
    font-size: 20px;
    font-weight: 300;
    line-height: 1.5rem;
    padding-top: 5px;
    font-family: "EB Garamond", serif;
}

.bestsellersspace {
    padding: 60px 0;
}

.bestsellerstext {
    position: relative;
    top: 56%;
    left: 70%;
    width: 30%;
    height: auto;
    background-color: #F3ACB4;
    border: none;
    border-top-left-radius: 10px;
    border-bottom-left-radius: 10px;
    padding: 20px;
    margin: 0;
}

.testimonialtext h2 {
    font-size: 40px;
    font-weight: 400;
    line-height: normal;
    margin: 0;
    margin-bottom: 15px;
}

.bestsellerstext h4 {
    font-size: 30px;
    font-weight: 600;
    line-height: 1.5rem;
    margin: 0;
}

.bestsellerstext p {
    font-size: 20px;
    font-weight: 400;
    line-height: 30px;
    padding-top: 10px;
    margin: 0;
    font-family: "EB Garamond", serif;
}

#testimonials_row .cardproductimg {
    padding-right: 25px;
}

.cardproductimg {
    position: relative;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

.cardproductimg img {
    width: 100%;
    height: auto;
    border-radius: 20px;
    opacity: 1;
    transition: opacity 0.3s ease-in-out, transform 0.3s ease-in-out;
}

.review_card {
    margin: 10px 10px;
}

/* .cardproductimg img:hover {
    opacity: 0.8;
    transform: scale(1.1);
} */

.cardproducttext h5 {
    font-size: 16px;
    font-weight: 600;
    line-height: normal;
    color: #5D5D5D;
    font-family: "EB Garamond", serif !important;
}

.cardproductpricebtn {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    /* padding-top: 10px; */
}

.cardproductpricebtn .price {
    flex: 0 0 auto;
    width: 50%;
    font-size: 16px;
    color: #5D5D5D;
    padding-left: 0;
    font-family: "EB Garamond", serif;
}

.cardproductpricebtn .btnaddtocart {
    flex: 0 0 auto;
    width: 50%;
}

.cardproductpricebtn .btnaddtocart img {
    float: right;
    padding-right: 0;
}

.layouttext {
    text-align: center;
}

.layoutcardtext {
    position: relative;
    top: -10px;
    text-align: center;
    margin: 100px 0;
}

.elevate-your-home-decor-experience {
    text-align: center;
}

.elevate-your-home-decor-experience img {
    width: 100%;
    height: auto;
}

.diveintotheworldofeverlywhitetext {
    text-align: center;
    /* margin-top: 20px; */
}

.tabs {
    width: 50%;
    height: auto;
    /* padding-top: 25px; */
    margin: 0 auto;
}

.tab-links {
    display: flex;
    list-style-type: none;
    padding: 0;
}

.tab-links li {
    cursor: pointer;
    flex: 1;
    text-align: center;
    background-color: transparent;
    border: none;
    font-size: 14px;
    font-weight: 400;
    padding: 10px 0;
    margin: 0 auto;
}

.tab-links .active {
    background-color: transparent;
    border-bottom: 1px solid #000;
}

.tab-content .tab-pane {
    display: none;
    padding-top: 40px;
}

.tab-content .tab-pane.active {
    display: block;
}

.tabcollectionbglayout {
    background-color: #fff9f5;
    padding: 20px 0;
    margin-top: 20px;
}

.discovermorebtn {
    text-align: center;
    margin-top: 40px;
}

.discovermorebtn button {
    background-color: #fff;
    border: 1px solid #000;
    border-radius: 5px;
    color: #000;
    padding: 10px 50px;
    /* margin-top: 40px; */
}

.testimonialtext {
    text-align: center;
}

.testimonialtextspace {
    padding: 20px 0;
}

.journaltextspace {
    margin: 50px 0;
}

.cardproducttext {
    padding: 10px 0;
}

.staricon {
    padding-top: 10px;
}

.cardproducttext p {
    font-size: 16px;
    font-weight: 400;
    padding-top: 12px;
    padding-bottom: 10px;
    color: #5D5D5D;
    font-family: "EB Garamond", serif;
}

#testimonials_row h4 {
    margin-top: 14px;
}

.cardproductblogimg {
    position: relative;
    overflow: hidden;
    text-align: center;
    margin: 10px;
}

.cardproductblogimg img {
    width: 100%;
    height: auto;
    opacity: 1;
    transition: opacity 0.3s ease-in-out, transform 0.3s ease-in-out;
}

.cardproductblogimg:hover img {
    opacity: 0.8;
    transform: scale(1.1);
}

.cardproductblogimg a {
    background-color: transparent;
    border-bottom: 1px solid #F3ACB4;
    color: #F3ACB4;
    margin-top: 20px;
}

.cardproductblogtext {
    padding: 0 10px 0 10px;
}

.cardproductblogtext h5 {
    font-size: 24px;
    font-weight: 400;
    line-height: normal;
    padding-bottom: 5px;
}

.cardproductblogtext p {
    font-size: 12px;
    font-weight: 400;
    line-height: 1.2rem;
    padding-bottom: 10px;
    margin: 0;
}

.cardproductblogtext a {
    background-color: transparent;
    color: #8C4646;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    font-family: auto;
}

.abouttextcontainer {
    width: -webkit-fill-available;
    /* padding: 0 40px; */
    margin: 0 auto;
}

.followusoninstagram {
    text-align: center;
}

.followusoninstagram h2 {
    font-size: 40px;
    font-weight: 400;
    line-height: normal;
    margin-top: 60px;
}

.instagramimg {
    position: relative;
    overflow: hidden;
    text-align: center;
    margin: 38px 20px;
}

.instagramimg img {
    width: 100%;
    height: auto;
    border-radius: 20px;
    opacity: 1;
    transition: opacity 0.3s ease-in-out, transform 0.3s ease-in-out;
}

.instagramimg:hover img {
    opacity: 0.8;
    transform: scale(1.1);
}

.subscribetext h2 {
    font-size: 27px;
    font-weight: 600;
    line-height: normal;
}

.subscribetext p {
    font-size: 14px;
    font-weight: 400;
    line-height: normal;
    margin: 0;
}

.subscribetext {
    text-align: center;
}

.journaltextspace form {
    text-align: center;
    padding-top: 20px;
    padding-bottom: 20px;
}

input[type="email"] {
    width: 300px;
    height: auto;
    background-color: transparent;
    border: 1px solid #000;
    border-radius: 5px;
    outline: none;
    color: #000;
    padding: 10px;
}

.subscribebtn {
    background-color: #000;
    border: 1px solid #000;
    border-radius: 5px;
    color: #fff;
    padding: 10px 30px;
}

.footerlogo {
    text-align: center;
}

.footertext {
    padding: 20px;
}

.footertext h5 {
    font-size: 16px;
    font-weight: 600;
    line-height: normal;
    padding-bottom: 10px;
}

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

.footertext ul li {
    font-size: 14px;
    font-weight: 400;
    line-height: 1.5rem;
    font-family: "EB Garamond", serif !important;
}

.footertext ul li a {
    color: #000;
    text-decoration: none;
}

.footerrow {
    padding-top: 0;
}

.copyright {
    text-align: center;
}

.copyright h6 {
    font-size: 16px;
    font-weight: 300;
    line-height: normal;
    font-family: "EB Garamond", serif;
}

.collection-dropdown {
    position: relative;
}

.dropdown-toggle {
    cursor: pointer;
}

.dropdown-content {
    display: none;
    justify-content: space-between;
    position: absolute;
    top: 20px;
    left: -260px;
    z-index: 10;
    width: max-content;
    background-color: white;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    border: 1px solid #ddd;
    padding: 40px;
    margin: 0 auto;
}

.collection-section h3 {
    margin-bottom: 10px;
}

.collection-section a {
    display: block;
    color: #333;
    text-decoration: none;
    line-height: 1.7rem;
    padding: 0;
    margin: 0;
}

.collection-images img {
    width: 20px;
    height: auto;
}

.collection-dropdown:hover .dropdown-content {
    display: flex;
}

.col-md-6 {
    flex: 0 0 auto;
    width: 50%;
}

.headercardproductimg {
    text-align: center;
    padding: 5px;
}

.headercardproductimg img {
    width: 100%;
    height: auto;
    border-radius: 20px;
}

.collection-images {
    width: 50%;
    height: auto;
}

.aboutlayoutbg {
    background-image: url('../images/about/01.svg');
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    height: auto;
    padding: 20px 0;
}

.breadcrumb {
    font-size: 14px;
    color: #fff;
    padding: 0 20px;
}

.breadcrumb a {
    color: #fff;
    text-decoration: none;
    font-size: 14px;
    font-family: "EB Garamond", serif;
}

.abouttext {
    text-align: center;
    padding: 50px 0;
}

.abouttext h2 {
    font-size: 50px;
    font-weight: 600;
    line-height: normal;
    text-transform: uppercase;
    color: #fff;
}

.abouttext p {
    color: #fff;
}

.abouttexts {
    text-align: center;
    padding: 50px 0;
}

.abouttexts h2 {
    font-size: 40px;
    font-weight: 600;
    line-height: normal;
}

.abouttexts p {
    font-size: 20px;
    font-weight: 400;
    padding-top: 10px;
    font-family: "EB Garamond", serif;
    color: #5D5D5D;
}

.aboutcardimg {
    text-align: center;
}

.aboutcardimg img {
    width: 100%;
    height: auto;

}

.aboutcardsubtitle {
    background-color: #FCD7DD;
    border-radius: 5px;
    padding: 20px;
    margin-top: 20px;
    font-family: "EB Garamond", serif;
    font-size: 20px;
    color: #393939;
}

.aboutcardtext {
    padding: 0px 50px 20px 0;
}

.aboutcardtext h2 {
    font-size: 40px;
    font-weight: 300;
    line-height: 60px;

}

.aboutcardtext p {
    font-size: 20px;
    font-weight: 400;
    margin-top: 10px;
    font-family: "EB Garamond", serif;
}

.aboutcardtexts {
    padding: 20px 0 20px 50px;
}

.aboutcardtexts h2 {
    font-size: 40px;
    font-weight: 400;
    line-height: normal;
    text-transform: uppercase;
    letter-spacing: 4px;
}

.aboutcardtexts p {
    font-size: 20px;
    font-weight: 400;
    margin-top: 10px;
    font-family: "EB Garamond", serif;
}

.aboutcardtextcol {
    display: flex;
    justify-content: center;
    align-items: center;
}

.ourvaluestextspace {
    background-color: #fff4f5;
    padding-top: 50px;
    padding-bottom: 50px;
    margin-top: 20px;
}

.ourvaluestext {
    text-align: center;
}

.ourvaluestext h2 {
    font-size: 50px;
    font-weight: 600;
    line-height: normal;
}

.ourvaluestext p {
    font-size: 16px;
    font-weight: 400;
    line-height: normal;
}

.cardproductourvaluestext {
    padding: 0 20px 0 10px;
}

.cardproductourvaluestext h5 {
    font-size: 24px;
    font-weight: 300;
    line-height: normal;
}

.cardproductourvaluestext p {
    font-size: 20px;
    font-weight: 400;
    padding-top: 10px;
    color: #5D5D5D;
    font-family: "EB Garamond", serif;
}

.discovermorebtns {
    text-align: center;
    margin-top: 20px;
}

.discovermorebtns button {
    background-color: #000;
    border: none;
    border-radius: 5px;
    color: #fff;
    padding: 10px 30px;
    min-height: 45px;
    margin-right: 20px;
}

.discovermorebtns .btncommunity {
    background-color: #fff;
    border: 1px solid #000;
    border-radius: 5px;
    color: #000;
    padding: 10px 30px;
}

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

.breadcrumbs {
    font-size: 14px;
    font-weight: 400;
    line-height: normal;
    padding-top: 20px;
    padding-bottom: 20px;
    margin: 0;
}

.slider-container {
    position: relative;
    overflow: hidden;
    width: -webkit-fill-available;
    max-width: 1430px;
    border-radius: 20px;
    padding: 0;
    margin: 0 auto;
}

.slider {
    display: flex;
    transition: transform 0.5s ease-in-out;
}

.slide {
    min-width: 100%;
    display: flex;
    flex-direction: column;
    text-align: center;
}

.slide img {
    width: -webkit-fill-available;
    height: auto;
    border-bottom: 2px solid #ddd;
}

.content {
    background-color: #fff5f5;
    border: 1px solid #fafafa;
    text-align: left;
    padding: 40px 20px;
}

.content h2 {
    font-size: 27px;
    font-weight: 600;
    line-height: normal;
    color: #333;
    margin: 0;
}

.content p {
    font-size: 14px;
    font-weight: 400;
    line-height: normal;
    color: #666;
}

.learn-more {
    display: inline-block;
    color: #000000;
    margin-top: 20px;
    transition: color 0.3s;
}

.learn-more:hover {
    color: #000;
}

.prev,
.next {
    cursor: pointer;
    z-index: 10;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgb(252 215 221);
    color: #000;
    border: none;
    border-radius: 50%;
    padding: 10px 16px;
}

.prev {
    left: 10px;
}

.next {
    right: 10px;
}

.prev:hover,
.next:hover {
    background: rgba(0, 0, 0, 0.8);
    color: #fff;
}

.reviewicontextspace {
    padding-top: 20px;
}

.reviewicontext {
    display: flex;
    justify-content: left;
    align-items: center;
    margin-bottom: 20px;
    margin-left: 10px;
}

.reviewtext {
    padding-left: 10px;
}

.reviewpaddingbottomtext {
    padding-bottom: 40px;
}

.wrapper {
    width: 50%;
    height: auto;
    margin: 0 auto;
}

.faqcenter h2 {
    font-size: 27px;
    font-weight: 600;
    line-height: normal;
}

.faqcontainer {
    gap: 24px;
    background: linear-gradient(60deg, #FFFFFF 60%, #FEEAEB 60%);
    border: 1px solid #FEEAEB;
    border-radius: 16px;
    outline: none;
    color: black;
    padding: 10px;
    margin: 20px 0;
}

.question {
    position: relative;
    display: flex;
    justify-content: left;
    align-items: center;
    cursor: pointer;
    font-size: 16px;
    font-weight: 400;
    line-height: normal;
    padding: 20px;
    margin: 0;
}

.question::after {
    content: "\002B";
    font-size: 2.2rem;
    position: absolute;
    right: 20px;
    transition: 0.2s;
}

.question.active::after {
    transform: rotate(45deg);
}

.answercont {
    max-height: 0;
    overflow: hidden;
    transition: 0.3s;
}

.answer {
    padding: 0 20px 20px;
    line-height: 1.5rem;
}

.faqcenter {
    text-align: center;
}

.faqcenter p {
    padding-top: 10px;
}

.faqcenterspace {
    padding-top: 20px;
    padding-bottom: 50px;
}

.gifttext {
    padding-top: 20px;
}

.gifttext .giftheading {
    font-size: 40px;
    font-weight: 600;
    line-height: normal;
}

.gifttext .giftspan {
    font-size: 14px;
    font-weight: 400;
    line-height: normal;
    padding-left: 10px;
}

.filterspace {
    padding-top: 0;
}

.sortdropdown {
    float: right;
}

.sortdropdown select {
    position: relative;
    bottom: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #fff;
    border: 1px solid #000;
    outline: none;
    border-radius: 25px;
    color: #000;
    padding: 5px 20px;
    margin-bottom: 10px;
}

.giftpadding {
    margin-bottom: 50px;
}

.success-message {
    background-color: #28a745;
    color: white;
    padding: 10px;
    margin-top: 20px;
    border-radius: 5px;
    text-align: center;
    font-size: 16px;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.5s ease, transform 0.5s ease;
}

.success-message.show {
    opacity: 1;
    transform: translateY(0);
}

.layouttext h2 {
    font-size: 40px;
    font-weight: 400;
    line-height: normal;
    margin: 0;
}

.layoutcardtext h4 {
    font-size: 22px;
    font-weight: 600;
    line-height: normal;
    margin: 0;
    color: #1E1E1E;
}



.layouttext p {
    font-size: 20px;
    font-weight: 400;
    line-height: normal;
    margin: 0;
    font-family: "EB Garamond", serif;
    color: #5D5D5D;
}

.diveintotheworldofeverlywhitetext p {
    font-size: 20px;
    font-weight: 400;
    line-height: normal;
    margin: 0;
    margin-bottom: 40px;
    margin-top: 15px;
    font-family: "EB Garamond", serif;

}

.testimonialtext p {
    font-size: 20px;
    font-weight: 400;
    line-height: normal;
    margin: 0;
    margin-bottom: 40px;
    color: #5D5D5D;
}

@media screen and (max-width: 768px) {
    .collection-dropdown {
        padding-top: 0;
        padding-bottom: 0;
    }

    .faqcenter h2 {
        font-size: 21px;
        padding-top: 20px;
    }

    .faqcontainer {
        border-radius: 10px;
        padding: 0;
    }

    .wrapper {
        width: 87%;
    }

    .question {
        font-size: 12px;
    }

    .abouttext h2 {
        font-size: 22px;
    }

    .answer {
        font-size: 14px;
        text-align: justify;
    }

    .slider-container {
        max-width: 290px;
    }

    .content h2 {
        font-size: 18px;
    }

    .aboutcardtexts {
        padding: 20px 0;
    }

    .ourvaluestext h2 {
        font-size: 40px;
        margin: 0;
    }

    .cardproductourvaluestext {
        padding: 0;
    }

    .aboutcardtexts h2 {
        font-size: 20px;
        letter-spacing: 0;
    }

    .bestsellers p {
        line-height: 1.2rem;
        padding-top: 10px;
    }

    .aboutcardtext h2 {
        font-size: 20px;
        letter-spacing: 0;
    }

    .aboutcardtext {
        padding: 20px 0;
    }

    .reviewicontext {
        margin-left: 0;
    }

    .abouttexts p {
        font-size: 14px;
    }

    .aboutcardtext p {
        font-size: 14px;
    }

    .aboutcardsubtitle em {
        font-size: 14px;
    }

    .aboutcardimg {
        padding: 10px 0;
    }

    .abouttext p {
        font-size: 12px;
        line-height: 1.2rem;
    }

    .aboutcardtext h2 {
        font-size: 18px;
        line-height: 1.6rem;
    }

    .abouttexts {
        text-align: justify;
        padding: 50px 0;
    }

    .breadcrumb {
        padding: 0;
    }

    .footertext {
        padding: 10px 0;
    }

    .col-md-6 {
        width: 100%;
    }

    .cta-section {
        padding: 0 20px;
    }

    .footerrow {
        padding-top: 0;
    }

    .socialmedia img {
        width: 40px;
    }

    .categoryimg {
        padding: 0;
    }

    .copyright {
        text-align: left;
    }

    /* .abouttextcontainer {
        padding: 0 15px;
    } */
    .subscribetext {
        text-align: left;
        padding: 0;
    }

    input[type="email"] {
        width: 157px;
    }

    .subscribetext p {
        padding-top: 10px;
    }

    .journaltextspace form {
        text-align: left;
        padding-left: 0;
    }

    .subscribetext h2 {
        font-size: 18px;
    }

    .instagramimg {
        margin: 10px 0;
    }

    .cardproductblogimg {
        margin: 10px 0;
    }

    .cardproductblogtext {
        padding: 0 10px;
    }

    .diveintotheworldofeverlywhitetext h2 {
        font-size: 24px;
        line-height: 1.7rem;
    }

    .diveintotheworldofeverlywhitetext p {
        padding-top: 10px;
    }

    .tabs {
        width: -webkit-fill-available;
    }

    .staricon img {
        width: 15px;
    }

    .cardproducttext h4 {
        line-height: 1.4rem;
        margin: 0;
    }

    .staricon {
        padding: 0;
    }

    .cardproductblogtext p {
        font-size: 12px;
        margin-bottom: 16px;
    }

    .cardproductblogtext h5 {
        font-size: 14px;
    }

    .followusoninstagram h2 {
        font-size: 20px;
    }

    .layoutcardtext img {
        width: 50px;
        height: auto;
        padding: 0;
        margin: 0;
    }

    .bestsellerstext h4 {
        font-size: 24px;
    }

    .bestsellerstext p {
        font-size: 12px;
        line-height: 1.2rem;
    }

    .bestsellerstext {
        top: 350px;
        left: 0;
        width: -webkit-fill-available;
        background-color: #f3acb4a6;
        border-radius: 0;
    }

    .layoutcardtext {
        position: inherit;
        top: 0;
    }

    .layouttext h2 {
        font-size: 20px;
    }

    .layouttext p {
        font-size: 16px;
        padding-top: 10px;
    }

    .bestsellersimg {
        background-size: cover;
        height: 70vh;
        padding: 12px;
        margin: 20px 0;
    }

    .col-md-3 {
        width: 100%;
    }

    .col-md-4 {
        width: 100%;
    }

    .logo img {
        width: 150px;
        height: auto;
        margin: 0 auto;
    }

    .header {
        padding: 0 10px 0 10px;
    }

    .collection-section {
        width: -webkit-fill-available;
    }

    .dropdown-content {
        position: relative;
        flex-wrap: wrap;
        width: 300px;
        top: 0;
        left: 0;
    }

    .headercardproductimg img {
        width: 100px;
    }

    .headercardproductimg {
        text-align: left;
        padding: 20px 0 0 0;
    }

    .cardproducttext {
        padding: 20px 10px;
    }

    .cardproductpricebtn {
        justify-content: left;
        padding-top: 0;
    }

    .categoryimg img {
        margin: 10px 0;
    }

    .logo {
        bottom: 10px;
        left: 41%;
    }

    .icon img {
        width: 24px;
    }

    header {
        flex-direction: column;
        align-items: flex-start;
        padding-bottom: 10px;
    }

    .icon {
        font-size: 14px;
    }

    .icons {
        position: absolute;
        right: 0;
        gap: 5px;
        margin-top: 5px;
    }

    .primary-menu.active {
        display: flex !important;
        padding: 0;
        transform: translateX(0) !important;
        transition: all 0.9s ease-in-out;
    }

    .primary-menu {
        display: none;
        flex-direction: column;
        align-items: flex-start;
        width: 100%;
        height: auto;
        font-size: 14px;
        line-height: normal;
        padding-top: 20px;
        margin: 0;
    }

    .primary-menu a {
        line-height: 1.7rem;
        width: 100%;
        text-align: left;
        padding: 0;
    }

    .hamburger {
        display: block;
        font-size: 24px;
    }

    .cta-section {
        padding: 0 10px;
    }

    .cta-content h1 {
        font-size: 20px;
        line-height: 1.8rem;
        padding-bottom: 10px;
    }

    .collection-images {
        width: -webkit-fill-available;
    }

    .cta-content p {
        font-size: 14px;
        line-height: 1.4rem;
        padding-bottom: 10px;
    }

    .cta-button {
        font-size: 15px;
        padding: 10px 25px;
    }
}

@media screen and (max-width: 1024px) {
    .cta-section {
        height: 400px;
        padding: 0 20px;
    }

    .cta-button {
        font-size: 16px;
    }
}


/* single page details  css*/

.container-width {
    width: 90%;
    padding: 0;
    margin: auto;
}

.breadcrumb {
    margin: 10px 0;
}

.galleryImg {
    width: 50px;
    height: 50px;
    display: block;
    margin: 10px;
}

.product_gallery {
    position: absolute;
    left: -80px;
}

.product-slider {
    position: relative;
    width: 100%;
    margin-bottom: 20px;
}

.main-slider {
    width: 100%;
    position: relative;
    aspect-ratio: 1;
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.slide {
    position: absolute;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
    display: none;
}

.slide.active {
    opacity: 1;
    display: block;
}

.slider-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.thumbnail-nav {
    position: absolute;
    left: -105px;
    top: -10px;
    overflow: scroll;
    height: 300px;
}

.thumbnail-nav::-webkit-scrollbar {
    width: 0px;
    /* Scrollbar width */
}

.thumb {
    width: 50px;
    height: 50px;
    border-radius: 4px;
    overflow: hidden;
    cursor: pointer;
    opacity: 0.6;
    transition: opacity 0.3s ease;
    margin: 10px;
}

.thumb:hover {
    opacity: 0.8;
}

.thumb.active {
    opacity: 1;
    border: 2px solid #007bff;
}

.thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}


/* Hide scrollbar but keep functionality */

.thumbnail-nav::-webkit-scrollbar {
    height: 6px;
}

.thumbnail-nav::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 3px;
}

.thumbnail-nav::-webkit-scrollbar-thumb {
    background: #888;
    border-radius: 3px;
}

.thumbnail-nav::-webkit-scrollbar-thumb:hover {
    background: #555;
}

#product_containerbox {
    justify-content: center;
}

.gallery-item img {
    width: 100px;
    height: 100px;
}

.product-details h6 {
    font-size: 14px;
    margin: 10px 0;
    font-weight: 400;
}

.variant_name {
    margin: 10px 0;
}

button.variant-btn {
    background: #FFEBEB;
    outline: none;
    width: fit-content;
    height: 30px;
    font-size: 16px;
    color: #5E1F0D;
    text-transform: capitalize;
    border: 1px solid #5E1F0D;
    padding: 0;
    margin: 0;
}

.product_description h2 {
    margin: 20px 0;
}

.product_description p {
    font-size: 14px;
    font-weight: 400;
    line-height: 1.4rem;
    text-align: justify;

    color: gray;
    margin: 0;
}

.comments-section {
    background-color: #FFF9F5;
    padding: 60px 0;
    margin: 50px 0;
}

.comments-section .card {
    background-color: #fff;
    padding: 20px;
    border: 1px solid #80808059;
    border-radius: 10px;
    width: 48%;
    margin: 10px;
}

.comment_box {
    padding: 10px 20px 10px 25px;
}


.myaccount-sidebar li {
    list-style: none;
    margin: 10px 0;
    min-height: 40px;
    text-decoration: none;
    padding: 10px 20px;
}

.myaccount-sidebar li.active {
    background-color: #FEEAEB;
    border-left: 3px solid #F3ACB4;
}

.myaccount-sidebar li a {
    color: #000;
    text-decoration: none;
}

.myaccount-dashboard .col-md-8 {
    width: 66%;
    margin-left: 30px;
}

.myaccount-dashboard .user-icon {
    background: #8C4646;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
}

.myaccount-dashboard .user-data {
    min-width: 210px;
}

.myaccount-dashboard .name-email {
    display: flex;
    gap: 15px;
    align-items: center;
    margin-left: 15px;
}

.justify-bet {
    justify-content: space-between;
}

.logout button {
    margin-right: 20px;
    outline: none;
    border: 1px solid #000;
    padding: 10px;
    width: 100px;
    cursor: pointer;
    background: transparent;
}

.myaccount-dashboard .content {
    background: transparent;
    border: 1px solid gray;
    margin: 10px 7px;
    border-radius: 10px;
    min-height: 180px;
    display: flex;
    align-items: center;
    justify-content: center;
}

#address {
    width: 100%;
    min-height: 100px;
    padding: 10px;
    border: 1px solid #5D5D5D;
    border-radius: 5px;
    outline: none;
}

button.accountformbtn {
    background: #000;
    border: none;
    outline: none;
    color: #fff;
    min-height: 40px;
    min-width: 160px;
    border-radius: 6px;
    cursor: pointer;
}

.address-card {
    width: 100%;
    padding: 25px;
    border: 1px solid gray;
    border-radius: 10px;
}

button.wishlistBtn {
    border: none;
    position: absolute;
    right: 20px;
    top: 20px;
    z-index: 9;
    cursor: pointer;
    background-color: transparent;
}

.giftpadding .col-md-4 {
    width: 31%;
    margin-bottom: 40px;
}

.giftpadding {
    justify-content: space-between;
}

form#filterForm {
    margin: 36px 0;
}

@media screen and (max-width:767px) {
    .myaccount-dashboard {
        margin: 30px 0 !important;
        padding: 0px 0 !important;
    }

    .giftpadding .col-md-4 {
        width: 100%;
    }

    .myaccount-dashboard .col-md-8 {
        width: 100%;
        margin: 0;
    }

    .logout button {
        border: none;
        text-decoration: underline;
    }

    .dasboard-box {
        width: 100%;
    }

    ul.myaccount-sidebar {
        padding: 0;
    }

    .order-status {
        margin: 20px 0;
    }

    .myaccount-dashboard .form-input input {
        width: 100% !important;
    }

    .collection_page .collection_box {
        padding-right: 0 !important;
    }

    .overlay_box h2 {
        font-size: 27px;
    }

    .breadcrumb {
        margin-left: 20px;
    }
}

.container {
    padding-left: 120px;
    padding-right: 120px;
}

.collection_box .cardproductimg {
    padding: 0;
}

.shopbycategory .col-md-4:hover {
    border: 1px solid #000;
}

.cat-sec .categoryimg img {
    margin: 0;
}

#popupOverlay .row {
    gap: 15px;
}

#popupOverlay button.wishlistBtn {
    top: 10px;
    right: 10px;
}

.collection_page {
    width: 24%;
    margin-bottom: 40px;
}

.col-md-3:hover img,
.col-md-4:hover img {
    transform: scale(1.1);
}

.cta-content {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(2px);
    -webkit-backdrop-filter: blur(5px);
    border-radius: 16px;
    padding: 2rem;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.3);
    
}

/* div#shopbycat {
    justify-content: space-between;
} */

.glass-design {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(2px);
    -webkit-backdrop-filter: blur(12px);
     box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
}
#desktop_footer_bot{
    align-items: center;
    justify-content: space-between;
}
.banner-section h2,.video_section h2{
  font-size: 35px;
}