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

body {
    font-family: 'Hanken Grotesk', sans-serif !important;
    background: #fff;
    color: #000;
}

h1,
h2,
h3,
h4,
h5,
a,
p,
span {
    font-family: 'Hanken Grotesk', sans-serif !important;
}

a {
    text-decoration: none;
}

.container-fluid {
    max-width: 1320px;
}

/* =========================
            TOP BAR
        ========================== */

.topbar {
    background: #efefef;
    padding: 12px 0;
    font-size: 15px;
    color: #111;
    font-weight: 500;
}

.topbar-left {
    display: flex;
    gap: 14px;
    align-items: center;
}

.topbar-right {
    text-align: right;
}

.topbar strong {
    font-weight: 800;
}

/* =========================
            HEADER
        ========================== */

.main-header {
    padding: 26px 0;
    background: #fff;
}

.logo img {
    max-width: 220px;
}

.main-menu {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 44px;
}

.main-menu a {
    color: #2d2d2d;
    font-size: 18px;
    font-weight: 500;
    position: relative;
    display: block;
    text-decoration: none;
    padding: 10px 0;
    font-family: 'Hanken Grotesk', sans-serif;
}

.main-menu a.active {
    color: #b59a3d;
    font-weight: 700;
}

.main-menu a.active::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 2px;
    background: #b59a3d;
}


.main-menu ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.main-menu>ul {
    display: flex;
    align-items: center;
    gap: 30px;
}

.main-menu li {
    position: relative;
}


/* Sub Menu */
.main-menu .sub-menu {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 220px;
    background: #fff;
    border: 1px solid #e5e5e5;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all .3s ease;
    z-index: 999;
    padding: 10px 0;
}

.main-menu .sub-menu li {
    width: 100%;
}

.main-menu .sub-menu a {
    padding: 10px 20px;
    color: #333;
    white-space: nowrap;
}

.main-menu .sub-menu a:hover {
    background: #f8f9fa;
}

/* Show submenu on hover */
.main-menu .menu-item-has-children:hover>.sub-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

/* Dropdown arrow */
.main-menu .menu-item-has-children>a::after {
    content: "\f282";
    font-family: bootstrap-icons;
    margin-left: 6px;
    font-size: 12px;
    vertical-align: middle;
}

.header-icons {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 26px;
}

.header-icons a {
    color: #222;
    font-size: 24px;
}

/* =========================
            HERO SECTION
        ========================== */

.hero-section {
    position: relative;
    overflow: hidden;
    background: #f7f7f5;
    min-height: 560px;
}

.hero-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url('../images/banner_1600x500.png') center right no-repeat;
    background-size: cover;
    opacity: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    padding: 80px 0 10px;
}

.hero-subtitle {
    font-size: 18px;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #b59a3d;
    font-weight: 600;
    margin-bottom: 20px;
}

.hero-title {
    font-size: 50px;
    line-height: 1.02;
    font-weight: 400;
    color: #000;
    margin-bottom: 18px;
    max-width: 720px;
}

.hero-title span {
    display: block;
    color: #b59a3d;
    font-weight: 700;
}

.hero-description {
    font-size: 22px;
    color: #333;
    margin-bottom: 36px;
    font-weight: 400;
}

.hero-description strong {
    font-weight: 800;
}

.hero-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 215px;
    height: 68px;
    background: #b59a3d;
    color: #fff;
    font-size: 34px;
    font-weight: 500;
    border: 10px solid #e5dcc2;
    transition: 0.3s;
}

.hero-btn:hover {
    background: #9e842f;
    color: #fff;
}

.hero-image {
    position: absolute;
    right: 0;
    bottom: 0;
    z-index: 1;
}

.hero-image img {
    width: 760px;
    max-width: 100%;
}

@media (max-width: 991px) {
    .main-menu .sub-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        display: none;
        box-shadow: none;
        border: none;
        padding-left: 15px;
    }

    .main-menu .sub-menu.show {
        display: block;
    }

    .main-menu>ul {
        flex-direction: column;
        align-items: flex-start;
        gap: 0;
    }
}

/* =========================
            SEARCH SECTION
        ========================== */

.search-section {
    background: #e8e1cf;
    padding: 26px 0;
}

.search-title {
    font-size: 24px;
    font-weight: 800;
    color: #111;
    text-transform: uppercase;
}

.custom-select {
    width: 100%;
    height: 66px;
    border: 1px solid #c7b67c;
    padding: 0 22px;
    font-size: 18px;
    color: #a48a35;
    background: #fff;
    outline: none;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20' fill='%23a48a35' viewBox='0 0 16 16'%3E%3Cpath fill-rule='evenodd' d='M1.646 5.646a.5.5 0 0 1 .708 0L8 11.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 20px center;
}

.gift-btn {
    width: 100%;
    height: 66px;
    border: none;
    background: #b59a3d;
    color: #fff;
    font-size: 18px;
    font-weight: 700;
    text-transform: uppercase;
    transition: 0.3s;
}

.gift-btn:hover {
    background: #9e842f;
}


/* =========================
            RESPONSIVE
        ========================== */

@media(max-width:1399px) {

    .hero-title {
        font-size: 56px;
    }

    .hero-image img {
        width: 650px;
    }
}

@media(max-width:1199px) {

    .main-menu {
        gap: 24px;
    }

    .hero-title {
        font-size: 48px;
    }

    .hero-image {
        position: relative;
        text-align: center;
        margin-top: 40px;
    }

    .hero-image img {
        width: 500px;
    }

    .hero-content {
        padding-bottom: 40px;
    }
}

@media(max-width:768px) {
    .hero-content {
        padding: 0 !important;
    }

    .hero-section::before {
        background-size: cover;
        opacity: 0.2;
    }

    .hero-section {
        min-height: auto;
        padding: 15px;
    }

}

@media(max-width:991px) {

    .topbar-left,
    .topbar-right {
        justify-content: center;
        text-align: center;
    }

    .topbar-right {
        margin-top: 8px;
    }

    .logo {
        text-align: center;
        margin-bottom: 25px;
    }

    .main-menu {
        flex-wrap: wrap;
        margin-bottom: 25px;
    }

    .header-icons {
        justify-content: center;
    }

    .hero-title {
        font-size: 42px;
    }

    .hero-description {
        font-size: 18px;
    }

    .search-title {
        margin-bottom: 20px;
    }

    .gift-btn {
        margin-top: 15px;
    }
}

@media(max-width:575px) {
    .hero-title {
        font-size: 20px;
    }

    .hero-btn {
        width: 190px;
        height: 62px;
        font-size: 28px;
    }

    .hero-image img {
        width: 100%;
    }

    .main-menu {
        gap: 16px;
    }

    .main-menu a {
        font-size: 16px;
    }

    .topbar-left {
        gap: 7px;
    }

}


/* =========================
    FEATURED FLOWERS SECTION
========================== */

.featured-flowers-section {
    padding: 60px 0 30px;
    background: #f5f5f5;
}

/* =========================
    TOP FLOWER CARDS
========================== */

.featured-top-row {
    margin-bottom: 70px;
}

.featured-flower-card {
    background: #ece7d8;
    border-radius: 16px;
    overflow: hidden;
    height: 100%;
    transition: 0.3s;
    border: 1px solid #e3dccb;
}

.featured-flower-card:hover {
    transform: translateY(-4px);
}

.featured-flower-image {
    height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 25px;
    background: #f1ede2;
}

.featured-flower-image img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.featured-flower-content {
    padding: 30px 25px;
    background: #ece7d8;
    text-align: center;
}

.featured-flower-content h3 {
    margin: 0;
    font-size: 28px;
    line-height: 1.25;
    color: #111;
    font-weight: 700;
    letter-spacing: 1px;
    font-family: 'Oswald', sans-serif;
}

/* =========================
    SECTION TITLE
========================== */

.section-title-wrapper {
    text-align: center;
    margin-bottom: 40px;
}

.section-title {
    font-size: 48px;
    line-height: 1.1;
    color: #b59a3d;
    font-weight: 300;
    margin: 0;
}

/* =========================
    PRODUCTS
========================== */

.trending-products-wrapper {
    position: relative;
}

.product-card {
    position: relative;
}

.product-image {
    position: relative;
    overflow: hidden;
    margin-bottom: 20px;
}

.product-image img {
    width: 100%;
    object-fit: cover;
    display: block;
}

.product-rating {
    position: absolute;
    top: 16px;
    right: 16px;
    background: #fff;
    border-radius: 40px;
    padding: 6px 14px;
    font-size: 16px;
    color: #111;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 6px;
}

.product-content h3 {
    font-size: 20px;
    line-height: 1.25;
    color: #222;
    margin-bottom: 14px;
    font-weight: 600;
}

.product-price {
    font-size: 18px;
    color: #6d6d6d;
    font-weight: 400;
}

.product-price span {
    color: #b59a3d;
    font-weight: 600;
}

/* =========================
    ARROWS
========================== */

.slider-arrow {
    position: absolute;
    top: 38%;
    transform: translateY(-50%);
    width: 70px;
    height: 54px;
    border: none;
    background: transparent;
    font-size: 42px;
    color: #222;
    z-index: 3;
    transition: 0.3s;
}

.slider-arrow:hover {
    color: #b59a3d;
}

.slider-arrow-left {
    left: -55px;
}

.slider-arrow-right {
    right: -55px;
}

/* =========================
    RESPONSIVE
========================== */

@media(max-width:1399px) {

    .section-title {
        font-size: 60px;
    }

    .product-image img {
        height: 500px;
    }
}

@media(max-width:1199px) {

    .section-title {
        font-size: 50px;
    }

    .product-image img {
        height: 420px;
    }

    .slider-arrow-left {
        left: -20px;
    }

    .slider-arrow-right {
        right: -20px;
    }
}

@media(max-width:991px) {

    .section-title {
        font-size: 42px;
    }

    .featured-flower-content h3 {
        font-size: 24px;
    }

    .product-image img {
        height: 420px;
    }

    .slider-arrow {
        display: none;
    }
}

@media(max-width:767px) {

    .featured-flower-image {
        height: 240px;
    }

    .section-title {
        font-size: 36px;
    }

    .product-image img {
        height: 380px;
    }
}

@media(max-width:575px) {

    .section-title {
        font-size: 30px;
    }

    .featured-flower-content h3 {
        font-size: 20px;
    }

    .product-content h3 {
        font-size: 18px;
    }

    .product-image img {
        height: 320px;
    }

    .about-bottom-flower,
    .about-left-image,
    .delivery-small-image {
        display: none;
    }


}

/* =========================
    CUSTOM FLOWERS SECTION
========================== */

.custom-flowers-section {
    padding: 70px 0 80px;
    background: #f6f6f6;
}

/* =========================
    HEADING
========================== */

.custom-flower-heading {
    max-width: 1220px;
    margin: 0 auto 42px;
}

.custom-flower-heading h2 {
    font-size: 48px;
    line-height: 1.08;
    font-weight: 300;
    color: #b59a3d;
    margin-bottom: 12px;
    letter-spacing: -1px;
}

.custom-flower-heading p {
    font-size: 18px;
    line-height: 1.38;
    color: #7a7a7a;
    font-weight: 400;
    margin-bottom: 8px;
    letter-spacing: 2px;
}

.custom-flower-heading a {
    color: #b59a3d;
    text-decoration: none;
    font-weight: 500;
}

/* =========================
    GRID
========================== */

.occasion-grid {
    border: 1px solid #dfdfdf;
    background: #fff;
}

.occasion-box {
    height: 200px;
    border-right: 1px solid #dfdfdf;
    border-bottom: 1px solid #dfdfdf;

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

    text-align: center;
    transition: 0.3s;
    background: #fff;
}

.occasion-box:hover {
    background: #faf8f1;
}

.occasion-box:nth-child(4n) {
    border-right: none;
}

.occasion-icon {
    height: 62px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
}

.occasion-icon img {
    max-width: 62px;
    max-height: 62px;
    object-fit: contain;
}

.occasion-box h3 {
    font-size: 25px;
    line-height: 1.2;
    font-weight: 500;
    color: #111;
    margin: 0;
    letter-spacing: -0.4px;
}

/* =========================
    RESPONSIVE
========================== */

@media(max-width:1399px) {

    .custom-flower-heading h2 {
        font-size: 60px;
    }
}

@media(max-width:1199px) {

    .custom-flower-heading h2 {
        font-size: 52px;
    }

    .occasion-box {
        height: 180px;
    }

    .occasion-box h3 {
        font-size: 22px;
    }
}

@media(max-width:991px) {

    .custom-flowers-section {
        padding: 30px 0;
    }

    .custom-flower-heading h2 {
        font-size: 42px;
    }

    .custom-flower-heading p {
        font-size: 16px;
        letter-spacing: 1px;
    }

    .occasion-box {
        height: 170px;
    }
}

@media(max-width:767px) {

    .custom-flower-heading h2 {
        font-size: 34px;
    }

    .occasion-box {
        height: 160px;
    }

    .occasion-box h3 {
        font-size: 20px;
    }
}

@media(max-width:768px) {

    .custom-flower-heading h2 {
        font-size: 30px;
        line-height: 40px;
    }

    .custom-flower-heading p {
        font-size: 15px;
        line-height: 1.6;
        letter-spacing: 0.5px;
    }

    .occasion-box {
        height: 145px;
        padding: 15px;
    }

    .occasion-icon {
        margin-bottom: 18px;
    }

    .occasion-icon img {
        max-width: 48px;
    }

    .occasion-box h3 {
        font-size: 18px;
    }
}

/* =========================
    ABOUT SECTION
========================== */

.about-florist-section {
    padding: 70px 0 90px;
    background: #f5f5f5;
    overflow: hidden;
}

/* =========================
    HEADING
========================== */

.about-heading {
    max-width: 920px;
    margin: 0 auto 55px;
}

.about-heading h2 {
    font-size: 48px;
    line-height: 1.05;
    color: #b59a3d;
    font-weight: 300;
    margin-bottom: 16px;
    letter-spacing: -1px;
}

.about-heading h2 span {
    display: block;
}

.about-heading p {
    font-size: 20px;
    line-height: 1.35;
    color: #7d7d7d;
    font-weight: 400;
    max-width: 720px;
    margin: 0 auto;
    letter-spacing: 1px;
}

/* =========================
    WRAPPER
========================== */

.about-wrapper {
    position: relative;
}

/* =========================
    LEFT IMAGE LAYOUT
========================== */

.about-image-layout {
    position: relative;
    min-height: 680px;
}

/* BOTTOM FLOWERS */
.about-bottom-flower {
    position: absolute;
    left: 90px;
    bottom: -40px;
    z-index: 1;
}

.about-bottom-flower img {
    width: 700px;
    max-width: 100%;
}

/* TOP IMAGE */
.about-top-image {
    position: absolute;
    top: 0;
    left: 300px;
    z-index: 2;
}

.about-top-image img {
    width: 290px;
    height: 430px;
    object-fit: cover;
    display: block;
}

/* LEFT IMAGE */
.about-left-image {
    position: absolute;
    left: 0;
    top: 130px;
    z-index: 3;
}

.about-left-image img {
    width: 330px;
    height: 430px;
    object-fit: cover;
    display: block;
}

/* =========================
    CONTENT BOX
========================== */

.about-content-box {
    background: #fafafa;
    padding: 34px 34px 30px;
    position: relative;
    z-index: 4;
}

.about-content-box p {
    font-size: 18px;
    line-height: 1.5;
    color: #6d6d6d;
    font-weight: 400;
    margin-bottom: 18px;
    letter-spacing: 0.2px;
}

.about-content-box p:last-child {
    margin-bottom: 0;
}

/* =========================
    RESPONSIVE
========================== */

@media(max-width:1399px) {

    .about-heading h2 {
        font-size: 64px;
    }

    .about-bottom-flower img {
        width: 620px;
    }
}

@media(max-width:1199px) {

    .about-heading h2 {
        font-size: 54px;
    }

    .about-image-layout {
        min-height: 620px;
        margin-bottom: 50px;
    }

    .about-top-image {
        left: 240px;
    }

    .about-top-image img {
        width: 260px;
        height: 390px;
    }

    .about-left-image img {
        width: 300px;
        height: 390px;
    }

    .about-bottom-flower img {
        width: 580px;
    }
}

@media(max-width:991px) {

    .about-florist-section {
        padding: 30px 0;
    }

    .about-heading {
        margin-bottom: 40px;
    }

    .about-heading h2 {
        font-size: 44px;
    }

    .about-heading p {
        font-size: 18px;
    }

    .about-image-layout {
        min-height: 560px;
    }

    .about-top-image {
        left: 190px;
    }

    .about-top-image img {
        width: 220px;
        height: 340px;
    }

    .about-left-image {
        top: 110px;
    }

    .about-left-image img {
        width: 250px;
        height: 340px;
    }

    .about-bottom-flower img {
        width: 500px;
    }

    .about-content-box {
        padding: 28px;
    }

    .about-content-box p {
        font-size: 17px;
    }
}

@media(max-width:767px) {

    .about-heading h2 {
        font-size: 36px;
    }

    .about-heading p {
        font-size: 16px;
        letter-spacing: 0.5px;
    }

    .about-image-layout {
        min-height: auto;
        display: flex;
        flex-direction: column;
        gap: 20px;
    }

    .about-top-image,
    .about-left-image,
    .about-bottom-flower {
        position: relative;
        left: auto;
        top: auto;
        bottom: auto;
    }

    .about-top-image img,
    .about-left-image img,
    .about-bottom-flower img {
        width: 100%;
        height: auto;
    }

    .about-content-box {
        padding: 24px;
    }

    .about-content-box p {
        font-size: 16px;
        line-height: 1.7;
    }
}

@media(max-width:575px) {

    .about-heading h2 {
        font-size: 30px;
        line-height: 40px;
    }

    .about-content-box {
        padding: 10px;
        background: none;
    }
}

/* =========================
    SAME DAY DELIVERY SECTION
========================== */

.same-day-delivery-section {
    padding: 80px 0 90px;
    background: #f5f5f5;
    overflow: hidden;
}

/* =========================
    LEFT SIDE
========================== */

.delivery-heading {
    margin-bottom: 55px;
    max-width: 760px;
}

.delivery-heading h2 {
    font-size: 48px;
    line-height: 1.05;
    color: #b59a3d;
    font-weight: 300;
    margin-bottom: 18px;
    letter-spacing: -1px;
}

.delivery-heading p {
    font-size: 19px;
    line-height: 1.35;
    color: #7a7a7a;
    font-weight: 400;
    max-width: 760px;
    letter-spacing: 0.5px;
}

/* LARGE IMAGE */

.delivery-large-image {
    position: relative;
}

.delivery-large-image img {
    width: 100%;
    max-width: 560px;
    height: 460px;
    object-fit: cover;
    display: block;
}

/* =========================
    RIGHT SIDE
========================== */

.delivery-small-image {
    margin-bottom: 28px;
    text-align: right;
}

.delivery-small-image img {
    width: 100%;
    max-width: 480px;
    height: 400px;
    object-fit: cover;
    display: inline-block;
}

.delivery-content {
    max-width: 620px;
}

.delivery-content p {
    font-size: 18px;
    line-height: 1.55;
    color: #6f6f6f;
    font-weight: 400;
    margin-bottom: 28px;
    letter-spacing: 0.2px;
}

.delivery-content strong {
    font-weight: 700;
    color: #555;
}

/* BUTTON */

.delivery-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    width: 220px;
    height: 66px;

    border: 1px solid #d6c8a1;
    background: #fff;

    font-size: 20px;
    font-weight: 500;
    color: #fff;

    position: relative;
    overflow: hidden;

    transition: 0.3s;
}



.delivery-btn span,
.delivery-btn {
    position: relative;
    z-index: 2;
    background: #b59a3d;
    color: #fff;
}

.delivery-btn:hover {
    color: #fff;
}

.delivery-btn:hover::before {
    background: #9e842f;
}

/* BUTTON TEXT FIX */
.delivery-btn {
    color: #fff;
}

/* =========================
    RESPONSIVE
========================== */

@media(max-width:1399px) {

    .delivery-heading h2 {
        font-size: 62px;
    }
}

@media(max-width:1199px) {

    .same-day-delivery-section {
        padding: 70px 0;
    }

    .delivery-heading h2 {
        font-size: 52px;
    }

    .delivery-large-image img {
        max-width: 100%;
        height: 420px;
    }

    .delivery-small-image img {
        max-width: 100%;
        height: 360px;
    }
}

@media(max-width:991px) {

    .delivery-heading {
        margin-bottom: 40px;
    }

    .delivery-heading h2 {
        font-size: 44px;
    }

    .delivery-heading p {
        font-size: 17px;
    }

    .delivery-large-image {
        margin-bottom: 40px;
    }

    .delivery-large-image img {
        height: 380px;
    }

    .delivery-small-image {
        text-align: left;
    }

    .delivery-small-image img {
        height: 340px;
    }

    .delivery-content p {
        font-size: 17px;
    }
}

@media(max-width:767px) {

    .same-day-delivery-section {
        padding: 30px 0;
    }

    .delivery-heading h2 {
        font-size: 36px;
    }

    .delivery-heading p {
        font-size: 16px;
    }

    .delivery-large-image img,
    .delivery-small-image img {
        height: auto;
    }

    .delivery-btn {
        width: 200px;
        height: 62px;
        font-size: 18px;
    }
}

@media(max-width:768px) {

    .delivery-heading h2 {
        font-size: 30px;
        line-height: 40px;
    }

    .custom-flowers .section-title {
        font-size: 30px;
        line-height: 40px;
    }

    .section-desc {
        margin: 0px;
    }

    .delivery-content p {
        font-size: 16px;
        line-height: 1.7;
        margin-bottom: 0px !important;
    }

    .delivery-btn {
        width: 180px;
        height: 58px;
    }
}


.custom-flowers {
    padding: 80px 0 100px;
}



.section-desc {
    max-width: 820px;
    margin: 0 auto 70px;
    text-align: center;
    color: #6e6e6e;
    font-size: 20px;
    line-height: 1.5;
}

.flower-wrapper {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
}

.flower-image {
    width: 62%;
}

.flower-image img {
    width: 100%;
    display: block;
    object-fit: cover;
}

.flower-content {
    position: absolute;
    right: 0;
    top: 35px;
    width: 55%;
    background: #fafafa;
    padding: 35px 40px;
}

.flower-content p {
    color: #707070;
    font-size: 18px;
    line-height: 1.55;
    margin-bottom: 20px;
}

.read-more {
    color: #a88b35;
    font-weight: 600;
    text-decoration: none;
}

.read-more:hover {
    color: #8f7526;
}

@media (max-width:991px) {

    .section-title {
        font-size: 30px;
        line-height: 40px;
    }

    .section-desc {
        font-size: 18px;
    }

    .flower-image,
    .flower-content {
        width: 100%;
    }

    .flower-content {
        position: relative;
        top: auto;
        right: auto;
        margin-top: 25px;
    }
}

@media (max-width:576px) {

    .custom-flowers {
        padding: 30px 0;
    }

    .section-desc {
        font-size: 16px;
    }

    .flower-content {
        padding: 25px;
    }

    .flower-content p {
        font-size: 16px;
    }
}



.why-el-paso-section {
    background: #f5f5f5;
    padding: 80px 0 100px;
    font-family: 'Poppins', sans-serif;
}

.section-heading {
    max-width: 1150px;
    margin: 0 auto 60px;
}

.section-heading h2 {
    color: #a8903b;
    font-size: 48px;
    font-weight: 400;
    line-height: 1.1;
    margin-bottom: 15px;
}

.section-heading p {
    max-width: 1050px;
    margin: 0 auto;
    color: #7c7c7c;
    font-size: 18px;
    line-height: 1.35;
    letter-spacing: 0.2px;
}

.section-heading p a {
    color: #a8903b;
    text-decoration: none;
    font-weight: 600;
}

.content-row {
    margin-top: 30px;
}

.content-box {
    background: #f8f8f8;
    padding: 65px 55px;
    height: 100%;
}

.content-box h3 {
    font-size: 40px;
    line-height: 1.08;
    font-weight: 400;
    color: #a8903b;
    margin-bottom: 25px;
    max-width: 520px;
}

.content-box p {
    font-size: 18px;
    line-height: 1.55;
    color: #707070;
    margin-bottom: 22px;
}

.custom-btn {
    display: inline-block;
    min-width: 215px;
    text-align: center;
    background: #a8903b;
    color: #fff;
    text-decoration: none;
    font-size: 18px;
    font-weight: 500;
    padding: 18px 35px;
    border: 10px solid #ececec;
    margin-top: 8px;
    transition: .3s;
}

.custom-btn:hover {
    color: #fff;
    background: #937b2d;
}

.image-box {
    height: 100%;
}

.image-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

@media (max-width:1199px) {

    .section-heading h2 {
        font-size: 52px;
    }

    .content-box h3 {
        font-size: 40px;
    }
}

@media (max-width:991px) {

    .why-el-paso-section {
        padding: 30px 0;
    }

    .section-heading h2 {
        font-size: 40px;
    }

    .content-box {
        padding: 40px 30px;
    }

    .content-box h3 {
        font-size: 30px;
    }

    .image-box {
        height: auto;
    }

    .image-box img {
        height: auto;
    }
}

@media (max-width:575px) {

    .section-heading h2 {
        font-size: 30px;
        line-height: 40px;
    }

    .section-heading p,
    .content-box p {
        font-size: 16px;
    }

    .content-box h3 {
        font-size: 30px;
        text-transform: uppercase;
        line-height: 40px;
    }

    .custom-btn {
        min-width: 180px;
        padding: 15px 25px;
    }

    .section-heading {
        margin: 0px;
    }
}

.faq-section .accordion-button:not(.collapsed) {
    background-color: #a8903bc4;
    color: #000;
}

#faqAccordion h2 a {
    font-weight: 600;
}

.accordion-body {
    padding: 20;
    text-align: left;
}

h2.accordion-header button {
    font-weight: 600;
}

.trending-products-wrapper .product-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    display: block;
}

@media(max-width:767px) {
    .menu-toggle {
        display: block;
        margin: 0 auto;
    }

    .main-menu ul li a {
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 12px 15px;
        width: 100%;
    }

    .main-menu .menu-item-has-children>a {
        padding-right: 15px !important;
    }

    .main-menu .menu-item-has-children>a::after {
        float: right;

    }



    .main-menu ul {
        display: none;
        width: 100%;
        background: #fff;
        position: absolute;
        top: 100%;
        left: 0;
        z-index: 999;
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
        padding: 10px 0;
    }

    .main-menu.active ul {
        display: block;
    }

    .main-menu ul li {
        display: block;
        position: relative;
    }

    .main-menu ul li a {
        display: block;
        padding: 12px 15px;
        position: relative;
        padding-right: 40px;
    }

    .main-menu ul ul.sub-menu {
        display: none;
        padding-left: 15px;
    }

    .main-menu .menu-item-has-children.open>ul {
        display: block;
    }

    .main-menu .menu-item-has-children.open>a::after {
        transform: translateY(-50%) rotate(180deg);
    }
}