/* Imports the fonts used on the website */
@import url("https://fonts.googleapis.com/css2?family=DM+Sans:wght@400;500;600;700&family=Playfair+Display:wght@600;700&display=swap");

/*
    MAIN WEBSITE COLOURS

    Change the colour values below to quickly customise
    the entire website.
*/
:root {
    /* Main pink colour used on buttons, titles and details */
    --primary-color: #d96c82;

    /* Darker pink used when the mouse is over buttons */
    --primary-dark: #b94c64;

    /* Orange/gold colour used for small decorative details */
    --secondary-color: #f3b56a;

    /* Cream background colour used in the hero section */
    --cream-color: #fff7ed;

    /* Light pink background used in the about section */
    --light-pink: #fce8ec;

    /* Brown colour used in headings */
    --brown-color: #56372d;

    /* Main paragraph text colour */
    --text-color: #705c54;

    /* Main white colour */
    --white-color: #ffffff;

    /* Dark footer background colour */
    --dark-color: #2e201b;

    /* Light border colour used on cards */
    --border-color: #eadbd3;

    /* Main shadow used around cards and images */
    --shadow: 0 18px 45px rgba(86, 55, 45, 0.12);
}

/* Removes default spacing from all elements */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

/* Makes scrolling between sections smooth */
html {
    scroll-behavior: smooth;
}

/* General website styles */
body {
    /* Change the main paragraph font here */
    font-family: "DM Sans", sans-serif;

    /* Changes the default text colour */
    color: var(--text-color);

    /* Changes the main website background colour */
    background-color: var(--white-color);

    line-height: 1.7;
}

/* Prevents images from exceeding their containers */
img {
    display: block;
    max-width: 100%;
}

/* Removes the underline from links */
a {
    text-decoration: none;
}

/*
    Applies the decorative font to headings,
    the logo and the footer logo.
*/
h1,
h2,
h3,
.navbar-brand,
.footer-logo {
    font-family: "Playfair Display", serif;
    color: var(--brown-color);
}

/* Keyboard focus styles */
a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
    outline: 3px solid rgba(217, 108, 130, 0.45);
    outline-offset: 3px;
}

/* NAVIGATION BAR */

.navbar {
    /* Changes the vertical size of the navigation bar */
    padding: 18px 0;

    /*
        Changes the navigation bar background.
        The last number controls transparency.
    */
    background-color: rgba(255, 255, 255, 0.94);

    /* Changes the line below the navigation bar */
    border-bottom: 1px solid rgba(234, 219, 211, 0.65);

    /* Creates the blurred glass effect */
    backdrop-filter: blur(16px);

    transition:
        padding 0.3s ease,
        box-shadow 0.3s ease;
}

/* Style applied after scrolling down the page */
.navbar.navbar-scrolled {
    /* Makes the navigation bar smaller while scrolling */
    padding: 11px 0;

    /* Adds a shadow below the navigation bar */
    box-shadow: 0 8px 30px rgba(86, 55, 45, 0.1);
}

/* Website name or logo text */
.navbar-brand {
    /* Change the logo text size here */
    font-size: 1.8rem;

    font-weight: 700;

    /* Change the logo text colour here */
    color: var(--primary-color);

    display: inline-flex;
    align-items: center;
    gap: 10px;
}

/* Logo colour when the mouse is over it */
.navbar-brand:hover {
    color: var(--primary-dark);
}

/* Logo displayed beside the website name */
.navbar-logo {
    display: block;
    width: 40px;
    height: 40px;
    flex-shrink: 0;
    object-fit: contain;
}

/* Website name beside the logo */
.navbar-brand span {
    line-height: 1;
}

/* Navigation links */
.nav-link {
    margin: 0 6px;

    /* Change the menu link colour here */
    color: var(--brown-color);

    font-weight: 600;
    transition: color 0.3s ease;
}

/* Active menu link and hover colour */
.nav-link:hover,
.nav-link.active {
    /* Change the selected menu link colour here */
    color: var(--primary-color);
}

@media (max-width: 575.98px) {
    .navbar-logo {
        width: 20px;
        height: 20px;
    }

    .navbar-brand {
        gap: 8px;
    }

    .navbar-brand span {
        font-size: 1.25rem;
    }
}

/* Order button in the navigation bar */
.btn-order {
    padding: 11px 24px;

    /* Change the order button text colour here */
    color: var(--white-color);

    /* Change the order button background colour here */
    background-color: var(--primary-color);

    /* Increase this value to make the button more rounded */
    border-radius: 999px;

    font-weight: 700;
}

/* Order button when the mouse is over it */
.btn-order:hover {
    color: var(--white-color);

    /* Change the order button hover colour here */
    background-color: var(--primary-dark);
}

/* HERO SECTION */

.hero {
    overflow: hidden;

    /* Creates space for the fixed navigation bar */
    padding-top: 80px;

    /*
        Hero background.
        Change the two rgba colours to customise
        the decorative background circles.
    */
    background:
        radial-gradient(
            circle at 10% 20%,
            rgba(243, 181, 106, 0.2),
            transparent 30%
        ),
        radial-gradient(
            circle at 90% 40%,
            rgba(217, 108, 130, 0.18),
            transparent 32%
        ),
        var(--cream-color);
}

/* Small labels above section headings */
.hero-label,
.section-label,
.section-heading > span {
    display: inline-block;
    margin-bottom: 16px;

    /* Change the small label colour here */
    color: var(--primary-color);

    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
}

/* Main hero heading */
.hero h1 {
    max-width: 650px;
    margin-bottom: 24px;

    /*
        Change the main heading size here.
        The clamp function keeps it responsive.
    */
    font-size: clamp(3rem, 7vw, 5.7rem);

    line-height: 1.02;
}

/* Highlighted part of the main heading */
.hero h1 span {
    /* Change the highlighted heading colour here */
    color: var(--primary-color);
}

/* Main hero paragraph */
.hero-content > p {
    max-width: 610px;
    margin-bottom: 32px;

    /* Change the hero paragraph size here */
    font-size: 1.12rem;
}

/* Container for the two hero buttons */
.hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
}

/* General styles shared by the main buttons */
.btn-primary-custom,
.btn-outline-custom,
.btn-light-custom {
    /* Change the button size here */
    padding: 13px 28px;

    /* Makes the buttons completely rounded */
    border-radius: 999px;

    font-weight: 700;

    transition:
        transform 0.3s ease,
        background-color 0.3s ease,
        color 0.3s ease;
}

/* Main pink button */
.btn-primary-custom {
    /* Change the button text colour here */
    color: var(--white-color);

    /* Change the button background colour here */
    background-color: var(--primary-color);
}

/* Main pink button hover effect */
.btn-primary-custom:hover {
    color: var(--white-color);

    /* Change the hover colour here */
    background-color: var(--primary-dark);

    /* Moves the button slightly upwards */
    transform: translateY(-3px);
}

/* Transparent outline button */
.btn-outline-custom {
    /* Change the outline button text colour here */
    color: var(--brown-color);

    /* Change the outline colour and thickness here */
    border: 2px solid var(--brown-color);
}

/* Outline button hover effect */
.btn-outline-custom:hover {
    color: var(--white-color);

    /* Change the hover background colour here */
    background-color: var(--brown-color);

    transform: translateY(-3px);
}

/* Container for small hero information */
.hero-info {
    display: flex;
    flex-wrap: wrap;
    gap: 22px;
    margin-top: 35px;
}

/* Each small information item */
.hero-info div {
    display: flex;
    align-items: center;
    gap: 8px;

    /* Change the small information text colour here */
    color: var(--brown-color);

    font-size: 0.92rem;
    font-weight: 600;
}

/* Small hero icons */
.hero-info i {
    /* Change the icon colour here */
    color: var(--primary-color);
}

/* Container around the hero image */
.hero-image-wrapper {
    position: relative;

    /* Change the maximum image width here */
    max-width: 520px;

    margin: 60px auto;
}

/* Main hero image */
.hero-image {
    width: 100%;

    /* Change the hero image height here */
    height: 600px;

    /* Crops the image without stretching it */
    object-fit: cover;

    /* Change the white frame thickness here */
    border: 14px solid rgba(255, 255, 255, 0.85);

    /*
        Change the image shape here.
        Use 30px for a normal rounded rectangle.
    */
    border-radius: 48% 48% 24% 24%;

    box-shadow: var(--shadow);
}

/* Circular badge over the hero image */
.hero-badge {
    position: absolute;
    right: -20px;
    bottom: 70px;

    display: flex;

    /* Change the badge size here */
    width: 120px;
    height: 120px;

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

    /* Change the badge text colour here */
    color: var(--white-color);

    /* Change the badge background colour here */
    background-color: var(--primary-color);

    /* Change the badge border colour here */
    border: 8px solid var(--cream-color);

    border-radius: 50%;
    transform: rotate(8deg);
}

/* Main badge word */
.hero-badge strong {
    font-size: 1.25rem;
}

/* Smaller badge text */
.hero-badge span {
    font-size: 0.8rem;
}

/* SECTION HEADINGS */

.section-heading {
    max-width: 700px;
    margin: 0 auto 50px;
    text-align: center;
}

/* Main section titles */
.section-heading h2,
.about-content h2,
.order-box h2 {
    margin-bottom: 18px;

    /* Change the section heading size here */
    font-size: clamp(2.1rem, 5vw, 3.4rem);
}

/* Paragraph below the category section heading */
.section-heading p {
    max-width: 590px;
    margin: auto;
}

/* CATEGORIES SECTION */

.categories-section {
    /* Change the vertical spacing of this section here */
    padding: 110px 0;
}

/* Individual category card */
.category-card {
    height: 100%;
    overflow: hidden;

    /* Change the card background colour here */
    background-color: var(--white-color);

    /* Change the card border here */
    border: 1px solid var(--border-color);

    /* Change how rounded the card corners are */
    border-radius: 24px;

    box-shadow: 0 10px 30px rgba(86, 55, 45, 0.06);

    transition:
        transform 0.35s ease,
        box-shadow 0.35s ease;
}

/* Card effect when the mouse is over it */
.category-card:hover {
    /* Moves the card upwards */
    transform: translateY(-10px);

    box-shadow: var(--shadow);
}

/* Image area inside a category card */
.category-image {
    /* Change the category image height here */
    height: 260px;

    overflow: hidden;
}

/* Category image */
.category-image img {
    width: 100%;
    height: 100%;

    /* Prevents the image from being stretched */
    object-fit: cover;

    transition: transform 0.5s ease;
}

/* Zooms the image when the card is hovered */
.category-card:hover .category-image img {
    transform: scale(1.07);
}

/* Text area inside the category card */
.category-content {
    /* Change the card internal spacing here */
    padding: 26px;
}

/* Category title */
.category-content h3 {
    margin-bottom: 12px;

    /* Change the category title size here */
    font-size: 1.65rem;
}

/* Category description */
.category-content p {
    margin-bottom: 18px;
    font-size: 0.95rem;
}

/* Category link */
.category-content a {
    display: inline-flex;
    align-items: center;
    gap: 9px;

    /* Change the category link colour here */
    color: var(--primary-color);

    font-weight: 700;
}

/* Category arrow animation */
.category-content a i {
    transition: transform 0.3s ease;
}

/* Moves the arrow to the right on hover */
.category-content a:hover i {
    transform: translateX(5px);
}

/* ABOUT SECTION */

.about-preview {
    /* Change the section spacing here */
    padding: 110px 0;

    /* Change the about section background colour here */
    background-color: var(--light-pink);
}

/* Container around the about image */
.about-image {
    overflow: hidden;

    /* Change the image corner roundness here */
    border-radius: 35px;

    box-shadow: var(--shadow);
}

/* About section image */
.about-image img {
    width: 100%;

    /* Change the about image height here */
    height: 590px;

    object-fit: cover;
}

/* About text container */
.about-content {
    max-width: 570px;
}

/* About section paragraphs */
.about-content p {
    margin-bottom: 20px;
}

/* ORDER SECTION */

.order-section {
    /* Change the order section spacing here */
    padding: 100px 0;
}

/* Large coloured order box */
.order-box {
    display: flex;

    /* Change the minimum box height here */
    min-height: 310px;

    /* Change the internal spacing here */
    padding: 60px;

    align-items: center;
    justify-content: space-between;
    gap: 35px;

    /* Change the text colour inside the box here */
    color: var(--white-color);

    /*
        Change the two colours below to alter
        the order box gradient.
    */
    background:
        linear-gradient(
            135deg,
            rgba(217, 108, 130, 0.97),
            rgba(185, 76, 100, 0.97)
        );

    /* Change the corner roundness here */
    border-radius: 32px;

    box-shadow: var(--shadow);
}

/* Small text above the order heading */
.order-box span {
    display: block;
    margin-bottom: 10px;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
}

/* Order box heading */
.order-box h2 {
    color: var(--white-color);
}

/* Order box paragraph */
.order-box p {
    margin: 0;
}

/* White button inside the order box */
.btn-light-custom {
    flex-shrink: 0;

    /* Change the button text colour here */
    color: var(--primary-dark);

    /* Change the button background colour here */
    background-color: var(--white-color);
}

/* White button hover effect */
.btn-light-custom:hover {
    color: var(--brown-color);

    /* Change the button hover background here */
    background-color: var(--cream-color);

    transform: translateY(-3px);
}

/* FOOTER */

.footer {
    /* Change the footer spacing here */
    padding: 80px 0 25px;

    /* Change the footer text colour here */
    color: rgba(255, 255, 255, 0.72);

    /* Change the footer background colour here */
    background-color: var(--dark-color);
}

/* Simple footer used on checkout result pages */
.footer-simple-brand {
    display: flex;
    padding-top: 40px;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.footer-simple-brand .footer-brand-image {
    margin-bottom: 12px;
}

/* FOOTER BRAND LOGO */

/* Logo displayed above the Sweet Avenue name */
.footer-brand-image {
    display: block;
    width: 52px;
    height: 52px;

    margin-bottom: 16px;
    object-fit: contain;
}

/* Keeps the footer brand content aligned */
.footer .col-lg-5 {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

/* Footer logo */
.footer-logo {
    margin-bottom: 18px;

    /* Change the footer logo colour here */
    color: var(--white-color);
}

/* Footer description */
.footer p {
    max-width: 470px;
}

/* Footer column titles */
.footer h3 {
    margin-bottom: 18px;

    /* Change the footer title colour here */
    color: var(--white-color);

    font-family: "DM Sans", sans-serif;
    font-size: 1rem;
}

/* Removes bullets from footer lists */
.footer ul {
    padding: 0;
    list-style: none;
}

/* Adds space between footer links */
.footer li {
    margin-bottom: 10px;
}

/* Footer links */
.footer a {
    /* Change the footer link colour here */
    color: rgba(255, 255, 255, 0.7);

    transition: color 0.3s ease;
}

/* Footer link hover colour */
.footer a:hover {
    color: var(--secondary-color);
}

/* Social icon container */
.social-links {
    display: flex;
    gap: 12px;
}

/* Individual social media button */
.social-links a {
    display: grid;

    /* Change the social button size here */
    width: 44px;
    height: 44px;

    place-items: center;

    /* Change the social icon colour here */
    color: var(--white-color);

    /* Change the social button background here */
    background-color: rgba(255, 255, 255, 0.1);

    border-radius: 50%;
}

/* Social media button hover effect */
.social-links a:hover {
    color: var(--white-color);

    /* Change the social media hover colour here */
    background-color: var(--primary-color);
}

/* Bottom copyright area */
.footer-bottom {
    margin-top: 55px;
    padding-top: 24px;

    /* Change the line above the copyright here */
    border-top: 1px solid rgba(255, 255, 255, 0.12);

    text-align: center;
}

/* Copyright paragraph */
.footer-bottom p {
    max-width: none;
    margin: 0;
    font-size: 0.88rem;
}

/* TABLET AND SMALL COMPUTER SCREENS */

@media (max-width: 991.98px) {
    /* Mobile navigation menu box */
    .navbar-collapse {
        margin-top: 14px;
        padding: 20px;

        /* Change the mobile menu background here */
        background-color: var(--white-color);

        border-radius: 18px;
        box-shadow: var(--shadow);
    }

    /* Adds spacing between mobile menu links */
    .nav-link {
        margin: 4px 0;
    }

    /* Positions the mobile order button */
    .btn-order {
        display: inline-block;
        margin-top: 10px;
    }

    /* Centres the hero text on smaller screens */
    .hero-content {
        padding-top: 100px;
        text-align: center;
    }

    .hero-content > p {
        margin-right: auto;
        margin-left: auto;
    }

    .hero-buttons,
    .hero-info {
        justify-content: center;
    }

    /* Reduces the hero image height on tablets */
    .hero-image {
        height: 500px;
    }

    .about-content {
        max-width: none;
    }

    /* Places the order button below the text */
    .order-box {
        flex-direction: column;
        align-items: flex-start;
    }
}

/* MOBILE PHONE SCREENS */

@media (max-width: 575.98px) {
    /* Reduces the main heading size on phones */
    .hero h1 {
        font-size: 3rem;
    }

    /* Reduces the hero image size on phones */
    .hero-image {
        height: 410px;
        border-width: 9px;
    }

    /* Reduces the hero badge size on phones */
    .hero-badge {
        right: -5px;
        bottom: 35px;
        width: 100px;
        height: 100px;
    }

    /* Reduces the space between website sections */
    .categories-section,
    .about-preview,
    .order-section {
        padding: 75px 0;
    }

    /* Reduces the about image height */
    .about-image img {
        height: 430px;
    }

    /* Reduces the order box internal spacing */
    .order-box {
        padding: 38px 28px;
    }

    /* Makes the hero buttons occupy the full width */
    .hero-buttons .btn {
        width: 100%;
    }
}

@media (max-width: 991.98px) {
    .footer .col-lg-5 {
        align-items: center;
        text-align: center;
    }

    .footer-brand-image {
        margin-right: auto;
        margin-left: auto;
    }
}

/* MENU PAGE */

/* Top section of the menu page */
.menu-hero {
    /* Creates space below the fixed navigation bar */
    padding: 180px 0 100px;

    /*
        Change the menu page background here.
        The first colours create the decorative circles.
    */
    background:
        radial-gradient(
            circle at 15% 20%,
            rgba(243, 181, 106, 0.22),
            transparent 28%
        ),
        radial-gradient(
            circle at 85% 45%,
            rgba(217, 108, 130, 0.2),
            transparent 30%
        ),
        var(--cream-color);

    text-align: center;
}

/* Centres the menu introduction */
.menu-hero-content {
    max-width: 760px;
    margin: auto;
}

/* Main menu page heading */
.menu-hero h1 {
    margin-bottom: 22px;

    /* Change the menu heading size here */
    font-size: clamp(3rem, 7vw, 5rem);
}

/* Menu introduction paragraph */
.menu-hero p {
    max-width: 650px;
    margin: auto;
    font-size: 1.08rem;
}

/* Main products area */
.menu-section {
    /* Change the spacing around the menu products here */
    padding: 100px 0;

    /* Change the products section background here */
    background-color: #fffdfb;
}

/* Contains the search field and category buttons */
.menu-toolbar {
    display: flex;
    margin-bottom: 55px;
    align-items: center;
    justify-content: space-between;
    gap: 25px;
}

/* Search box */
.menu-search {
    position: relative;
    width: 100%;
    max-width: 350px;
}

/* Search icon */
.menu-search i {
    position: absolute;
    top: 50%;
    left: 20px;

    /* Change the search icon colour here */
    color: var(--primary-color);

    transform: translateY(-50%);
}

/* Search input */
.menu-search input {
    width: 100%;
    padding: 14px 20px 14px 50px;

    /* Change the search box background here */
    background-color: var(--white-color);

    /* Change the search box border here */
    border: 1px solid var(--border-color);

    border-radius: 999px;
    color: var(--brown-color);
    outline: none;

    transition:
        border-color 0.3s ease,
        box-shadow 0.3s ease;
}

/* Search box when selected */
.menu-search input:focus {
    /* Change the selected search box border here */
    border-color: var(--primary-color);

    box-shadow: 0 0 0 4px rgba(217, 108, 130, 0.12);
}

/* Contains the filter buttons */
.menu-filters {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 10px;
}

/* Individual category filter button */
.filter-button {
    padding: 10px 20px;

    /* Change the filter button text colour here */
    color: var(--brown-color);

    /* Change the filter button background here */
    background-color: var(--white-color);

    /* Change the filter button border here */
    border: 1px solid var(--border-color);

    border-radius: 999px;
    font-weight: 700;

    transition:
        color 0.3s ease,
        background-color 0.3s ease,
        border-color 0.3s ease,
        transform 0.3s ease;
}

/* Filter button hover effect */
.filter-button:hover {
    color: var(--primary-color);
    border-color: var(--primary-color);
    transform: translateY(-2px);
}

/* Selected category button */
.filter-button.active {
    /* Change the active filter text colour here */
    color: var(--white-color);

    /* Change the active filter background here */
    background-color: var(--primary-color);

    border-color: var(--primary-color);
}

/* Individual product card */
.product-card {
    height: 100%;
    overflow: hidden;

    /* Change the product card background here */
    background-color: var(--white-color);

    /* Change the product card border here */
    border: 1px solid var(--border-color);

    /* Change how rounded the product cards are */
    border-radius: 26px;

    box-shadow: 0 10px 32px rgba(86, 55, 45, 0.07);

    transition:
        transform 0.35s ease,
        box-shadow 0.35s ease;
}

/* Product card hover effect */
.product-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow);
}

/* Product image container */
.product-image {
    position: relative;

    /* Change the product image height here */
    height: 290px;

    overflow: hidden;
}

/* Product image */
.product-image img {
    width: 100%;
    height: 100%;

    /* Prevents images from being stretched */
    object-fit: cover;

    transition: transform 0.5s ease;
}

/* Product image zoom effect */
.product-card:hover .product-image img {
    transform: scale(1.06);
}

/* Small label over selected products */
.product-badge {
    position: absolute;
    top: 18px;
    left: 18px;

    padding: 7px 14px;

    /* Change the badge text colour here */
    color: var(--white-color);

    /* Change the badge background colour here */
    background-color: var(--primary-color);

    border-radius: 999px;
    font-size: 0.78rem;
    font-weight: 700;
    text-transform: uppercase;
}

/* Product text container */
.product-content {
    /* Change the internal product card spacing here */
    padding: 27px;
}

/* Contains the product name and price */
.product-heading {
    display: flex;
    margin-bottom: 14px;
    align-items: flex-start;
    justify-content: space-between;
    gap: 18px;
}

/* Product name */
.product-heading h2 {
    margin: 0;

    /* Change the product name size here */
    font-size: 1.5rem;
}

/* Product price */
.product-price {
    flex-shrink: 0;

    /* Change the product price colour here */
    color: var(--primary-color);

    font-size: 1.15rem;
    font-weight: 700;
}

/* Product description */
.product-content > p {
    min-height: 82px;
    margin-bottom: 22px;
    font-size: 0.95rem;
}

/* Bottom area of the product card */
.product-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
}

/* Small product category text */
.product-category {
    /* Change the product category colour here */
    color: var(--brown-color);

    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
}

/* Add to cart button */
.add-cart-button {
    display: inline-flex;
    padding: 10px 16px;
    align-items: center;
    gap: 7px;

    /* Change the button text colour here */
    color: var(--white-color);

    /* Change the button background colour here */
    background-color: var(--primary-color);

    border: none;
    border-radius: 999px;
    font-size: 0.88rem;
    font-weight: 700;

    transition:
        background-color 0.3s ease,
        transform 0.3s ease;
}

/* Add to cart button hover effect */
.add-cart-button:hover {
    /* Change the button hover colour here */
    background-color: var(--primary-dark);

    transform: translateY(-2px);
}

/* Navigation cart button */
.cart-button {
    display: inline-flex;
    padding: 10px 18px;
    align-items: center;
    gap: 8px;

    /* Change the cart button colour here */
    color: var(--white-color);

    /* Change the cart button background here */
    background-color: var(--primary-color);

    border-radius: 999px;
    font-weight: 700;
}

/* Cart button hover effect */
.cart-button:hover {
    color: var(--white-color);
    background-color: var(--primary-dark);
}

/* Small quantity circle inside the cart button */
.cart-count {
    display: grid;
    width: 23px;
    height: 23px;
    place-items: center;

    /* Change the quantity circle colour here */
    color: var(--primary-dark);

    /* Change the quantity circle background here */
    background-color: var(--white-color);

    border-radius: 50%;
    font-size: 0.75rem;
}

/* Message displayed when no product matches */
.no-products-message {
    display: none;
    padding: 80px 20px;
    text-align: center;
}

/* Large search icon in the no-results message */
.no-products-message i {
    display: block;
    margin-bottom: 20px;

    /* Change the no-results icon colour here */
    color: var(--primary-color);

    font-size: 3rem;
}

/* No-results heading */
.no-products-message h2 {
    margin-bottom: 10px;
}

/* SHOPPING CART */

/* Changes the width of the side shopping cart */
.shopping-cart {
    width: min(430px, 100%);
}

/* Shopping cart header */
.shopping-cart .offcanvas-header {
    padding: 28px;
    border-bottom: 1px solid var(--border-color);
}

/* Small text above the cart heading */
.cart-small-title {
    display: block;
    margin-bottom: 4px;
    color: var(--primary-color);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
}

/* Shopping cart title */
.shopping-cart .offcanvas-title {
    color: var(--brown-color);
    font-family: "Playfair Display", serif;
}

/* Main shopping cart body */
.shopping-cart .offcanvas-body {
    padding: 25px 28px;
}

/* Empty cart message */
.empty-cart-message {
    padding: 80px 15px;
    text-align: center;
}

/* Empty cart icon */
.empty-cart-message i {
    display: block;
    margin-bottom: 20px;
    color: var(--primary-color);
    font-size: 3rem;
}

/* Empty cart heading */
.empty-cart-message h3 {
    margin-bottom: 10px;
}

/* Individual cart product */
.cart-item {
    display: flex;
    padding: 18px 0;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
    border-bottom: 1px solid var(--border-color);
}

/* Cart product name */
.cart-item h3 {
    margin-bottom: 4px;
    font-family: "DM Sans", sans-serif;
    font-size: 1rem;
}

/* Cart product price */
.cart-item p {
    margin: 0;
    color: var(--primary-color);
    font-weight: 700;
}

/* Cart product quantity controls */
.cart-item-controls {
    display: flex;
    align-items: center;
    gap: 8px;
}

/* Plus and minus quantity buttons */
.quantity-button {
    display: grid;
    width: 32px;
    height: 32px;
    place-items: center;
    color: var(--brown-color);
    background-color: var(--cream-color);
    border: none;
    border-radius: 50%;
}

/* Remove product button */
.remove-item-button {
    color: var(--primary-dark);
    background: none;
    border: none;
    font-size: 1.1rem;
}

/* Bottom shopping cart summary */
.cart-summary {
    padding: 25px 28px;
    border-top: 1px solid var(--border-color);
}

/* Contains the total text and value */
.cart-total-row {
    display: flex;
    margin-bottom: 20px;
    align-items: center;
    justify-content: space-between;
    color: var(--brown-color);
    font-size: 1.15rem;
}

/* Total price */
.cart-total-row strong {
    color: var(--primary-color);
    font-size: 1.3rem;
}

/* Checkout button */
.checkout-button {
    width: 100%;
    padding: 14px;

    /* Change the checkout button text colour here */
    color: var(--white-color);

    /* Change the checkout button background here */
    background-color: var(--primary-color);

    border: none;
    border-radius: 999px;
    font-weight: 700;
}

/* Checkout button hover effect */
.checkout-button:hover {
    background-color: var(--primary-dark);
}

/* Clear cart button */
.clear-cart-button {
    width: 100%;
    margin-top: 10px;
    padding: 11px;
    color: var(--brown-color);
    background: none;
    border: none;
    font-weight: 700;
}

/* Hide products that do not match the selected filter */
.product-item.product-hidden {
    display: none;
}

/* MENU PAGE RESPONSIVENESS */

@media (max-width: 991.98px) {
    /* Places the search box above the filter buttons */
    .menu-toolbar {
        flex-direction: column;
        align-items: stretch;
    }

    .menu-search {
        max-width: none;
    }

    .menu-filters {
        justify-content: flex-start;
    }

    /* Adds spacing to the cart button in the mobile menu */
    .cart-button {
        margin-top: 10px;
    }
}

@media (max-width: 575.98px) {
    /* Reduces menu page top spacing on phones */
    .menu-hero {
        padding: 150px 0 75px;
    }

    /* Reduces products section spacing on phones */
    .menu-section {
        padding: 75px 0;
    }

    /* Makes filter buttons easier to use on phones */
    .menu-filters {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
    }

    .filter-button:first-child {
        grid-column: 1 / -1;
    }

    /* Reduces product image height */
    .product-image {
        height: 250px;
    }

    /* Places product category above the button */
    .product-footer {
        flex-direction: column;
        align-items: stretch;
    }

    .add-cart-button {
        justify-content: center;
    }
}

/* CUSTOM DESSERT BUILDER */

/* Hides dynamic builder areas until a dessert type is selected */
[hidden] {
    display: none !important;
}

/* Main builder section */
.dessert-builder {
    margin-bottom: 100px;
}

/* Builder introduction */
.builder-heading {
    max-width: 700px;
    margin: 0 auto 45px;
    text-align: center;
}

.builder-heading h2 {
    margin-bottom: 15px;
    font-size: clamp(2.2rem, 5vw, 3.5rem);
}

/* Generic builder card */
.builder-step {
    padding: 30px;
    background-color: var(--white-color);
    border: 1px solid var(--border-color);
    border-radius: 24px;
    box-shadow: 0 10px 30px rgba(86, 55, 45, 0.05);
}

/* Heading used inside every builder step */
.builder-step-title {
    display: flex;
    margin-bottom: 25px;
    align-items: flex-start;
    gap: 15px;
}

.builder-step-title h3 {
    margin-bottom: 3px;
    font-size: 1.35rem;
}

.builder-step-title p {
    margin: 0;
    font-size: 0.9rem;
}

/* Circular step number */
.step-number {
    display: grid;
    width: 38px;
    height: 38px;
    flex-shrink: 0;
    place-items: center;
    color: var(--white-color);
    background-color: var(--primary-color);
    border-radius: 50%;
    font-weight: 700;
}

/* Dessert type selection */
.builder-base-step {
    margin-bottom: 30px;
}

.base-options {
    display: grid;
    gap: 15px;
}

.unified-base-options {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

/* Makes the entire dessert card clickable */
.base-option {
    display: block;
    margin: 0;
    cursor: pointer;
}

/* Hides the original radio button */
.base-option > input {
    position: absolute;
    width: 1px;
    height: 1px;
    opacity: 0;
    pointer-events: none;
}

/* Visible dessert type card */
.base-option-content {
    display: flex;
    min-height: 245px;
    padding: 18px;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    gap: 7px;
    background-color: var(--cream-color);
    border: 2px solid transparent;
    border-radius: 20px;
    text-align: center;
    transition:
        border-color 0.3s ease,
        background-color 0.3s ease,
        transform 0.3s ease,
        box-shadow 0.3s ease;
}

.base-option:hover .base-option-content {
    transform: translateY(-3px);
    box-shadow: 0 12px 25px rgba(86, 55, 45, 0.09);
}

.base-option > input:checked + .base-option-content {
    background-color: var(--light-pink);
    border-color: var(--primary-color);
    box-shadow: 0 10px 25px rgba(217, 108, 130, 0.13);
}

/* Placeholder used until the client adds real dessert images */
.builder-image-placeholder {
    position: relative;

    display: flex;
    width: 100%;
    height: 110px;
    margin-bottom: 10px;

    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 6px;

    background:
        linear-gradient(
            135deg,
            rgba(217, 108, 130, 0.12),
            rgba(243, 181, 106, 0.16)
        );

    /* The border is created by the pseudo-element below */
    border: none;
    border-radius: 15px;

    color: var(--primary-color);
    text-align: center;
}

/*
    Creates a consistent rounded dashed border
    without cutting the dashes in the corners.
*/
/* Thin rounded dashed border */
.builder-image-placeholder::before {
    content: "";

    position: absolute;
    inset: 0;

    pointer-events: none;

    background-image:
        url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='100' height='30' viewBox='0 0 100 30' preserveAspectRatio='none'%3E%3Crect x='0.7' y='0.7' width='98.6' height='28.6' rx='4.5' ry='4.5' fill='none' stroke='%23e89aaa' stroke-width='0.3' stroke-dasharray='2.5 2' stroke-linecap='round'/%3E%3C/svg%3E");

    background-repeat: no-repeat;
    background-position: center;
    background-size: 100% 100%;
}

/* Keeps the icon and text above the SVG border */
.builder-image-placeholder > * {
    position: relative;
    z-index: 1;
}

.builder-image-placeholder i {
    font-size: 1.8rem;
}

.builder-image-placeholder small {
    color: var(--text-color);
    font-size: 0.72rem;
}

/* Use this class when replacing the placeholder with a real image */
.builder-base-image {
    width: 100%;
    height: 110px;
    margin-bottom: 10px;
    object-fit: cover;
    border-radius: 15px;
}

.base-option-content strong {
    color: var(--brown-color);
    font-size: 1.05rem;
}

.base-option-content > small {
    font-size: 0.78rem;
}

.base-option-content > span:last-child {
    color: var(--primary-color);
    font-weight: 700;
}

/* Message shown before choosing a dessert */
.builder-start-message {
    padding: 65px 25px;
    background-color: var(--cream-color);
    border: 2px dashed var(--border-color);
    border-radius: 24px;
    text-align: center;
}

.builder-start-message i {
    display: block;
    margin-bottom: 16px;
    color: var(--primary-color);
    font-size: 2.8rem;
}

.builder-start-message h3 {
    margin-bottom: 8px;
}

.builder-start-message p {
    margin: 0;
}

/* Dynamic builder area */
.builder-dynamic-area {
    width: 100%;
}

/* Two-column layout: options and summary */
.builder-container {
    display: grid;
    grid-template-columns: minmax(0, 1.7fr) minmax(300px, 0.8fr);
    align-items: start;
    gap: 30px;
}

.builder-options {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

/* Sauce, topping and extra grids */
.builder-choice-grid,
.scoop-count-options {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
}

.builder-choice {
    display: block;
    margin: 0;
    cursor: pointer;
}

.builder-choice > input {
    position: absolute;
    width: 1px;
    height: 1px;
    opacity: 0;
    pointer-events: none;
}

.builder-choice > span {
    display: flex;
    min-height: 58px;
    padding: 12px 16px;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
    background-color: var(--cream-color);
    border: 2px solid transparent;
    border-radius: 15px;
    color: var(--brown-color);
    font-size: 0.9rem;
    font-weight: 700;
    transition:
        border-color 0.3s ease,
        background-color 0.3s ease,
        transform 0.3s ease;
}

.builder-choice:hover > span {
    transform: translateY(-2px);
}

.builder-choice > input:checked + span {
    background-color: var(--light-pink);
    border-color: var(--primary-color);
}

.builder-choice small {
    color: var(--primary-color);
    font-size: 0.72rem;
}

/* CONE AND CUP CARDS */

/* Places the Cone and Cup cards side by side */
.ice-container-options {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
}

/* Makes the entire card clickable */
.ice-container-option {
    display: block;
    margin: 0;
    cursor: pointer;
}

/* Hides the original radio button */
.ice-container-option > input {
    position: absolute;
    width: 1px;
    height: 1px;
    opacity: 0;
    pointer-events: none;
}

/* Visible Cone and Cup card */
.ice-container-content {
    display: flex;
    min-height: 165px;
    padding: 20px;
    align-items: center;
    gap: 20px;

    /* Change the normal card background here */
    background-color: var(--cream-color);

    /* Change the normal card border here */
    border: 2px solid transparent;

    border-radius: 20px;

    transition:
        border-color 0.3s ease,
        background-color 0.3s ease,
        transform 0.3s ease,
        box-shadow 0.3s ease;
}

/* Card hover effect */
.ice-container-option:hover .ice-container-content {
    transform: translateY(-3px);
    box-shadow: 0 12px 25px rgba(86, 55, 45, 0.09);
}

/* Selected Cone or Cup card */
.ice-container-option > input:checked + .ice-container-content {
    /* Change the selected card background here */
    background-color: var(--light-pink);

    /* Change the selected card border here */
    border-color: var(--primary-color);

    box-shadow: 0 10px 25px rgba(217, 108, 130, 0.13);
}

/* Image used inside the Cone and Cup cards */
.ice-container-image {
    width: 90px;
    height: 90px;
    flex-shrink: 0;

    /* Keeps the complete image visible */
    object-fit: contain;

    /* Adds internal spacing around the icon */
    padding: 8px;

    background-color: var(--white-color);
    border: 1px solid var(--border-color);
    border-radius: 16px;
}

/* Cone/cup text */
.ice-choice-information {
    display: flex;
    min-width: 0;
    flex-direction: column;
    align-items: flex-start;
}

.ice-choice-information strong {
    margin-bottom: 3px;
    color: var(--brown-color);
    font-size: 1.05rem;
}

.ice-choice-information small {
    margin-bottom: 7px;
    color: var(--text-color);
    font-size: 0.86rem;
}

.ice-choice-price {
    color: var(--primary-color);
    font-size: 0.9rem;
    font-weight: 700;
}

/* Builder warning message */
.builder-warning {
    display: none;
    margin: 16px 0 0;
    padding: 11px 15px;
    color: #9b3c50;
    background-color: var(--light-pink);
    border-radius: 12px;
    font-size: 0.88rem;
    font-weight: 600;
}

/* Sticky order summary */
.builder-summary {
    position: sticky;
    top: 110px;
    padding: 32px;
    background:
        linear-gradient(
            145deg,
            var(--brown-color),
            var(--dark-color)
        );
    border-radius: 26px;
    color: rgba(255, 255, 255, 0.78);
    box-shadow: var(--shadow);
}

.summary-label {
    display: block;
    margin-bottom: 8px;
    color: var(--secondary-color);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 1.6px;
    text-transform: uppercase;
}

.builder-summary h3 {
    margin-bottom: 26px;
    color: var(--white-color);
    font-size: 1.8rem;
}

.builder-summary-list {
    padding: 20px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.13);
    border-bottom: 1px solid rgba(255, 255, 255, 0.13);
}

.summary-row {
    display: flex;
    margin-bottom: 16px;
    align-items: flex-start;
    justify-content: space-between;
    gap: 20px;
}

.summary-row:last-child {
    margin-bottom: 0;
}

.summary-row.summary-column {
    flex-direction: column;
    gap: 5px;
}

.summary-row strong {
    color: var(--white-color);
    font-size: 0.9rem;
    text-align: right;
}

.summary-column strong {
    text-align: left;
}

/* Quantity controls */
.builder-quantity {
    display: flex;
    padding: 22px 0;
    align-items: center;
    justify-content: space-between;
}

.quantity-selector {
    display: flex;
    align-items: center;
    gap: 12px;
}

.quantity-selector button {
    display: grid;
    width: 34px;
    height: 34px;
    place-items: center;
    color: var(--brown-color);
    background-color: var(--white-color);
    border: none;
    border-radius: 50%;
}

.quantity-selector strong {
    min-width: 22px;
    color: var(--white-color);
    text-align: center;
}

/* Total */
.builder-total {
    display: flex;
    margin-bottom: 24px;
    padding-top: 20px;
    align-items: center;
    justify-content: space-between;
    border-top: 1px solid rgba(255, 255, 255, 0.13);
    font-size: 1.15rem;
}

.builder-total strong {
    color: var(--secondary-color);
    font-size: 1.7rem;
}

/* Builder buttons */
.builder-add-button {
    display: flex;
    width: 100%;
    padding: 14px;
    align-items: center;
    justify-content: center;
    gap: 9px;
    color: var(--white-color);
    background-color: var(--primary-color);
    border: none;
    border-radius: 999px;
    font-weight: 700;
    transition:
        background-color 0.3s ease,
        transform 0.3s ease;
}

.builder-add-button:hover {
    background-color: var(--primary-dark);
    transform: translateY(-2px);
}

.builder-reset-button {
    width: 100%;
    margin-top: 10px;
    padding: 10px;
    color: rgba(255, 255, 255, 0.7);
    background: none;
    border: none;
    font-weight: 700;
}

.builder-reset-button:hover {
    color: var(--white-color);
}

/* Ready-made combinations title */
.ready-combinations-heading {
    max-width: 720px;
    margin: 0 auto 50px;
    text-align: center;
}

.ready-combinations-heading h2 {
    margin-bottom: 15px;
    font-size: clamp(2.2rem, 5vw, 3.5rem);
}

.ready-combinations-heading p {
    max-width: 620px;
    margin: auto;
}

/* Builder responsiveness */
@media (max-width: 991.98px) {
    .unified-base-options {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .builder-container {
        grid-template-columns: 1fr;
    }

    .builder-summary {
        position: static;
    }
}

@media (max-width: 767.98px) {
    .builder-choice-grid,
    .scoop-count-options {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .ice-container-options {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 575.98px) {
    .dessert-builder {
        margin-bottom: 75px;
    }

    .builder-step,
    .builder-summary {
        padding: 24px 20px;
    }

    .unified-base-options,
    .builder-choice-grid,
    .scoop-count-options {
        grid-template-columns: 1fr;
    }

    .builder-image-placeholder,
    .builder-base-image {
        height: 145px;
    }

    .ice-container-content {
        min-height: 130px;
        padding: 20px;
    }

    .ice-container-image {
    width: 70px;
    height: 70px;
    padding: 6px;
}
}


/* CLIENT IMAGE PLACEHOLDERS */

/*
    Base style used for every image placeholder
    that the client can replace later.
*/
.client-image-placeholder {
    display: flex;
    width: 100%;
    height: 100%;
    min-height: 120px;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;

    background:
        linear-gradient(
            135deg,
            rgba(217, 108, 130, 0.08),
            rgba(243, 181, 106, 0.12)
        );

    border: 2px dashed rgba(217, 108, 130, 0.55);
    border-radius: 16px;
    color: var(--primary-color);
    text-align: center;
}

/* Placeholder image icon */
.client-image-placeholder i {
    font-size: 2rem;
}

/* Placeholder label */
.client-image-placeholder span {
    color: var(--brown-color);
    font-size: 0.82rem;
    font-weight: 500;
}

/* Placeholder used in the main hero area */
.client-placeholder-hero {
    height: 600px;
    padding: 25px;
    border-radius: 48% 48% 24% 24%;
}

/* Placeholder used in home page category cards */
.client-placeholder-category {
    height: 260px;

    /*
        Only the upper corners are rounded because
        the placeholder is at the top of the card.
    */
    border-radius: 23px 23px 0 0;
}

/* Placeholder used in the About section */
.client-placeholder-about {
    height: 590px;
    border-radius: 35px;
}

/* Placeholder used in menu product cards */
.client-placeholder-product {
    height: 290px;

    /*
        Matches the rounded upper corners
        of the product card.
    */
    border-radius: 25px 25px 0 0;
}

/* Placeholder used in the dessert builder */
.client-placeholder-builder {
    position: relative;
    height: 110px;
    min-height: 110px;
    margin-bottom: 10px;
    overflow: hidden;

    background:
        linear-gradient(
            135deg,
            rgba(217, 108, 130, 0.08),
            rgba(243, 181, 106, 0.12)
        );

    border: 1px solid rgba(217, 108, 130, 0.30);
    border-radius: 20px;
}

/* Placeholder used in Cone and Cup cards */
.client-placeholder-ice-container {
    width: 115px;
    height: 115px;
    min-height: 115px;
    flex-shrink: 0;
    border-radius: 16px;
}

/*
    Real image style used after the client
    replaces the placeholder.
*/
.client-replaceable-image {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Real image used in the builder */
.client-builder-image {
    height: 110px;
    margin-bottom: 10px;
    object-fit: contain;
    padding: 8px;
    background-color: var(--white-color);
    border: 1px solid var(--border-color);
    border-radius: 15px;
}

/* Real image used for Cone and Cup */
.client-ice-container-image {
    width: 115px;
    height: 115px;
    flex-shrink: 0;
    object-fit: contain;
    padding: 8px;
    background-color: var(--white-color);
    border: 1px solid var(--border-color);
    border-radius: 16px;
}

/* Responsive sizes */
@media (max-width: 991.98px) {
    .client-placeholder-hero {
        height: 500px;
    }
}

@media (max-width: 575.98px) {
    .client-placeholder-hero {
        height: 410px;
    }

    .client-placeholder-category,
    .client-placeholder-product {
        height: 250px;
    }

    .client-placeholder-about {
        height: 430px;
    }

    .client-placeholder-builder {
        height: 145px;
        min-height: 145px;
    }

    .client-placeholder-ice-container {
        width: 90px;
        height: 90px;
        min-height: 90px;
    }

    .client-ice-container-image {
        width: 90px;
        height: 90px;
        padding: 6px;
    }
}

/* CHECKOUT */
.checkout-button {
    display: flex;
    width: 100%;
    padding: 14px 20px;
    align-items: center;
    justify-content: center;

    color: var(--white-color);
    background-color: var(--primary-color);
    border: none;
    border-radius: 999px;

    font-weight: 700;
    text-align: center;
    text-decoration: none;

    transition:
        background-color 0.3s ease,
        transform 0.3s ease;
}

.checkout-button:hover {
    color: var(--white-color);
    background-color: var(--primary-dark);
    transform: translateY(-2px);
}

/* CHECKOUT PAGE */

.checkout-hero {
    padding: 170px 0 90px;
    background:
        radial-gradient(
            circle at 20% 30%,
            rgba(243, 181, 106, 0.2),
            transparent 28%
        ),
        radial-gradient(
            circle at 80% 40%,
            rgba(217, 108, 130, 0.15),
            transparent 30%
        ),
        var(--cream-color);

    text-align: center;
}

.checkout-hero-content {
    max-width: 720px;
    margin: auto;
}

.checkout-hero h1 {
    margin-bottom: 16px;
    font-size: clamp(3rem, 7vw, 5rem);
}

.checkout-hero p {
    max-width: 600px;
    margin: auto;
}

.checkout-section {
    padding: 100px 0;
    background-color: #fffdfb;
}

.checkout-form-card {
    padding: 42px;
    background-color: var(--white-color);
    border: 1px solid var(--border-color);
    border-radius: 30px;
    box-shadow: var(--shadow);
}

.checkout-card-heading {
    display: flex;
    margin-bottom: 35px;
    align-items: flex-start;
    gap: 16px;
}

.checkout-step-number {
    display: grid;
    width: 48px;
    height: 48px;
    flex-shrink: 0;
    place-items: center;
    color: var(--white-color);
    background-color: var(--brown-color);
    border-radius: 50%;
    font-weight: 700;
}

.checkout-card-heading h2 {
    margin-bottom: 6px;
    font-size: 2rem;
}

.checkout-card-heading p {
    margin: 0;
}

.checkout-form-group {
    display: flex;
    flex-direction: column;
    gap: 9px;
}

.checkout-form-group label,
.checkout-order-type legend {
    color: var(--brown-color);
    font-size: 0.9rem;
    font-weight: 700;
}

.checkout-form-group label span {
    color: var(--text-color);
    font-size: 0.75rem;
    font-weight: 400;
}

.checkout-form-group input,
.checkout-form-group textarea {
    width: 100%;
    padding: 14px 16px;
    color: var(--brown-color);
    background-color: var(--white-color);
    border: 1.5px solid rgba(86, 55, 45, 0.42);
    border-radius: 14px;
    font-family: inherit;
    outline: none;

    transition:
        border-color 0.3s ease,
        box-shadow 0.3s ease,
        background-color 0.3s ease;
}

.checkout-form-group textarea {
    resize: vertical;
}

.checkout-form-group input:focus,
.checkout-form-group textarea:focus {
    border-color: var(--brown-color);
    background-color: var(--cream-color);
    box-shadow: 0 0 0 4px rgba(86, 55, 45, 0.1);
}

.checkout-order-type {
    margin: 0;
    padding: 0;
    border: 0;
}

.checkout-order-type legend {
    margin-bottom: 12px;
}

.checkout-order-options {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 15px;
}

.checkout-order-option {
    cursor: pointer;
}

.checkout-order-option > input {
    position: absolute;
    width: 1px;
    height: 1px;
    opacity: 0;
}

.checkout-order-option > span {
    display: flex;
    min-height: 130px;
    padding: 20px;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 5px;
    background-color: var(--cream-color);
    border: 2px solid transparent;
    border-radius: 18px;
    text-align: center;
    transition: 0.3s ease;
}

.checkout-order-option i {
    margin-bottom: 5px;
    color: var(--primary-color);
    font-size: 1.6rem;
}

.checkout-order-option strong {
    color: var(--brown-color);
}

.checkout-order-option small {
    color: var(--text-color);
}

.checkout-order-option > input:checked + span {
    background-color: var(--light-pink);
    border-color: var(--primary-color);
}

.checkout-address-box {
    padding: 25px;
    background-color: var(--cream-color);
    border: 1px solid var(--border-color);
    border-radius: 20px;
}

.checkout-address-box h3 {
    margin-bottom: 20px;
    font-size: 1.4rem;
}

.checkout-summary-card {
    position: sticky;
    top: 110px;
    padding: 38px;
    color: rgba(255, 255, 255, 0.78);
    background:
        linear-gradient(
            145deg,
            var(--brown-color),
            var(--dark-color)
        );

    border-radius: 30px;
    box-shadow: var(--shadow);
}

.checkout-summary-card h2 {
    margin-bottom: 25px;
    color: var(--white-color);
    font-size: 2rem;
}

.checkout-items {
    display: flex;
    margin-bottom: 25px;
    flex-direction: column;
    gap: 14px;
}

.checkout-item {
    display: flex;
    padding-bottom: 14px;
    justify-content: space-between;
    gap: 15px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.checkout-item-information {
    min-width: 0;
}

.checkout-item-information strong {
    display: block;
    color: var(--white-color);
}

.checkout-item-information small {
    display: block;
    margin-top: 3px;
}

.checkout-item-price {
    flex-shrink: 0;
    color: var(--white-color);
}

.checkout-empty-message {
    padding: 25px;
    text-align: center;
}

.checkout-empty-message i {
    font-size: 2rem;
}

.checkout-empty-message p {
    margin: 8px 0 0;
}

.checkout-price-details {
    display: flex;
    padding: 20px 0;
    flex-direction: column;
    gap: 11px;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.checkout-price-details > div {
    display: flex;
    justify-content: space-between;
    gap: 20px;
}

.checkout-price-details strong {
    color: var(--white-color);
}

.checkout-final-total {
    display: flex;
    padding: 24px 0;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.checkout-final-total span {
    color: var(--white-color);
    font-size: 1.1rem;
    font-weight: 700;
}

.checkout-final-total strong {
    color: var(--secondary-color);
    font-family: "Playfair Display", serif;
    font-size: 2rem;
}

.checkout-payment-button {
    display: flex;
    width: 100%;
    padding: 15px 20px;
    align-items: center;
    justify-content: center;
    gap: 9px;
    color: var(--brown-color);
    background-color: var(--secondary-color);
    border: none;
    border-radius: 999px;
    font-weight: 700;
    transition: 0.3s ease;
}

.checkout-payment-button:hover {
    background-color: var(--white-color);
    transform: translateY(-2px);
}

.checkout-payment-button:disabled {
    cursor: not-allowed;
    opacity: 0.55;
    transform: none;
}

.checkout-return-link {
    display: flex;
    margin-top: 15px;
    align-items: center;
    justify-content: center;
    gap: 7px;
    color: rgba(255, 255, 255, 0.75);
    font-size: 0.88rem;
}

.checkout-return-link:hover {
    color: var(--white-color);
}

.checkout-security-note {
    display: flex;
    margin-top: 22px;
    padding-top: 18px;
    align-items: flex-start;
    gap: 9px;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    font-size: 0.78rem;
}

.checkout-security-note i {
    flex-shrink: 0;
    color: var(--secondary-color);
}

@media (max-width: 991.98px) {
    .checkout-summary-card {
        position: static;
    }
}

@media (max-width: 575.98px) {
    .checkout-hero {
        padding: 150px 0 75px;
    }

    .checkout-section {
        padding: 70px 0;
    }

    .checkout-form-card,
    .checkout-summary-card {
        padding: 28px 22px;
    }

    .checkout-order-options {
        grid-template-columns: 1fr;
    }
}


/* PAYMENT RESULT PAGES */

/* Shared page layout */
.payment-result-page {
    display: flex;
    min-height: 100vh;
    padding: 170px 0 100px;
    align-items: center;

    background:
        radial-gradient(
            circle at 15% 25%,
            rgba(243, 181, 106, 0.18),
            transparent 28%
        ),
        radial-gradient(
            circle at 85% 35%,
            rgba(217, 108, 130, 0.15),
            transparent 30%
        ),
        var(--cream-color);
}

/* Main payment result card */
.payment-result-card {
    max-width: 760px;
    margin: auto;
    padding: 55px;
    background-color: var(--white-color);
    border: 1px solid var(--border-color);
    border-radius: 34px;
    text-align: center;
    box-shadow: var(--shadow);
}

/* Large status icon */
.payment-result-icon {
    display: grid;
    width: 95px;
    height: 95px;
    margin: 0 auto 25px;
    place-items: center;
    border-radius: 50%;
    font-size: 2.5rem;
}

/* Success icon colours */
.payment-result-icon.success-icon {
    color: #ffffff;
    background-color: #769b78;
    box-shadow:
        0 12px 30px rgba(118, 155, 120, 0.25);
}

/* Cancel icon colours */
.payment-result-icon.cancel-icon {
    color: var(--white-color);
    background-color: var(--brown-color);
    box-shadow:
        0 12px 30px rgba(86, 55, 45, 0.2);
}

/* Small status label */
.payment-result-label {
    display: inline-block;
    margin-bottom: 12px;
    color: var(--primary-color);
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.09em;
    text-transform: uppercase;
}

/* Main result title */
.payment-result-card h1 {
    margin-bottom: 18px;
    font-size: clamp(2.5rem, 6vw, 4.3rem);
}

/* Main description */
.payment-result-description {
    max-width: 600px;
    margin: 0 auto 30px;
    font-size: 1.04rem;
}

/* Optional payment reference */
.payment-reference {
    display: flex;
    max-width: 480px;
    margin: 0 auto 30px;
    padding: 16px 20px;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    background-color: var(--cream-color);
    border: 1px solid var(--border-color);
    border-radius: 15px;
    text-align: left;
}

/* Payment reference label */
.payment-reference span {
    color: var(--text-color);
    font-size: 0.85rem;
}

/* Payment reference value */
.payment-reference strong {
    color: var(--brown-color);
    overflow-wrap: anywhere;
}

/* Information blocks */
.payment-result-information {
    display: grid;
    margin: 35px 0;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
    text-align: left;
}

/* Individual information block */
.payment-result-information > div {
    display: flex;
    padding: 22px;
    align-items: flex-start;
    gap: 13px;
    background-color: var(--cream-color);
    border: 1px solid var(--border-color);
    border-radius: 18px;
}

/* Information block icon */
.payment-result-information > div > i {
    flex-shrink: 0;
    color: var(--primary-color);
    font-size: 1.35rem;
}

/* Information title */
.payment-result-information strong {
    display: block;
    margin-bottom: 5px;
    color: var(--brown-color);
}

/* Information paragraph */
.payment-result-information p {
    margin: 0;
    font-size: 0.85rem;
}

/* Cancel page saved cart notice */
.payment-cancel-notice {
    display: flex;
    max-width: 580px;
    margin: 0 auto 30px;
    padding: 18px 20px;
    align-items: flex-start;
    gap: 14px;
    color: var(--brown-color);
    background-color: var(--light-pink);
    border: 1px solid var(--border-color);
    border-radius: 17px;
    text-align: left;
}

/* Saved cart notice icon */
.payment-cancel-notice > i {
    flex-shrink: 0;
    color: var(--primary-color);
    font-size: 1.4rem;
}

/* Saved cart notice paragraph */
.payment-cancel-notice p {
    margin: 4px 0 0;
    font-size: 0.87rem;
}

/* Action buttons */
.payment-result-buttons {
    display: flex;
    margin-top: 32px;
    align-items: center;
    justify-content: center;
    gap: 13px;
}

/* Icons inside action buttons */
.payment-result-buttons .btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

/* Responsive layout */
@media (max-width: 767.98px) {
    .payment-result-information {
        grid-template-columns: 1fr;
    }

    .payment-result-card {
        padding: 40px 28px;
    }
}

@media (max-width: 575.98px) {
    .payment-result-page {
        padding: 145px 0 75px;
    }

    .payment-result-card {
        padding: 35px 21px;
        border-radius: 25px;
    }

    .payment-result-icon {
        width: 80px;
        height: 80px;
        font-size: 2rem;
    }

    .payment-result-buttons {
        flex-direction: column;
        align-items: stretch;
    }

    .payment-result-buttons .btn {
        width: 100%;
    }

    .payment-reference {
        flex-direction: column;
        align-items: flex-start;
        gap: 5px;
    }
}

/* ABOUT PAGE */

/* ABOUT HERO */

.about-hero {
    padding: 175px 0 110px;

    background:
        radial-gradient(
            circle at 15% 25%,
            rgba(243, 181, 106, 0.2),
            transparent 28%
        ),
        radial-gradient(
            circle at 88% 35%,
            rgba(217, 108, 130, 0.16),
            transparent 30%
        ),
        var(--cream-color);
}

/* Main About introduction */
.about-hero-content {
    max-width: 620px;
}

/* Main About page heading */
.about-hero-content h1 {
    margin-bottom: 24px;
    font-size: clamp(3.2rem, 7vw, 5.7rem);
    line-height: 1.02;
}

/* Highlighted heading text */
.about-hero-content h1 span {
    display: block;
    color: var(--primary-color);
}

/* About introduction paragraphs */
.about-hero-content p {
    max-width: 570px;
    margin-bottom: 17px;
    font-size: 1.05rem;
}

/* Space above the About button */
.about-hero-content .btn {
    margin-top: 13px;
}

/* Main image wrapper */
.about-hero-image-wrapper {
    position: relative;
    max-width: 560px;
    margin-left: auto;
}

/* Main About placeholder */
.about-main-placeholder {
    width: 100%;
    min-height: 610px;
    border-radius: 48% 48% 25% 25%;
}

/* Real main About image */
.about-hero-image {
    display: block;
    width: 100%;
    height: 610px;
    object-fit: cover;
    border: 13px solid rgba(255, 255, 255, 0.85);
    border-radius: 48% 48% 25% 25%;
    box-shadow: var(--shadow);
}

/* Badge displayed over the main image */
.about-experience-badge {
    position: absolute;
    right: -20px;
    bottom: 45px;
    display: flex;
    width: 145px;
    height: 145px;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--brown-color);
    background-color: var(--secondary-color);
    border: 8px solid var(--white-color);
    border-radius: 50%;
    text-align: center;
    box-shadow: var(--shadow);
}

/* Main badge text */
.about-experience-badge strong {
    font-family: "Playfair Display", serif;
    font-size: 1.55rem;
}

/* Small badge text */
.about-experience-badge span {
    max-width: 85px;
    font-size: 0.78rem;
    line-height: 1.25;
}

/* STORY SECTION */

.about-story-section {
    padding: 120px 0;
    background-color: #fffdfb;
}

/* Story image container */
.about-story-image {
    overflow: hidden;
    border-radius: 34px;
}

/* Story placeholder */
.about-story-placeholder {
    min-height: 580px;
    border-radius: 34px;
}

/* Real story image */
.about-story-real-image {
    display: block;
    width: 100%;
    height: 580px;
    object-fit: cover;
    border-radius: 34px;
}

/* Story text container */
.about-story-content {
    max-width: 590px;
}

/* Story heading */
.about-story-content h2 {
    margin-bottom: 23px;
    font-size: clamp(2.4rem, 5vw, 3.9rem);
}

/* Story paragraphs */
.about-story-content p {
    margin-bottom: 17px;
}

/* Signature area */
.about-signature {
    display: flex;
    margin-top: 28px;
    flex-direction: column;
}

/* Signature name */
.about-signature span {
    color: var(--brown-color);
    font-family: "Playfair Display", serif;
    font-size: 1.4rem;
    font-style: italic;
    font-weight: 700;
}

/* Signature description */
.about-signature small {
    margin-top: 3px;
    color: var(--primary-color);
    font-weight: 700;
}

/* VALUES SECTION */

.about-values-section {
    padding: 110px 0;
    background-color: var(--light-pink);
}

/* Individual value card */
.about-value-card {
    height: 100%;
    min-height: 300px;
    padding: 34px 27px;
    background-color: var(--white-color);
    border: 1px solid var(--border-color);
    border-radius: 25px;
    box-shadow: 0 10px 28px rgba(86, 55, 45, 0.06);

    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease;
}

/* Value card hover */
.about-value-card:hover {
    transform: translateY(-7px);
    box-shadow: var(--shadow);
}

/* Value icon */
.about-value-icon {
    display: grid;
    width: 65px;
    height: 65px;
    margin-bottom: 24px;
    place-items: center;
    color: var(--primary-color);
    background-color: var(--light-pink);
    border-radius: 50%;
    font-size: 1.55rem;
}

/* Value title */
.about-value-card h3 {
    margin-bottom: 13px;
    font-size: 1.45rem;
}

/* Value description */
.about-value-card p {
    margin: 0;
}

/* PROCESS SECTION */

.about-process-section {
    padding: 120px 0;
    background-color: #fffdfb;
}

/* Process content */
.about-process-content {
    max-width: 590px;
}

/* Process main heading */
.about-process-content > h2 {
    margin-bottom: 18px;
    font-size: clamp(2.4rem, 5vw, 3.9rem);
}

/* Process list */
.about-process-list {
    display: flex;
    margin-top: 37px;
    flex-direction: column;
    gap: 27px;
}

/* Individual process item */
.about-process-item {
    display: flex;
    align-items: flex-start;
    gap: 18px;
}

/* Process step number */
.about-process-number {
    display: grid;
    width: 58px;
    height: 58px;
    flex-shrink: 0;
    place-items: center;
    color: var(--white-color);
    background-color: var(--brown-color);
    border-radius: 50%;
    font-family: "Playfair Display", serif;
    font-size: 1rem;
    font-weight: 700;
}

/* Process step title */
.about-process-item h3 {
    margin-bottom: 6px;
    font-size: 1.35rem;
}

/* Process step text */
.about-process-item p {
    margin: 0;
}

/* Process image */
.about-process-image {
    overflow: hidden;
    border-radius: 34px;
}

/* Process image placeholder */
.about-process-placeholder {
    min-height: 600px;
    border-radius: 34px;
}

/* Real process image */
.about-process-real-image {
    display: block;
    width: 100%;
    height: 600px;
    object-fit: cover;
    border-radius: 34px;
}

/* TEAM SECTION */

.about-team-section {
    padding: 110px 0;
    background-color: var(--cream-color);
}

/* Individual team card */
.team-card {
    height: 100%;
    overflow: hidden;
    background-color: var(--white-color);
    border: 1px solid var(--border-color);
    border-radius: 28px;
    box-shadow: 0 10px 28px rgba(86, 55, 45, 0.07);

    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease;
}

/* Team card hover */
.team-card:hover {
    transform: translateY(-7px);
    box-shadow: var(--shadow);
}

/* Team image container */
.team-image {
    height: 360px;
    overflow: hidden;
}

/* Team placeholder */
.team-image-placeholder {
    min-height: 360px;
    border-radius: 0;
}

/* Real team image */
.team-image img {
    display: block;
    width: 100%;
    height: 360px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

/* Team image zoom */
.team-card:hover .team-image img {
    transform: scale(1.05);
}

/* Team member information */
.team-content {
    padding: 27px;
}

/* Team member name */
.team-content h3 {
    margin-bottom: 5px;
    font-size: 1.55rem;
}

/* Team member role */
.team-content > span {
    display: block;
    margin-bottom: 13px;
    color: var(--primary-color);
    font-size: 0.87rem;
    font-weight: 700;
}

/* Team member description */
.team-content p {
    margin: 0;
}

/* ABOUT CTA */

.about-cta-section {
    padding: 100px 0;
    background-color: #fffdfb;
}

/* Final call-to-action box */
.about-cta-box {
    display: flex;
    padding: 55px 60px;
    align-items: center;
    justify-content: space-between;
    gap: 35px;
    color: rgba(255, 255, 255, 0.78);

    background:
        linear-gradient(
            145deg,
            var(--brown-color),
            var(--dark-color)
        );

    border-radius: 32px;
    box-shadow: var(--shadow);
}

/* Small CTA text */
.about-cta-box > div:first-child > span {
    display: block;
    margin-bottom: 8px;
    color: var(--secondary-color);
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

/* CTA heading */
.about-cta-box h2 {
    margin-bottom: 10px;
    color: var(--white-color);
    font-size: clamp(2rem, 5vw, 3.2rem);
}

/* CTA paragraph */
.about-cta-box p {
    max-width: 580px;
    margin: 0;
}

/* CTA buttons container */
.about-cta-buttons {
    display: flex;
    flex-shrink: 0;
    align-items: center;
    gap: 12px;
}

/* Secondary CTA button */
.about-cta-secondary-button {
    display: inline-flex;
    padding: 13px 24px;
    align-items: center;
    justify-content: center;
    color: var(--white-color);
    border: 1.5px solid rgba(255, 255, 255, 0.65);
    border-radius: 999px;
    font-weight: 700;

    transition:
        background-color 0.3s ease,
        color 0.3s ease,
        transform 0.3s ease;
}

/* Secondary CTA hover */
.about-cta-secondary-button:hover {
    color: var(--brown-color);
    background-color: var(--white-color);
    transform: translateY(-2px);
}

/* ABOUT RESPONSIVENESS */

@media (max-width: 991.98px) {
    .about-hero {
        text-align: center;
    }

    .about-hero-content {
        margin: auto;
    }

    .about-hero-content p {
        margin-right: auto;
        margin-left: auto;
    }

    .about-hero-image-wrapper {
        margin: 35px auto 0;
    }

    .about-main-placeholder,
    .about-hero-image {
        min-height: 520px;
        height: 520px;
    }

    .about-story-content,
    .about-process-content {
        max-width: none;
    }

    .about-cta-box {
        flex-direction: column;
        align-items: flex-start;
    }
}

@media (max-width: 575.98px) {
    .about-hero {
        padding: 150px 0 80px;
    }

    .about-main-placeholder,
    .about-hero-image {
        min-height: 430px;
        height: 430px;
    }

    .about-experience-badge {
        right: -5px;
        bottom: 25px;
        width: 115px;
        height: 115px;
        border-width: 6px;
    }

    .about-experience-badge strong {
        font-size: 1.25rem;
    }

    .about-story-section,
    .about-process-section {
        padding: 80px 0;
    }

    .about-values-section,
    .about-team-section {
        padding: 80px 0;
    }

    .about-story-placeholder,
    .about-story-real-image,
    .about-process-placeholder,
    .about-process-real-image {
        min-height: 420px;
        height: 420px;
    }

    .team-image,
    .team-image img,
    .team-image-placeholder {
        min-height: 330px;
        height: 330px;
    }

    .about-cta-section {
        padding: 75px 0;
    }

    .about-cta-box {
        padding: 35px 24px;
    }

    .about-cta-buttons {
        width: 100%;
        flex-direction: column;
        align-items: stretch;
    }

    .about-cta-buttons a {
        width: 100%;
        text-align: center;
    }
}


/* CONTACT PAGE */

/* Contact page introduction */
.contact-hero {
    padding: 180px 0 100px;

    /* Change the contact hero background here */
    background:
        radial-gradient(
            circle at 15% 25%,
            rgba(243, 181, 106, 0.2),
            transparent 28%
        ),
        radial-gradient(
            circle at 85% 40%,
            rgba(217, 108, 130, 0.18),
            transparent 30%
        ),
        var(--cream-color);

    text-align: center;
}

/* Centres the contact introduction */
.contact-hero-content {
    max-width: 760px;
    margin: auto;
}

/* Main Contact page title */
.contact-hero h1 {
    margin-bottom: 22px;
    font-size: clamp(3rem, 7vw, 5rem);
}

/* Contact page introduction text */
.contact-hero p {
    max-width: 660px;
    margin: auto;
    font-size: 1.08rem;
}

/* CONTACT INFORMATION CARDS */

.contact-information-section {
    padding: 90px 0 40px;
    background-color: #fffdfb;
}

/* Individual contact information card */
.contact-info-card {
    height: 100%;
    min-height: 245px;
    padding: 30px 24px;
    background-color: var(--white-color);
    border: 1px solid var(--border-color);
    border-radius: 24px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(86, 55, 45, 0.06);

    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease;
}

/* Contact card hover effect */
.contact-info-card:hover {
    transform: translateY(-7px);
    box-shadow: var(--shadow);
}

/* Icon at the top of each card */
.contact-info-icon {
    display: grid;
    width: 62px;
    height: 62px;
    margin: 0 auto 20px;
    place-items: center;
    color: var(--primary-color);
    background-color: var(--light-pink);
    border-radius: 50%;
    font-size: 1.5rem;
}

/* Contact card title */
.contact-info-card h2 {
    margin-bottom: 12px;
    font-size: 1.45rem;
}

/* Contact card text */
.contact-info-card p {
    margin: 0;
}

/* Contact card links */
.contact-info-card a {
    color: var(--brown-color);
    font-weight: 600;
    overflow-wrap: anywhere;
}

.contact-info-card a:hover {
    color: var(--primary-color);
}

/* FORM AND DETAILS SECTION */

.contact-main-section {
    padding: 70px 0 110px;
    background-color: #fffdfb;
}

/* Main form card */
.contact-form-card {
    padding: 45px;
    background-color: var(--white-color);
    border: 1px solid var(--border-color);
    border-radius: 30px;
    box-shadow: var(--shadow);
}

/* Contact form introduction */
.contact-form-heading {
    margin-bottom: 35px;
}

/* Contact form title */
.contact-form-heading h2 {
    margin-bottom: 14px;
    font-size: clamp(2rem, 5vw, 3rem);
}

/* Removes margin from the form introduction paragraph */
.contact-form-heading p {
    margin: 0;
}

/* Individual form field */
.contact-form-group {
    display: flex;
    flex-direction: column;
    gap: 9px;
}

/* Field labels */
.contact-form-group label {
    color: var(--brown-color);
    font-size: 0.9rem;
    font-weight: 700;
}

/* Optional text inside a label */
.contact-form-group label span {
    color: var(--text-color);
    font-size: 0.75rem;
    font-weight: 400;
}

/* Shared styles for inputs, select and textarea */
.contact-form-group input,
.contact-form-group select,
.contact-form-group textarea {
    width: 100%;
    padding: 14px 16px;
    color: var(--brown-color);
    background-color: var(--white-color);

    /* Brown border around the contact fields */
    border: 1.5px solid rgba(86, 55, 45, 0.42);

    border-radius: 14px;
    font-family: inherit;
    outline: none;

    transition:
        border-color 0.3s ease,
        box-shadow 0.3s ease,
        background-color 0.3s ease;
}

/* Textarea can only be resized vertically */
.contact-form-group textarea {
    min-height: 165px;
    resize: vertical;
}

/* Form field placeholder text */
.contact-form-group input::placeholder,
.contact-form-group textarea::placeholder {
    color: rgba(86, 55, 45, 0.48);
}

/* Selected form field */
.contact-form-group input:focus,
.contact-form-group select:focus,
.contact-form-group textarea:focus {
    border-color: var(--brown-color);
    background-color: var(--cream-color);
    box-shadow: 0 0 0 4px rgba(86, 55, 45, 0.1);
}

/* Privacy agreement */
.contact-checkbox {
    display: flex;
    align-items: flex-start;
    gap: 11px;
    color: var(--text-color);
    font-size: 0.88rem;
    cursor: pointer;
}

/* Privacy agreement checkbox */
.contact-checkbox input {
    width: 18px;
    height: 18px;
    margin-top: 3px;
    flex-shrink: 0;
    accent-color: var(--primary-color);
}

/* Submit button */
.contact-submit-button {
    display: inline-flex;
    padding: 14px 28px;
    align-items: center;
    justify-content: center;
    gap: 9px;
    color: var(--white-color);
    background-color: var(--primary-color);
    border: none;
    border-radius: 999px;
    font-weight: 700;

    transition:
        background-color 0.3s ease,
        transform 0.3s ease;
}

.contact-submit-button:hover {
    background-color: var(--primary-dark);
    transform: translateY(-2px);
}

/* Success message hidden by default */
.contact-success-message {
    display: none;
    margin-top: 25px;
    padding: 18px 20px;
    align-items: flex-start;
    gap: 14px;
    color: var(--brown-color);
    background-color: var(--cream-color);
    border: 1px solid var(--border-color);
    border-radius: 16px;
}

/* Makes the success message visible */
.contact-success-message.show {
    display: flex;
}

/* Success icon */
.contact-success-message > i {
    color: var(--primary-color);
    font-size: 1.5rem;
}

/* Success message paragraph */
.contact-success-message p {
    margin: 3px 0 0;
    font-size: 0.86rem;
}

/* BUSINESS DETAILS CARD */

.contact-details-card {
    padding: 40px;
    color: rgba(255, 255, 255, 0.78);

    /* Same gradient used by the builder summary cards */
    background:
        linear-gradient(
            145deg,
            var(--brown-color),
            var(--dark-color)
        );

    border-radius: 30px;
    box-shadow: var(--shadow);
}

/* Small label inside the dark card */
.contact-details-card .section-label {
    color: var(--secondary-color);
}

/* Main title inside the dark card */
.contact-details-card > h2 {
    margin-bottom: 18px;
    color: var(--white-color);
    font-size: clamp(2rem, 4vw, 2.8rem);
}

/* Main description inside the dark card */
.contact-details-card > p {
    margin-bottom: 35px;
}

/* List of business details */
.contact-detail-list {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

/* Individual business detail */
.contact-detail-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

/* Business detail icon */
.contact-detail-item > i {
    display: grid;
    width: 44px;
    height: 44px;
    flex-shrink: 0;
    place-items: center;
    color: var(--brown-color);
    background-color: var(--secondary-color);
    border-radius: 50%;
    font-size: 1.1rem;
}

/* Business detail title */
.contact-detail-item strong {
    display: block;
    margin-bottom: 4px;
    color: var(--white-color);
}

/* Business detail paragraph */
.contact-detail-item p {
    margin: 0;
    font-size: 0.88rem;
}

/* Social media area inside the dark card */
.contact-social-area {
    margin-top: 35px;
    padding-top: 25px;
    border-top: 1px solid rgba(255, 255, 255, 0.13);
}

/* Social media area title */
.contact-social-area > span {
    display: block;
    margin-bottom: 13px;
    color: var(--white-color);
    font-weight: 700;
}

/* Social media button container */
.contact-social-links {
    display: flex;
    gap: 10px;
}

/* Social media buttons */
.contact-social-links a {
    display: grid;
    width: 43px;
    height: 43px;
    place-items: center;
    color: var(--white-color);
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;

    transition:
        background-color 0.3s ease,
        transform 0.3s ease;
}

.contact-social-links a:hover {
    color: var(--white-color);
    background-color: var(--primary-color);
    transform: translateY(-2px);
}

/* MAP SECTION */

.contact-map-section {
    padding: 105px 0;
    background-color: var(--light-pink);
}

/* Map section title */
.contact-map-heading {
    max-width: 700px;
    margin: 0 auto 45px;
    text-align: center;
}

/* Main map section heading */
.contact-map-heading h2 {
    margin-bottom: 14px;
    font-size: clamp(2.1rem, 5vw, 3.4rem);
}

/* Map section paragraph */
.contact-map-heading p {
    max-width: 610px;
    margin: auto;
}

/* Placeholder used until the client adds the map */
.contact-map-placeholder {
    display: flex;
    min-height: 480px;
    padding: 35px;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 11px;
    color: var(--primary-color);

    background:
        linear-gradient(
            135deg,
            rgba(217, 108, 130, 0.08),
            rgba(243, 181, 106, 0.14)
        );

    /* Dashed border matching the image placeholders */
    border: 2px dashed rgba(217, 108, 130, 0.55);

    border-radius: 30px;
    text-align: center;
}

/* Large map placeholder icon */
.contact-map-placeholder > i {
    margin-bottom: 5px;
    font-size: 3.5rem;
}

/* Main placeholder text */
.contact-map-placeholder strong {
    color: var(--brown-color);
    font-family: "Playfair Display", serif;
    font-size: 1.65rem;
}

/* Map placeholder description */
.contact-map-placeholder span {
    color: var(--text-color);
}

/* Recommended map dimensions */
.contact-map-placeholder small {
    color: rgba(86, 55, 45, 0.65);
}

/* Real map added later by the client */
.contact-map {
    display: block;
    width: 100%;
    height: 480px;
    border: 0;
    border-radius: 30px;
    box-shadow: var(--shadow);
}

/* Responsive Google Maps container */
.map-wrapper {
    width: 100%;
    height: 480px;
    overflow: hidden;
    border-radius: 24px;
}

/* Makes the map fill the container */
.map-wrapper iframe {
    width: 100%;
    height: 100%;
    border: 0;
}

@media (max-width: 767.98px) {
    .map-wrapper {
        height: 340px;
        border-radius: 18px;
    }
}

/* CONTACT PAGE RESPONSIVENESS */

@media (max-width: 991.98px) {
    .contact-details-card {
        margin-top: 10px;
    }
}

@media (max-width: 575.98px) {
    .contact-hero {
        padding: 150px 0 75px;
    }

    .contact-information-section {
        padding: 70px 0 30px;
    }

    .contact-main-section {
        padding: 50px 0 75px;
    }

    .contact-form-card,
    .contact-details-card {
        padding: 28px 22px;
    }

    .contact-submit-button {
        width: 100%;
    }

    .contact-map-section {
        padding: 75px 0;
    }

    .contact-map-placeholder,
    .contact-map {
        min-height: 360px;
        height: 360px;
        border-radius: 22px;
    }
}

