/* --------------------------- Import Google Fonts -------------------------- */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@100..900&family=Playfair+Display:wght@100..900&display=swap');

/* -------------------- CSS Custom Properties (Variables) ------------------- */
:root {
    --font-body: 'Montserrat', sans-serif;
    --font-heading: 'Playfair Display', serif;

    --clr-primary: #e8ca2a;
    --clr-primary-light: #e8cc2ae3;

    --clr-secondary: #9c2022;

    --clr-text-white: #ffffff;
    --clr-text-black: #000000;

    --clr-bg-white: #ffffff;
    --clr-bg-rose-white: #fff7f5;
    --clr-bg-antique-white: #f9ecd9;

    --clr-link-dark: #333;
    --clr-link-light: #ccc;
}

/* ---------------------- Basic Reset and Global Styles --------------------- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-body);
    background-color: var(--clr-bg-white);
    overflow-x: hidden;
}

img {
    -webkit-user-drag: none;
    -khtml-user-drag: none;
    -moz-user-drag: none;
    -o-user-drag: none;
    user-drag: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    pointer-events: auto;
}

.container {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

.no-scroll {
    overflow: hidden;
}

/* --------------------------------- Buttons -------------------------------- */
.primary-button {
    background-color: var(--clr-primary);
    color: var(--clr-text-black);
    text-decoration: none;
    font-weight: 700;
    font-size: 18px;
    padding: 14px 30px;
    align-self: flex-start;
    transition: background-color 0.3s ease;
    border-radius: 0px 30px 0px 30px;
    display: inline-flex;
    align-items: center;
    font-family: var(--font-heading);
    transition: transform 0.2s ease-in-out;
}

.primary-button:hover {
    background-color: var(--clr-primary-light);
    transform: scale(1.05);
}

/* --------------- Header + Hero Content + Mobile Menu Styles --------------- */
.header-hero-section {
    width: 100%;
    background-size: cover;
    background-position: center center;
    position: relative;
    display: flex;
    flex-direction: column;
}

.header-hero-section.transparent {
    background-color: var(--clr-bg-white);
}

.header-hero-section .image-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    z-index: 1;
}

.header-hero-section .container {
    position: relative;
    z-index: 1;
}

.header-hero-section .navbar {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 15px 0;
    gap: 50px;
    position: relative;
}

.header-hero-section .logo img {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 60px;
    transition: transform 0.3s ease-in-out;
}

.header-hero-section .logo img:hover {
    transform: scale(1.1);
}

@media (max-width: 768px) {
    .header-hero-section .logo img {
        height: 50px;
    }
}

.header-hero-section .nav-links {
    list-style: none;
    display: flex;
    gap: 30px;
}

.header-hero-section .nav-links a {
    color: var(--clr-text-white);
    text-decoration: none;
    text-transform: uppercase;
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 1px;
    transition: color 0.3s ease;
}

.header-hero-section.transparent .nav-links a {
    color: var(--clr-text-black);
}

.header-hero-section .nav-links a:hover,
.header-hero-section .nav-links a.active {
    color: var(--clr-primary);
    border-bottom: 2px solid var(--clr-primary);
}

.header-hero-section .hero-content {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    max-width: 800px;
    margin: 125px 0;
    color: var(--clr-text-white);
}

.header-hero-section.home-page .hero-content {
    margin: 150px 0;
}

.header-hero-section .hero-content h1 {
    font-family: var(--font-heading);
    font-size: 4rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
}

.header-hero-section .hero-content p {
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 30px;
}

.header-hero-section.home-page .hero-content p {
    max-width: 600px;
}

.header-hero-section .hamburger-menu {
    display: none;
}

.mobile-menu {
    display: none;
}

@media (max-width: 992px) {
    .header-hero-section .navbar {
        justify-content: space-between;
    }

    .header-hero-section .desktop-links {
        display: none;
    }

    .header-hero-section .hamburger-menu {
        display: flex;
        width: 30px;
        height: 30px;
        background: transparent;
        border: none;
        cursor: pointer;
        padding: 0;
        z-index: 10;
        align-items: center;
        justify-content: center;
    }

    .header-hero-section .hamburger-menu i {
        font-size: 1.5rem;
        color: var(--clr-text-white);
    }

    .header-hero-section.transparent .hamburger-menu i {
        color: var(--clr-text-black);
    }

    .mobile-menu {
        position: fixed;
        top: 0;
        left: 0;
        width: 100vw;
        height: 100vh;
        background-color: var(--clr-bg-white);
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 25px;
        padding-top: 50px;
        transform: translateX(100%);
        transition: transform 0.4s cubic-bezier(0.77, 0, 0.175, 1);
        z-index: 100;
        box-shadow: none;
    }

    .mobile-menu.is-active {
        transform: translateX(0);
    }

    .mobile-menu a {
        color: var(--clr-text-black);
        text-decoration: none;
        text-transform: uppercase;
        font-size: 1.25rem;
        font-weight: 600;
        transition: color 0.3s ease;
    }

    .mobile-menu a:hover,
    .mobile-menu a.active {
        color: var(--clr-secondary);
        border-bottom: 2px solid var(--clr-secondary);
    }

    .mobile-menu #close-menu {
        position: absolute;
        top: 15px;
        right: 10px;
        background: transparent;
        border: none;
        cursor: pointer;
        padding: 10px;
        z-index: 101;
    }

    .mobile-menu #close-menu i {
        font-size: 1.8rem;
        color: var(--clr-text-black);
    }

    .mobile-menu #close-menu i:hover {
        font-size: 1.8rem;
        color: var(--clr-secondary);
    }

    .header-hero-section .hero-content {
        text-align: center;
        max-width: 100%;
        align-items: center;
        margin: 100px 0;
    }

    .header-hero-section .hero-content h1 {
        font-size: 2.8rem;
    }

    .header-hero-section .hero-content p {
        font-size: 1rem;
    }

    .header-hero-section .primary-button {
        margin: auto;
    }
}

/* ----------------------------- Footer Section ----------------------------- */
.main-footer {
    position: relative;
    z-index: 0;
    margin-top: -10rem;
}

.wave-wrapper {
    position: relative;
    width: 100%;
    z-index: 0;
    margin-top: -5vw;
    pointer-events: none;
}

.wave-wrapper img {
    width: 100%;
    height: auto;
    display: block;
}

.footer-wrapper {
    position: relative;
    z-index: 1;
    background-color: var(--clr-secondary);
    padding-top: 40px;
}

@media (max-width: 1240px) {
    .main-footer {
        margin-top: 0rem;
    }

    .wave-wrapper {
        display: none;
    }

    .footer-wrapper {
        padding-top: 80px;
    }
}

.main-footer .footer-content {
    display: grid;
    grid-template-columns: 1.2fr 1.8fr 1.5fr 2.5fr;
    gap: 20px;
    padding-bottom: 60px;
    align-items: flex-start;
    position: relative;
    z-index: 2;
}

.main-footer .footer-col.footer-branding {
    display: block;
    justify-content: flex-start;
    align-items: flex-start;
}

.main-footer .footer-logo img {
    max-width: 150px;
    height: auto;
    filter: brightness(1.1);
    margin-left: -5px;
}

.main-footer .footer-col h3 {
    font-family: var(--font-body);
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 25px;
    text-transform: uppercase;
    color: var(--clr-primary);
    letter-spacing: 0.1em;
}

.main-footer .product-lists-wrapper {
    display: flex;
    gap: 40px;
}

.main-footer .footer-links ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.main-footer .footer-links ul li {
    margin-bottom: 8px;
}

.main-footer .footer-links ul li a {
    color: var(--clr-bg-white);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.main-footer .footer-links ul li a:hover {
    color: var(--clr-primary);
}

.main-footer .footer-contact div {
    margin-bottom: 5px;
}

.main-footer .footer-contact p {
    font-size: 0.9rem;
    line-height: 1.4;
    color: var(--clr-bg-white);
}

.main-footer .footer-contact p:nth-child(even),
.main-footer .footer-contact p:last-child a {
    color: var(--clr-bg-white);
    font-weight: 600;
    margin-bottom: 15px;
}

.main-footer .footer-contact p:nth-child(even):hover,
.main-footer .footer-contact p:last-child a:hover {
    color: var(--clr-primary);
    cursor: pointer;
}

.main-footer .footer-contact p a {
    color: var(--clr-bg-white);
    text-decoration: none;
    transition: color 0.3s ease;
}

.main-footer .footer-newsletter p {
    color: var(--clr-bg-white);
    margin-bottom: 15px;
    font-size: 0.9rem;
}

.main-footer .newsletter-form {
    display: flex;
    margin-bottom: 15px;
    gap: 15px;
}

.main-footer .newsletter-form input {
    flex-grow: 1;
    padding: 12px 15px;
    border: none;
    border-radius: 5px;
    font-size: 0.95rem;
    color: var(--clr-bg-white);
    background-color: transparent;
    border: 1px solid var(--clr-bg-white);
}

.main-footer .newsletter-form input::placeholder {
    color: var(--clr-bg-white);
}

.main-footer .newsletter-form input:focus {
    outline: none;
    border: 1px solid var(--clr-bg-white);
}

.main-footer .newsletter-form .primary-button {
    border: none;
}

.main-footer .newsletter-disclaimer {
    font-size: 0.8rem;
    line-height: 1.4;
    color: var(--clr-bg-white);
    max-width: 90%;
}

.main-footer .newsletter-disclaimer a {
    color: var(--clr-primary);
    text-decoration: underline;
}

.main-footer .footer-bottom {
    background-color: var(--clr-secondary);
    padding: 20px 0;
    margin-top: 40px;
    border-top: 1px solid var(--clr-bg-white);
}

.main-footer .footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.main-footer .footer-bottom-content .footer-legals {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.main-footer .footer-bottom-content .footer-legals p,
.main-footer .footer-bottom-content .footer-legals a {
    font-size: 0.8rem;
    margin: 0;
    color: var(--clr-bg-white);
}

.main-footer .footer-bottom-links {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.main-footer .footer-bottom-content>p {
    display: flex;
    align-items: center;
    gap: 20px;
}

.main-footer .footer-bottom-content>p a {
    color: var(--clr-bg-white);
    text-decoration: none;
    font-size: 0.8rem;
    transition: color 0.3s ease;
}

.main-footer .footer-bottom-content>p a:hover {
    color: var(--clr-primary);
}

.main-footer .footer-social {
    display: flex;
    gap: 15px;
}

.main-footer .footer-social a {
    color: var(--clr-bg-white);
    font-size: 1.2rem;
    transition: color 0.3s ease;
}

.main-footer .footer-social a:hover {
    color: var(--clr-primary);
}

@media (max-width: 1240px) {
    .main-footer .footer-content {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }

    .main-footer .footer-col.footer-branding {
        grid-column: 1 / 2;
        justify-content: flex-start;
        text-align: left;
    }

    .main-footer .footer-col.footer-links {
        grid-column: 2 / 3;
        text-align: left;
    }

    .main-footer .footer-col.footer-contact {
        grid-column: 1 / 2;
        text-align: left;
    }

    .main-footer .footer-col.footer-newsletter {
        grid-column: 2 / 3;
        text-align: left;
    }

    .main-footer .product-lists-wrapper {
        justify-content: flex-start;
    }

    .main-footer .newsletter-form {
        justify-content: flex-start;
    }
}

@media (max-width: 768px) {
    .main-footer .footer-content {
        grid-template-columns: 1fr;
        gap: 40px;
        padding-bottom: 30px;
        text-align: center;
    }

    .main-footer .footer-col.footer-branding,
    .main-footer .footer-col.footer-links,
    .main-footer .footer-col.footer-contact,
    .main-footer .footer-col.footer-newsletter {
        grid-column: 1 / -1;
        text-align: center;
    }

    .main-footer .footer-logo {
        margin: 0 auto;
    }

    .main-footer .product-lists-wrapper {
        flex-direction: column;
        justify-content: center;
        gap: 20px;
    }

    .main-footer .footer-contact p:nth-child(even),
    .main-footer .footer-contact p:last-child a {
        margin-bottom: 5px;
    }

    .main-footer .newsletter-form {
        max-width: 350px;
        margin: 0 auto 15px auto;
        flex-direction: column;
    }

    .main-footer .newsletter-form .primary-button {
        margin: auto;
    }

    .main-footer .footer-newsletter p {
        margin: auto;
        margin-bottom: 15px;
    }

    .main-footer .footer-bottom {
        margin-top: 0;
    }

    .main-footer .footer-bottom-content {
        flex-direction: column;
        gap: 20px;
        text-align: center;
        margin-top: 0;
    }

    .main-footer .footer-bottom-content .footer-legals {
        flex-direction: column;
    }

    .main-footer .footer-bottom-content>p {
        flex-direction: column;
        gap: 5px;
    }
}

/* ------------------------- About-Us Section Styles ------------------------ */
.about-us-section {
    color: var(--clr-text-black);
    padding: 100px 0;
    text-align: center;
}

.about-us-section.home-page {
    background-color: var(--clr-bg-rose-white);
}

.about-us-section.about-page {
    background-color: var(--clr-bg-white);
}

.about-us-section .container {
    max-width: 900px;
}

.about-us-section h2 {
    font-family: var(--font-heading);
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 30px;
    text-transform: uppercase;
}

.about-us-section p {
    font-family: var(--font-body);
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 30px;
    font-weight: 400;
    padding: 0 10px;
}

@media (max-width: 768px) {
    .about-us-section {
        padding: 80px 0;
    }

    .about-us-section h2 {
        font-size: 2.25rem;
    }

    .about-us-section p {
        font-size: 1rem;
    }
}

/* ------------------------- Features Section Styles ------------------------ */
.features-section {
    color: var(--clr-text-black);
    padding: 100px 0;
    text-align: center;
}

.features-section .section-title {
    font-family: var(--font-heading);
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.features-section .section-subtitle {
    font-family: var(--font-body);
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 80px;
    font-weight: 400;
}

.features-section .feature-item {
    display: flex;
    align-items: center;
    text-align: left;
    gap: 60px;
    margin-bottom: 60px;
}

.features-section .feature-item:last-of-type {
    margin-bottom: 0;
}

.features-section .feature-image {
    flex: 1;
}

.features-section .feature-image img {
    width: 100%;
    height: 600px;
    object-fit: cover;
    display: block;
    border-radius: 50px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.features-section .feature-content {
    flex: 1;
}

.features-section .feature-content h3 {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 30px;
    text-transform: uppercase;
    color: var(--clr-text-black);
}

.features-section .feature-content p {
    font-family: var(--font-body);
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 30px;
    color: var(--clr-text-black);
}

.features-section .read-more-link {
    color: var(--clr-secondary);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    display: inline-flex;
    align-items: center;
    transition: color 0.3s ease;
}

.features-section .read-more-link i {
    margin-left: 8px;
    font-size: 0.9em;
    transition: transform 0.3s ease;
    position: relative;
    top: 1.6px;
}

.features-section .read-more-link:hover i {
    transform: translateX(5px);
}

.features-section .feature-item.reverse-layout {
    flex-direction: row-reverse;
}

@media (max-width: 992px) {
    .features-section .section-subtitle {
        margin-bottom: 60px;
    }

    .features-section .feature-item {
        flex-direction: column;
        gap: 30px;
        margin-bottom: 60px;
    }

    .features-section .feature-image {
        width: 70%;
    }

    .features-section .feature-image img {
        height: 400px;
        width: 100%;
        border-radius: 25px;
    }

    .features-section .feature-item.reverse-layout {
        flex-direction: column;
    }

    .features-section .feature-content {
        text-align: center;
    }
}

@media (max-width: 768px) {
    .features-section {
        padding: 80px 0;
    }

    .features-section .section-title {
        font-size: 2.25rem;
    }

    .features-section .section-subtitle {
        font-size: 1rem;
    }

    .features-section .feature-image {
        width: 100%;
    }

    .features-section .feature-content h3 {
        font-size: 2rem;
    }

    .features-section .feature-content p {
        font-size: 1rem;
    }
}

/* ----------------------- Our Products Section Styles ---------------------- */
.our-products-section {
    background-color: var(--clr-bg-antique-white);
    color: var(--clr-text-black);
    padding: 100px 0;
    text-align: center;
}

.our-products-section .section-title {
    font-family: var(--font-heading);
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.our-products-section .section-subtitle {
    font-family: var(--font-body);
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 80px;
    font-weight: 400;
}

.our-products-section .products-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.our-products-section .product-item {
    aspect-ratio: 1 / 1;
    overflow: hidden;
    border-radius: 25px;
}

.our-products-section .product-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.3s ease;
}

.our-products-section .product-item img:hover {
    transform: scale(1.05);
}

.our-products-section .products-primary-button {
    margin-top: 80px;
}

@media (max-width: 1200px) {
    .our-products-section .products-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 992px) {
    .our-products-section .section-subtitle {
        margin-bottom: 60px;
    }

    .our-products-section .products-primary-button {
        margin-top: 60px;
    }
}

@media (max-width: 768px) {
    .our-products-section {
        padding: 80px 0;
    }

    .our-products-section .section-title {
        font-size: 2.25rem;
    }

    .our-products-section .section-subtitle {
        font-size: 1rem;
    }

    .our-products-section .products-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
}

@media (max-width: 576px) {
    .our-products-section .products-grid {
        grid-template-columns: 1fr;
        gap: 10px;
    }
}

/* --------------------- Global-Presence Section Styles --------------------- */
.global-presence-section {
    background-color: var(--clr-bg-white);
    color: var(--clr-text-black);
    padding: 100px 0;
    text-align: center;
}

.global-presence-section .section-title {
    font-family: var(--font-heading);
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.global-presence-section .section-subtitle {
    font-family: var(--font-body);
    font-size: 1.1rem;
    line-height: 1.7;
    font-weight: 400;
    max-width: 800px;
    margin: auto;
    margin-bottom: 80px;
}

.global-presence-section .map-placeholder {
    position: relative;
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    border-radius: 8px;
    overflow: hidden;
}

.global-presence-section .map-placeholder img {
    width: 100%;
    height: auto;
    display: block;
}

@media (max-width: 992px) {
    .global-presence-section .section-subtitle {
        margin-bottom: 60px;
    }
}


@media (max-width: 768px) {
    .global-presence-section {
        padding: 80px 0;
    }

    .global-presence-section .section-title {
        font-size: 2.25rem;
    }

    .global-presence-section .section-subtitle {
        font-size: 1rem;
    }
}

/* ----------------------- Core-beliefs Section Styles ---------------------- */
.core-beliefs-section {
    background-color: var(--clr-bg-antique-white);
    color: var(--clr-text-black);
    padding: 100px 0;
    text-align: center;
}

.core-beliefs-section .section-title {
    font-family: var(--font-heading);
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 80px;
    text-transform: uppercase;
}

.core-beliefs-section .beliefs-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 60px;
}

.core-beliefs-section .belief-item {
    text-align: center;
}

.core-beliefs-section .belief-icon {
    font-size: 2.5rem;
    color: var(--clr-text-black);
    margin-bottom: 25px;
    height: 50px;
}

.core-beliefs-section .belief-item h3 {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.core-beliefs-section .belief-item p {
    font-family: var(--font-body);
    font-size: 1rem;
    line-height: 1.7;
    margin: 0 auto;
}

@media (max-width: 992px) {
    .core-beliefs-section .section-title {
        margin-bottom: 60px;
    }

    .core-beliefs-section .beliefs-grid {
        grid-template-columns: 1fr;
        max-width: 450px;
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    .core-beliefs-section {
        padding: 80px 0;
    }

    .core-beliefs-section .section-title {
        font-size: 2.25rem;
    }

    .core-beliefs-section .belief-item h3 {
        font-size: 1.6rem;
    }

    .core-beliefs-section .belief-item p {
        font-size: 1rem;
    }
}

/* --------------------- What-defines-us Section Styles --------------------- */
.what-defines-us-section {
    background-color: var(--clr-bg-white);
    color: var(--clr-text-black);
    padding: 100px 0;
    text-align: left;
}

.what-defines-us-section .section-title {
    font-family: var(--font-heading);
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.what-defines-us-section .section-subtitle {
    font-family: var(--font-body);
    font-size: 1.1rem;
    line-height: 1.7;
    font-weight: 400;
    max-width: 800px;
    margin-bottom: 80px;
}

.what-defines-us-section .defines-us-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 50px;
}

.what-defines-us-section .defines-us-item {
    text-align: left;
}

.what-defines-us-section .item-image {
    margin-bottom: 30px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.what-defines-us-section .item-image img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    display: block;
    border-radius: 25px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.what-defines-us-section .defines-us-item h3 {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.what-defines-us-section .defines-us-item p {
    font-family: var(--font-body);
    font-size: 1rem;
    line-height: 1.7;
}

@media (max-width: 992px) {
    .what-defines-us-section .section-title,
    .what-defines-us-section .section-subtitle {
        text-align: center;
        margin-left: auto;
        margin-right: auto;
    }

    .what-defines-us-section .section-subtitle {
        margin-bottom: 60px;
    }

    .what-defines-us-section .defines-us-grid {
        grid-template-columns: 1fr;
    }

    .what-defines-us-section .defines-us-item {
        max-width: 100%;
        margin: 0 auto;
        text-align: center;
    }

    .what-defines-us-section .item-image {
        margin-bottom: 15px;
    }
}

@media (max-width: 768px) {
    .what-defines-us-section {
        padding: 80px 0;
    }

    .what-defines-us-section .section-title {
        font-size: 2.25rem;
    }

    .what-defines-us-section .section-subtitle {
        font-size: 1rem;
    }

    .what-defines-us-section .defines-us-item h3 {
        font-size: 1.6rem;
        margin-bottom: 15px;
    }

    .what-defines-us-section .defines-us-item p {
        font-size: 0.9rem;
    }
}

/* ------------------------- Products Section Styles ------------------------ */
.products-section {
    background-color: var(--clr-bg-white);
    color: var(--clr-text-black);
    padding: 100px 0;
    text-align: center;
}

.products-section .section-title {
    font-family: var(--font-heading);
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.products-section .section-subtitle {
    font-family: var(--font-body);
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 80px;
    font-weight: 400;
}

.products-section .products-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin: 0 auto;
    position: relative;
    z-index: 10;
}

.products-section .product-category-item {
    text-align: left;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    background-color: var(--clr-bg-rose-white);
    border: 2px solid var(--clr-bg-antique-white);
    border-radius: 20px;
    padding: 15px;
    transition: box-shadow 0.3s ease;
}

.products-section .product-category-item:hover {
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.25);
    border: 2px solid var(--clr-primary);
}

.products-section .category-image-wrapper {
    width: 100%;
    overflow: hidden;
    border-radius: 12px;
    margin-bottom: 15px;
}

.products-section .category-image-wrapper img {
    width: 100%;
    height: 100%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    display: block;
    border-radius: 8px;
    transition: transform 0.3s ease;
}

.products-section .product-category-item:hover .category-image-wrapper img {
    transform: scale(1.03);
}

.products-section .view-all-link {
    font-family: var(--font-heading);
    color: var(--clr-secondary);
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    padding: 5px 0;
    margin-left: 5px;
    transition: color 0.3s ease;
}

.products-section .view-all-link i {
    font-size: 0.8em;
    margin-left: 8px;
    transition: transform 0.3s ease;
    position: relative;
    top: 2px;
}

.products-section .view-all-link:hover i {
    transform: translateX(5px);
}

@media (max-width: 1200px) {
    .products-section .products-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 25px;
    }
}

@media (max-width: 992px) {
    .products-section .section-subtitle {
        margin-bottom: 60px;
    }

    .products-section .products-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
}

@media (max-width: 768px) {
    .products-section {
        padding: 80px 0;
    }

    .products-section .section-title {
        font-size: 2.25rem;
    }

    .products-section .section-subtitle {
        font-size: 1rem;
    }
}

@media (max-width: 576px) {
    .products-section .products-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

/* ---------------- Product List + Product Page Common Styles --------------- */
.breadcrumb {
    margin-bottom: 20px;
}

.breadcrumb i {
    margin: 0 8px;
    font-size: 0.8em;
    color: var(--clr-text-black);
}

.breadcrumb a {
    color: var(--clr-link-dark);
    text-decoration: none;
    transition: color 0.3s ease;
}

.breadcrumb a:hover {
    color: var(--clr-primary);
}

.breadcrumb span {
    color: var(--clr-text-black);
}

.breadcrumb span:last-child {
    color: var(--clr-text-black);
    font-weight: 800;
}

/* ----------------------- Product List Section Styles ---------------------- */
.product-list-section {
    color: var(--clr-text-black);
    padding: 100px 0;
    text-align: left;
}

.product-list-section .category-title {
    font-family: var(--font-heading);
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.product-list-section .category-subtitle {
    font-family: var(--font-body);
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 80px;
    font-weight: 400;
}

.product-list-section .category-products-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 50px;
    position: relative;
    z-index: 10;
}

.product-list-section .product-detail-item {
    text-align: start;
    display: flex;
    flex-direction: column;
    align-items: start;
    text-decoration: none;
}

.product-list-section .product-image-wrapper {
    width: 100%;
    margin-bottom: 15px;
    min-height: 250px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-list-section .product-image-wrapper img {
    max-width: 100%;
    max-height: 100%;
    height: auto;
    display: block;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.product-list-section .product-detail-item:hover img {
    transform: scale(1.05);
}

.product-list-section .product-name {
    font-family: var(--font-body);
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 5px;
    color: var(--clr-text-black);
}

.product-list-section .product-weight {
    font-family: var(--font-body);
    font-size: 0.95rem;
    color: var(--clr-text-black);
}

@media (max-width: 1200px) {
    .product-list-section .category-products-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
}

@media (max-width: 992px) {
    .product-list-section .category-subtitle {
        margin-bottom: 60px;
    }
}

@media (max-width: 768px) {
    .product-list-section {
        padding: 80px 0;
    }

    .product-list-section .category-title {
        font-size: 2.25rem;
    }

    .product-list-section .category-subtitle {
        font-size: 1rem;
    }

    .product-list-section .category-products-grid {
        grid-template-columns: 1fr;
        margin: 0 auto;
    }

    .product-list-section .product-name,
    .product-list-section .product-weight {
        text-align: center;
        margin-left: auto;
        margin-right: auto;

    }
}

/* ---------------------- Single Product Section Styles --------------------- */
.single-product-section {
    color: var(--clr-text-black);
    padding: 100px 0;
    text-align: left;
}

.single-product-section .product-details-content {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 60px;
    align-items: flex-start;
    position: relative;
    z-index: 10;
}

.single-product-section .product-image-gallery {
    display: flex;
    flex-direction: column;
    gap: 20px;
    position: sticky;
    top: 20px;
}

.single-product-section .main-product-image {
    border-radius: 8px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.single-product-section .main-product-image img {
    max-width: 100%;
    height: auto;
    display: block;
    object-fit: contain;
}

.single-product-section .thumbnail-images {
    display: flex;
    gap: 15px;
    justify-content: flex-start;
    flex-wrap: wrap;
    border-radius: 10px;
}

.single-product-section .thumbnail-images img {
    width: 120px;
    height: 90px;
    object-fit: contain;
    border-radius: 10px;
    cursor: pointer;
    border: 2px solid transparent;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.single-product-section .thumbnail-images img.active {
    border-color: var(--clr-secondary);
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
}

.single-product-section .product-title {
    font-family: var(--font-heading);
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.single-product-section .product-description {
    font-family: var(--font-body);
    font-size: 1.1rem;
    line-height: 1.7;
    font-weight: 400;
    max-width: 600px;
    margin-bottom: 25px;
}

.single-product-section .product-spec-accordion {
    border-top: 1px solid var(--clr-link-dark);
}

.single-product-section .accordion-item {
    border-bottom: 1px solid var(--clr-link-dark);
}

.single-product-section .accordion-header {
    font-family: var(--font-body);
    font-size: 1.15rem;
    font-weight: 700;
    padding: 25px 0;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--clr-text-black);
}

.single-product-section .accordion-header i {
    font-size: 0.8em;
    transition: transform 0.3s ease;
}

.single-product-section .accordion-header.active i {
    transform: rotate(180deg);
}

.single-product-section .accordion-content {
    max-height: 0;
    overflow: hidden;
}

.single-product-section .accordion-content.open {
    max-height: 500px;
    margin-bottom: 25px;
}

.single-product-section .accordion-content p {
    font-family: var(--font-body);
    font-size: 1rem;
    line-height: 1.6;
    color: var(--clr-text-black);
    margin-bottom: 10px;
}

.single-product-section .accordion-content p:last-child {
    margin-bottom: 0;
}

@media (max-width: 992px) {
    .single-product-section .product-details-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .single-product-section .product-image-gallery {
        position: static;
    }

}

@media (max-width: 768px) {
    .single-product-section {
        padding: 80px 0;
    }

    .single-product-section .breadcrumb {
        display: none;
    }

    .single-product-section .product-title {
        font-size: 2rem;
    }

    .single-product-section .product-description {
        font-size: 0.9rem;
    }

    .single-product-section .accordion-header {
        font-size: 1rem;
    }

    .single-product-section .accordion-content p {
        font-size: 0.9rem;
    }
}

/* ----------------------- TV Campaigns Section Styles ---------------------- */
:root {
    --slider-side-offset: 150px;
}

.tv-campaigns-section {
    background-color: var(--clr-bg-rose-white);
    padding: 100px 0;
}

.tv-campaigns-content-wrapper {
    margin: auto;
}

.tv-campaigns-section .section-title,
.tv-campaigns-section .section-subtitle {
    text-align: left;
    margin-left: var(--slider-side-offset);
    max-width: 1400px;
}

.tv-campaigns-section .section-title {
    font-family: var(--font-heading);
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.tv-campaigns-section .section-subtitle {
    font-family: var(--font-body);
    font-size: 1rem;
    line-height: 1.5;
    margin-bottom: 60px;
}

.tv-campaigns-slider {
    max-width: 100%;
    margin: 0 auto;
    padding-left: var(--slider-side-offset);
    padding-right: var(--slider-side-offset);
    overflow: hidden;
}

.tv-campaigns-content-wrapper {
    overflow: visible;
}

.swiper {
    z-index: 0;
}

.tv-campaigns-slider .swiper-wrapper {
    overflow: visible;
}

.tv-campaigns-slider .swiper-slide {
    width: 100%;
    max-width: 1400px;
}

.tv-campaigns-slider .video-slide {
    display: flex;
    justify-content: flex-start;
    align-items: center;
}

.tv-campaigns-slider .video-placeholder {
    width: 100%;
    aspect-ratio: 16/9;
    overflow: hidden;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.tv-campaigns-slider .video-placeholder img {
    width: 100%;
    height: 100%;
}

.slider-footer {
    margin: 40px 0 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-left: var(--slider-side-offset);
    padding-right: var(--slider-side-offset);
}

.custom-pagination {
    position: static !important;
    width: auto !important;
    font-size: 0;
    display: flex;
    gap: 5px;
}

.custom-pagination .swiper-pagination-bullet {
    width: 8px;
    height: 8px;
    background-color: var(--clr-link-light);
    opacity: 1;
    border-radius: 50%;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.custom-pagination .swiper-pagination-bullet-active {
    background-color: var(--clr-secondary);
    transform: scale(1.2);
}

.slider-navigation {
    display: flex;
    gap: 15px;
}

.custom-arrow {
    position: static;
    width: 40px;
    height: 40px;
    background-color: transparent;
    border: 1px solid var(--clr-text-black);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease;
    color: var(--clr-text-black);
}

.custom-arrow:hover {
    background-color: var(--clr-secondary);
    color: var(--clr-bg-white);
    border-color: var(--clr-secondary);
}

.custom-arrow::after {
    content: none !important;
}

.custom-arrow.swiper-button-disabled {
    opacity: 0.3;
    pointer-events: none;
    cursor: default;
}

@media (max-width: 1200px) {
    :root {
        --slider-side-offset: 20px;
    }
}

@media (max-width: 768px) {
    .tv-campaigns-section {
        padding: 80px 0;
    }

    .tv-campaigns-section .section-title,
    .tv-campaigns-section .section-subtitle {
        margin-left: 20px;
        margin-right: 20px;
    }

    .tv-campaigns-section .section-title {
        font-size: 2.25rem;
    }

    .tv-campaigns-section .section-subtitle {
        font-size: 1rem;
    }

    .tv-campaigns-slider .swiper-slide {
        width: 85%;
        max-width: 90%;
    }

    .slider-footer {
        padding-left: var(--slider-side-offset);
        padding-right: var(--slider-side-offset);
    }

    .tv-campaigns-slider {
        padding-left: 0;
        padding-right: 0;
    }

    .tv-campaigns-slider .swiper-slide {
        width: 100% !important;
        max-width: 100%;
    }

    .tv-campaigns-slider,
    .slider-footer {
        max-width: 100%;
        padding: 0 var(--slider-side-offset);
    }
}

/* ----------------------- Print Media Section Styles ----------------------- */
.print-media-section {
    color: var(--clr-text-black);
    padding: 100px 0;
    text-align: center;
}

.print-media-section .section-title {
    font-family: var(--font-heading);
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.print-media-section .section-subtitle {
    font-family: var(--font-body);
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 80px;
    font-weight: 400;
}

.print-media-section .media-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    position: relative;
    z-index: 10;
}

.print-media-section .media-item {
    background-color: var(--clr-bg-white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.print-media-section .media-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.print-media-section .media-item img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    aspect-ratio: 4/5.5;
}

@media (max-width: 1200px) {
    .print-media-section .media-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 25px;
    }
}

@media (max-width: 992px) {
    .print-media-section .section-subtitle {
        margin-bottom: 60px;
    }

    .print-media-section .media-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    .print-media-section {
        padding: 80px 0;
    }

    .print-media-section .section-title {
        font-size: 2.25rem;
    }

    .print-media-section .section-subtitle {
        font-size: 1rem;
    }
}

@media (max-width: 400px) {
    .print-media-section .media-grid {
        grid-template-columns: 1fr;
    }
}

/* ------------------------- Contact Section Styles ------------------------- */
.contact-section {
    background-color: var(--clr-bg-rose-white);
    padding: 100px 0;
    color: var(--clr-text-black);
}

.contact-section .section-heading {
    font-family: var(--font-heading);
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.contact-section .section-description {
    font-family: var(--font-body);
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 60px;
    font-weight: 400;
    max-width: 850px;
}

.contact-section .contact-link {
    color: var(--clr-text-black);
    text-decoration: underline;
    font-weight: 600;
}

.contact-section .contact-link:hover {
    color: var(--clr-secondary);
}

.contact-content {
    display: flex;
    justify-content: space-between;
    gap: 80px;
}

.contact-form {
    flex: 1.5;
    text-align: left;
}

.contact-form .form-group {
    margin-bottom: 30px;
}

.contact-form label {
    display: block;
    font-family: var(--font-body);
    font-size: 0.95rem;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--clr-text-black);
}

.contact-form input[type="text"],
.contact-form input[type="email"],
.contact-form textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid var(--clr-link-dark);
    border-radius: 5px;
    font-family: var(--font-body);
    font-size: 1rem;
    color: var(--clr-text-black);
    background-color: var(--clr-bg-white);
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.contact-form input[type="text"]:focus,
.contact-form input[type="email"]:focus,
.contact-form textarea:focus {
    border-color: var(--clr-secondary);
    outline: none;
}

.contact-form textarea {
    min-height: 120px;
    resize: vertical;
}

.contact-form .form-checkbox {
    display: flex;
    align-items: center;
    margin-bottom: 30px;
}

.contact-form input[type="checkbox"] {
    margin-right: 10px;
    width: 18px;
    height: 18px;
    accent-color: var(--clr-secondary);
}

.contact-form .form-checkbox label {
    margin-bottom: 0;
    font-size: 0.9rem;
    font-weight: 400;
    cursor: pointer;
}

.contact-form .primary-button {
    margin-top: 10px;
    border: none;
    cursor: pointer;
    text-transform: capitalize;
}

.contact-details {
    flex: 1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: max-content;
    gap: 40px 30px;
    padding-top: 5px;
    align-items: start;
}

.contact-details .detail-item {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
}

.contact-details .detail-icon {
    font-size: 1.5rem;
    color: var(--clr-text-black);
    margin-bottom: 10px;
    flex-shrink: 0;
    width: auto;
}

.contact-details .detail-info {
    display: flex;
    flex-direction: column;
}

.contact-details .detail-label {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 5px;
    color: var(--clr-text-black);
}

.contact-details .detail-value {
    font-family: var(--font-body);
    font-size: 0.95rem;
    color: var(--clr-text-black);
    text-decoration: underline;
    transition: color 0.3s ease;
}

.contact-details .detail-value:hover {
    color: var(--clr-secondary);
}

@media (max-width: 992px) {
    .contact-section {
        padding: 80px 0;
    }

    .contact-section .section-heading {
        font-size: 2.8rem;
    }

    .contact-section .section-description {
        margin-bottom: 50px;
        max-width: 100%;
    }

    .contact-content {
        flex-direction: column;
        gap: 50px;
    }

    .contact-form,
    .contact-details {
        max-width: 100%;
    }

    .contact-form {
        width: 100%;
        margin-right: auto;
        margin-left: auto;
    }

    .contact-details {
        width: 100%;
        grid-template-columns: 1fr 1fr 1fr 1fr;
        gap: 30px 20px;
        align-items: start;
    }

    .contact-details .detail-item {
        align-items: flex-start;
    }
}

@media (max-width: 768px) {
    .contact-section .section-heading {
        font-size: 2.25rem;
    }

    .contact-section .section-description {
        font-size: 1rem;
    }

    .contact-content {
        gap: 40px;
    }

    .contact-form label {
        font-size: 0.9rem;
    }

    .contact-form input[type="text"],
    .contact-form input[type="email"],
    .contact-form textarea {
        padding: 10px 12px;
        font-size: 0.95rem;
    }

    .contact-form textarea {
        min-height: 100px;
    }

    .contact-form .form-checkbox label {
        font-size: 0.85rem;
    }

    .contact-details {
        max-width: 100%;
        gap: 30px;
        grid-template-columns: 1fr 1fr;
        align-items: start;
    }

    .contact-details .detail-item {
        flex-basis: 100%;
        max-width: 100%;
        justify-content: flex-start;
    }

    .contact-details .detail-icon {
        font-size: 1.3rem;
        margin-right: 12px;
    }

    .contact-details .detail-label,
    .contact-details .detail-value {
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .contact-content {
        gap: 30px;
    }

    .contact-details {
        grid-template-columns: 1fr;
    }

    .contact-details .detail-item {
        align-items: center;
        text-align: center;
    }

    .contact-details .detail-icon {
        font-size: 1.2rem;
        margin-right: 0;
    }

    .contact-section .primary-button {
        width: 100%;
        font-size: 14px;
        padding: 12px 25px;
        display: flex;
        justify-content: center;
        align-items: center;
        margin: auto;
    }
}

/* -------------------------- Visit Section Styles -------------------------- */
.visit-section {
    padding: 80px 0;
    color: var(--clr-text-black);
    text-align: center;
}

.visit-section .section-heading {
    font-family: var(--font-heading);
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 10px;
    line-height: 1.2;
    text-align: center;
}

.visit-section .section-description {
    font-family: var(--font-body);
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 60px;
    text-align: center;
    color: var(--clr-text-black);
}

.location-cards-wrapper {
    display: flex;
    justify-content: center;
    gap: 40px;
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
    z-index: 10;
}

.location-card {
    flex: 1 1 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.location-card .map-placeholder {
    width: 100%;
    border-radius: 12px;
    margin-bottom: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    border-radius: 25px;
}

.location-card .map-placeholder img {
    width: 100%;
    border-radius: 25px;
}

.location-card .map-icon {
    font-size: 4rem;
    color: var(--clr-link-dark);
}

.location-card .location-title {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.location-card .location-address {
    font-family: var(--font-body);
    font-size: 1rem;
    line-height: 1.4;
    margin-bottom: 25px;
}

.location-card .get-directions-link {
    font-family: var(--font-body);
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--clr-secondary);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 5px;
    transition: color 0.3s ease;
}

.location-card .get-directions-link i {
    margin-left: 8px;
    font-size: 0.9em;
    transition: transform 0.3s ease;
    position: relative;
    top: 1.6px;
}

.location-card .get-directions-link:hover i {
    transform: translateX(5px);
}

@media (max-width: 768px) {
    .visit-section {
        padding: 80px 0;
    }

    .visit-section .section-heading {
        font-size: 2.25rem;
    }

    .visit-section .section-description {
        font-size: 1rem;
    }

    .location-cards-wrapper {
        flex-direction: column;
    }

    .location-card .location-title {
        font-size: 1.5rem;
    }

    .location-card .location-address {
        font-size: 0.9rem;
    }

    .location-card .map-placeholder {
        margin-bottom: 20px;
    }
}