/* =========================================================
   DIVINE CHOICE
   PROFESSIONAL RESPONSIVE WEBSITE
   DESKTOP + TABLET + MOBILE
========================================================= */


/* =========================================================
   RESET
========================================================= */

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

html {
    scroll-behavior: smooth;
}

body {
    font-family:
        Arial,
        Helvetica,
        sans-serif;

    color: #2b2b2b;

    background:
        linear-gradient(
            rgba(255, 255, 255, 0.88),
            rgba(255, 255, 255, 0.88)
        ),
        url("./images/bg.jpg");

    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;

    min-height: 100vh;
}

button,
input,
textarea {
    font-family: inherit;
}

button {
    cursor: pointer;
}

img {
    max-width: 100%;
}

a {
    -webkit-tap-highlight-color: transparent;
}


/* =========================================================
   CONTAINER
========================================================= */

.container {
    width: min(92%, 1200px);
    margin: 0 auto;
}


/* =========================================================
   NAVBAR
========================================================= */

.navbar {
    position: sticky;
    top: 0;

    z-index: 1000;

    background:
        rgba(255, 102, 0, 0.98);

    box-shadow:
        0 4px 20px rgba(0, 0, 0, 0.13);
}

.nav {
    min-height: 76px;

    display: flex;

    align-items: center;
    justify-content: space-between;

    gap: 20px;
}

.logo {
    color: white;

    font-size: 25px;

    font-weight: 800;

    text-decoration: none;

    white-space: nowrap;

    letter-spacing: -0.5px;
}

.nav-links {
    display: flex;

    align-items: center;

    justify-content: center;

    gap: 4px;

    list-style: none;
}

.nav-links li {
    display: block;
}

.nav-links a {
    display: block;

    padding: 10px 13px;

    color: white;

    text-decoration: none;

    border-radius: 8px;

    font-size: 14px;

    font-weight: 700;

    transition:
        background 0.2s ease,
        color 0.2s ease,
        transform 0.2s ease;
}

.nav-links a:hover,
.nav-links a.active {
    background: white;

    color: #ff6600;

    transform: translateY(-1px);
}

.cart-btn {
    border: none;

    border-radius: 9px;

    padding: 11px 16px;

    background: white;

    color: #222;

    font-size: 13px;

    font-weight: 700;

    white-space: nowrap;

    box-shadow:
        0 4px 12px rgba(0, 0, 0, 0.12);

    transition: 0.25s ease;
}

.cart-btn:hover {
    transform: translateY(-2px);

    box-shadow:
        0 8px 18px rgba(0, 0, 0, 0.16);
}


/* MOBILE MENU BUTTON */

.mobile-menu-btn {
    display: none;

    border: none;

    background: white;

    color: #ff6600;

    width: 42px;
    height: 42px;

    border-radius: 8px;

    font-size: 21px;
}


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

.hero {
    min-height: 570px;

    background:
        linear-gradient(
            120deg,
            rgba(255, 247, 239, 0.98),
            rgba(255, 232, 210, 0.92)
        );

    display: flex;

    align-items: center;

    overflow: hidden;
}

.hero-content {
    min-height: 570px;

    display: grid;

    grid-template-columns:
        1.05fr
        0.95fr;

    align-items: center;

    gap: 40px;
}

.hero-text {
    padding: 40px 0;
}

.hero-tag {
    display: inline-block;

    color: #ff6600;

    font-size: 12px;

    font-weight: 800;

    letter-spacing: 1.5px;

    margin-bottom: 18px;
}

.hero h1 {
    margin: 0 0 18px;

    max-width: 650px;

    color: #222;

    font-size:
        clamp(
            42px,
            5vw,
            70px
        );

    line-height: 1.04;

    font-weight: 800;
}

.hero h1 span {
    color: #ff6600;
}

.hero-text > p {
    max-width: 560px;

    color: #666;

    font-size: 18px;

    line-height: 1.7;

    margin-bottom: 28px;
}


/* HERO BUTTONS */

.hero-buttons {
    display: flex;

    align-items: center;

    gap: 14px;

    flex-wrap: wrap;
}

.hero-primary,
.hero-secondary {
    display: inline-flex;

    align-items: center;
    justify-content: center;

    min-height: 50px;

    padding: 0 24px;

    border-radius: 10px;

    text-decoration: none;

    font-weight: 700;

    transition: 0.25s ease;
}

.hero-primary {
    background: #ff6600;

    color: white;

    box-shadow:
        0 10px 25px rgba(255, 102, 0, 0.25);
}

.hero-primary:hover {
    background: #e85c00;

    transform: translateY(-2px);
}

.hero-secondary {
    border: 1px solid #ddd;

    background: white;

    color: #333;
}

.hero-secondary:hover {
    border-color: #ff6600;

    color: #ff6600;
}


/* HERO STATS */

.hero-stats {
    display: flex;

    gap: 35px;

    margin-top: 38px;
}

.hero-stats div {
    display: flex;

    flex-direction: column;

    gap: 4px;
}

.hero-stats strong {
    color: #222;

    font-size: 21px;
}

.hero-stats span {
    color: #888;

    font-size: 12px;
}


/* HERO IMAGE */

.hero-image {
    position: relative;

    min-height: 480px;

    display: flex;

    align-items: center;
    justify-content: center;
}

.hero-circle {
    position: absolute;

    width: 390px;
    height: 390px;

    border-radius: 50%;

    background: #ff6600;

    opacity: 0.12;
}

.hero-image img {
    position: relative;

    z-index: 2;

    width: 390px;
    height: 390px;

    object-fit: cover;

    border-radius: 35px;

    box-shadow:
        0 25px 60px rgba(0, 0, 0, 0.16);

    transform: rotate(2deg);
}

.hero-badge {
    position: absolute;

    z-index: 5;

    right: 0;

    bottom: 55px;

    width: 115px;
    height: 115px;

    border-radius: 50%;

    background: white;

    display: flex;

    flex-direction: column;

    align-items: center;
    justify-content: center;

    box-shadow:
        0 15px 35px rgba(0, 0, 0, 0.15);
}

.hero-badge strong {
    color: #ff6600;

    font-size: 28px;
}

.hero-badge span {
    color: #777;

    font-size: 10px;

    text-align: center;
}


/* =========================================================
   SECTIONS
========================================================= */

.section {
    margin: 55px 0 70px;
}

.section-heading {
    text-align: center;

    margin-bottom: 32px;
}

.section-heading > span {
    display: block;

    color: #ff6600;

    font-size: 11px;

    font-weight: 800;

    letter-spacing: 2px;

    margin-bottom: 7px;
}

.section-heading h2 {
    color: #222;

    margin: 0 0 10px;

    font-size: 34px;
}

.section-heading p {
    max-width: 600px;

    margin: 0 auto;

    color: #777;

    font-size: 14px;

    line-height: 1.6;
}


/* =========================================================
   FEATURES
========================================================= */

.features {
    display: grid;

    grid-template-columns:
        repeat(3, 1fr);

    gap: 20px;
}

.feature-card {
    padding: 27px;

    background:
        rgba(255, 255, 255, 0.96);

    border: 1px solid #eeeeee;

    border-radius: 16px;

    text-align: center;

    box-shadow:
        0 8px 25px rgba(0, 0, 0, 0.05);

    transition: 0.25s ease;
}

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

    box-shadow:
        0 15px 35px rgba(0, 0, 0, 0.09);
}

.feature-icon {
    width: 55px;
    height: 55px;

    display: flex;

    align-items: center;
    justify-content: center;

    margin: 0 auto 15px;

    border-radius: 15px;

    background: #fff0e6;

    color: #ff6600;

    font-size: 24px;
}

.feature-card h3 {
    color: #222;

    margin-bottom: 8px;

    font-size: 17px;
}

.feature-card p {
    color: #777;

    font-size: 13px;

    line-height: 1.6;
}


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

.product-section {
    margin-bottom: 70px;
}

.category-title {
    color: #222;

    font-size: 25px;

    margin:
        30px 0 12px;
}

.flex {
    display: grid;

    grid-template-columns:
        repeat(2, minmax(0, 1fr));

    gap: 15px;
}


/* =========================================================
   PROFESSIONAL PRODUCT LIST CARD
========================================================= */

.product-card {
    width: 100%;

    min-height: 0;

    height: auto;

    padding: 14px;

    display: grid;

    grid-template-columns:
        110px
        1fr
        auto;

    align-items: center;

    gap: 18px;

    background:
        rgba(255, 255, 255, 0.97);

    border: 1px solid #e8e8e8;

    border-radius: 14px;

    text-align: left;

    box-shadow:
        0 5px 20px rgba(0, 0, 0, 0.06);

    margin: 0;

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

.product-card:hover {
    transform: translateY(-3px);

    box-shadow:
        0 12px 30px rgba(0, 0, 0, 0.10);
}

.product-card img {
    width: 110px;
    height: 110px;

    object-fit: cover;

    padding: 5px;

    background: #fafafa;

    border-radius: 10px;

    margin: 0;
}

.product-info {
    min-width: 0;
}

.product-card h2 {
    color: #222;

    font-size: 17px;

    margin: 0 0 7px;
}

.product-card p {
    color: #777;

    font-size: 13px;

    line-height: 1.45;

    margin: 0 0 8px;
}

.product-card .price {
    color: #ff6600;

    font-size: 20px;

    font-weight: 800;

    margin: 0;
}

.add-to-cart {
    min-width: 120px;

    padding: 11px 14px;

    background: #ff6600;

    color: white;

    border: none;

    border-radius: 8px;

    font-size: 13px;

    font-weight: 700;

    transition: 0.2s ease;
}

.add-to-cart:hover {
    background: #e65b00;

    transform: translateY(-1px);
}


/* =========================================================
   CART QUANTITY CONTROLS
========================================================= */

.add-remove {
    display: flex;

    align-items: center;
    justify-content: center;

    gap: 8px;
}

.remove-btn,
.add-btn {
    width: 32px;
    height: 32px;

    border: none;

    border-radius: 8px;

    background: #f1f1f1;

    font-size: 18px;

    cursor: pointer;

    transition: 0.2s;
}

.remove-btn:hover,
.add-btn:hover {
    background: #ff6600;

    color: white;
}

.count {
    width: 42px;
    height: 32px;

    display: flex;

    align-items: center;
    justify-content: center;

    background: #f3f3f3;

    border-radius: 8px;

    font-size: 14px;

    font-weight: 700;

    margin: 0;
}


/* =========================================================
   WHY CHOOSE US
========================================================= */

.why-us {
    margin: 30px 0 70px;

    padding: 50px 30px;

    background:
        rgba(255, 255, 255, 0.95);

    border-radius: 22px;

    text-align: center;

    box-shadow:
        0 10px 35px rgba(0, 0, 0, 0.06);
}

.why-us h2 {
    color: #222;

    font-size: 30px;

    margin-bottom: 10px;
}

.why-us > p {
    max-width: 600px;

    margin: 0 auto 30px;

    color: #777;

    font-size: 14px;

    line-height: 1.7;
}

.why-grid {
    display: grid;

    grid-template-columns:
        repeat(3, 1fr);

    gap: 20px;
}

.why-item {
    padding: 15px;
}

.why-item strong {
    display: block;

    color: #ff6600;

    font-size: 16px;

    margin-bottom: 7px;
}

.why-item span {
    color: #777;

    font-size: 13px;
}


/* =========================================================
   CART SIDEBAR
========================================================= */

.cart-sidebar {
    position: fixed;

    right: -390px;

    top: 0;

    width: 360px;

    max-width: 92vw;

    height: 100vh;

    background: white;

    padding: 25px;

    box-shadow:
        -10px 0 40px rgba(0, 0, 0, 0.18);

    transition:
        right 0.3s ease;

    display: flex;

    flex-direction: column;

    z-index: 5000;
}

.cart-sidebar.open {
    right: 0;
}

.cart-sidebar h2 {
    color: #222;

    font-size: 23px;

    padding-bottom: 18px;

    border-bottom: 1px solid #eee;
}

#cart-items {
    list-style: none;

    padding: 0;

    margin: 15px 0;

    overflow-y: auto;

    flex: 1;
}

#cart-items li {
    display: flex;

    justify-content: space-between;

    align-items: center;

    gap: 10px;

    padding: 13px 0;

    border-bottom: 1px solid #eee;

    font-size: 13px;
}

.remove-item {
    background: #fff0f0;

    color: #d62828;

    border: none;

    padding: 6px 9px;

    border-radius: 6px;

    cursor: pointer;
}

.cart-sidebar > p {
    font-size: 18px;

    font-weight: 700;

    padding: 15px 0;

    border-top: 1px solid #eee;
}

.cart-sidebar button {
    width: 100%;

    margin-top: 9px;

    padding: 12px;

    border: none;

    border-radius: 9px;

    background: #ff6600;

    color: white;

    font-size: 14px;

    font-weight: 700;

    transition: 0.2s;
}

.cart-sidebar button:hover {
    background: #e65b00;
}


/* =========================================================
   ORDER FORM
========================================================= */

.order-form-container {
    display: none;

    position: fixed;

    inset: 0;

    z-index: 6000;

    align-items: center;

    justify-content: center;

    padding: 20px;

    background:
        rgba(0, 0, 0, 0.60);
}

.order-form-container.active {
    display: flex;
}

.order-form {
    width: 100%;

    max-width: 440px;

    background: white;

    padding: 30px;

    border-radius: 18px;

    box-shadow:
        0 25px 70px rgba(0, 0, 0, 0.25);
}

.order-form h2 {
    margin-bottom: 22px;

    font-size: 23px;

    color: #222;
}

.order-form label {
    display: block;

    margin: 12px 0 6px;

    font-size: 13px;

    font-weight: 700;
}

.order-form input,
.order-form textarea {
    width: 100%;

    padding: 12px 13px;

    border: 1px solid #ddd;

    border-radius: 8px;

    outline: none;

    font-size: 14px;

    resize: vertical;
}

.order-form input:focus,
.order-form textarea:focus {
    border-color: #ff6600;

    box-shadow:
        0 0 0 3px rgba(255, 102, 0, 0.10);
}

.order-form textarea {
    min-height: 100px;
}

.order-form button {
    width: 100%;

    margin-top: 10px;

    padding: 12px;

    background: #ff6600;

    color: white;

    border: none;

    border-radius: 9px;

    font-size: 14px;

    font-weight: 700;
}

.order-form button:hover {
    background: #e65b00;
}

#cancel-order {
    background: #333;
}

#cancel-order:hover {
    background: #222;
}


/* =========================================================
   PROFESSIONAL FOOTER
========================================================= */

.footer {
    background: #202020;

    color: white;

    margin-top: 60px;
}

.footer-container {
    min-height: 220px;

    padding-top: 45px;
    padding-bottom: 40px;

    display: grid;

    grid-template-columns:
        1.5fr
        1fr
        1fr;

    gap: 50px;
}

.footer-brand {
    display: flex;

    flex-direction: column;

    gap: 12px;
}

.footer-logo {
    color: white;

    font-size: 25px;

    font-weight: 800;

    text-decoration: none;
}

.footer-brand p {
    max-width: 280px;

    color: #aaa;

    font-size: 13px;

    line-height: 1.7;
}

.footer-links,
.footer-social {
    display: flex;

    flex-direction: column;

    align-items: flex-start;
}

.footer h3 {
    font-size: 14px;

    margin-bottom: 17px;

    color: white;
}

.footer-links a {
    color: #aaa;

    text-decoration: none;

    font-size: 13px;

    margin-bottom: 10px;

    transition: 0.2s ease;
}

.footer-links a:hover {
    color: #ff6600;

    transform: translateX(3px);
}

.social-icons {
    display: flex;

    gap: 9px;
}

.social-icons a {
    width: 40px;
    height: 40px;

    display: inline-flex;

    align-items: center;
    justify-content: center;

    background: #303030;

    color: white;

    border-radius: 50%;

    font-size: 19px;

    text-decoration: none;

    transition: 0.25s ease;
}

.social-icons a:hover {
    background: #ff6600;

    transform: translateY(-3px);
}

.footer-bottom {
    border-top: 1px solid #333;

    padding: 17px 0;

    text-align: center;
}

.footer-bottom p {
    color: #888;

    font-size: 11px;
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 1050px) {

    .nav {
        flex-wrap: wrap;

        padding: 12px 0;
    }

    .nav-links {
        order: 3;

        width: 100%;

        justify-content: flex-start;

        overflow-x: auto;

        scrollbar-width: none;
    }

    .nav-links::-webkit-scrollbar {
        display: none;
    }

    .hero-content {
        grid-template-columns:
            1fr
            0.8fr;

        gap: 20px;
    }

    .hero-image img,
    .hero-circle {
        width: 300px;
        height: 300px;
    }

    .hero-image {
        min-height: 400px;
    }

    .hero-badge {
        right: 5px;

        bottom: 40px;

        width: 90px;
        height: 90px;
    }

    .hero-badge strong {
        font-size: 23px;
    }

    .features {
        grid-template-columns:
            repeat(3, 1fr);
    }

    .flex {
        grid-template-columns:
            1fr;
    }

    .footer-container {
        grid-template-columns:
            1fr
            1fr
            1fr;

        gap: 25px;
    }
}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 700px) {

    body {
        background-attachment: scroll;
    }

    .container {
        width: calc(100% - 30px);
    }


    /* =====================================================
       NAVBAR
    ===================================================== */

    .navbar {
        position: sticky;

        padding: 9px 0;
    }

    .nav {
        display: grid;

        grid-template-columns:
            1fr
            auto
            auto;

        gap: 9px;

        min-height: auto;

        align-items: center;
    }

    .logo {
        font-size: 20px;
    }

    .mobile-menu-btn {
        display: block;
    }

    .nav-links {
        display: none;

        grid-column: 1 / -1;

        width: 100%;

        flex-direction: column;

        gap: 4px;

        padding: 8px 0 3px;

        margin: 0;

        overflow: visible;
    }

    .nav-links.mobile-open {
        display: flex;
    }

    .nav-links li {
        width: 100%;
    }

    .nav-links a {
        width: 100%;

        padding: 11px 13px;

        font-size: 13px;
    }

    .cart-btn {
        padding: 9px 10px;

        font-size: 11px;
    }


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

    .hero {
        min-height: auto;
    }

    .hero-content {
        min-height: auto;

        display: flex;

        flex-direction: column;

        gap: 0;

        padding: 38px 0 45px;

        text-align: center;
    }

    .hero-text {
        padding: 0;
    }

    .hero-tag {
        font-size: 10px;

        margin-bottom: 13px;
    }

    .hero h1 {
        font-size: 39px;

        line-height: 1.08;

        margin-bottom: 15px;
    }

    .hero-text > p {
        font-size: 14px;

        line-height: 1.65;

        margin:
            0 auto 23px;
    }

    .hero-buttons {
        flex-direction: column;

        width: 100%;

        gap: 9px;
    }

    .hero-primary,
    .hero-secondary {
        width: 100%;

        min-height: 47px;
    }

    .hero-stats {
        justify-content: center;

        gap: 21px;

        margin-top: 27px;
    }

    .hero-stats strong {
        font-size: 17px;
    }

    .hero-stats span {
        font-size: 10px;
    }


    /* =====================================================
       HERO IMAGE
    ===================================================== */

    .hero-image {
        width: 100%;

        min-height: 285px;

        margin-top: 18px;
    }

    .hero-image img {
        width: 235px;
        height: 235px;

        border-radius: 23px;
    }

    .hero-circle {
        width: 235px;
        height: 235px;
    }

    .hero-badge {
        right:
            calc(50% - 135px);

        bottom: 0;

        width: 76px;
        height: 76px;
    }

    .hero-badge strong {
        font-size: 19px;
    }

    .hero-badge span {
        font-size: 8px;
    }


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

    .section {
        margin: 35px 0 45px;
    }

    .section-heading {
        margin-bottom: 22px;
    }

    .section-heading > span {
        font-size: 9px;
    }

    .section-heading h2 {
        font-size: 26px;

        line-height: 1.2;
    }

    .section-heading p {
        font-size: 13px;

        line-height: 1.55;
    }


    /* =====================================================
       FEATURES
    ===================================================== */

    .features {
        grid-template-columns: 1fr;

        gap: 10px;
    }

    .feature-card {
        padding: 20px;
    }


    /* =====================================================
       PRODUCT LIST
    ===================================================== */

    .category-title {
        font-size: 22px;

        margin:
            25px 0 10px;
    }

    .flex {
        display: flex;

        flex-direction: column;

        gap: 9px;
    }

    .product-card {
        display: grid;

        grid-template-columns:
            70px
            minmax(0, 1fr)
            auto;

        align-items: center;

        gap: 10px;

        width: 100%;

        min-height: 0;

        padding: 9px;

        border-radius: 11px;

        margin: 0;

        text-align: left;
    }

    .product-card img {
        width: 70px;
        height: 70px;

        padding: 3px;

        object-fit: cover;

        border-radius: 8px;

        margin: 0;
    }

    .product-card h2 {
        font-size: 13px;

        line-height: 1.25;

        margin: 0 0 4px;
    }

    .product-card p {
        font-size: 10px;

        line-height: 1.3;

        margin: 0 0 4px;
    }

    .product-card .price {
        font-size: 16px;

        margin: 0;
    }

    .add-to-cart {
        min-width: 73px;

        width: auto;

        min-height: 36px;

        padding: 8px 7px;

        font-size: 10px;

        border-radius: 7px;
    }


    /* =====================================================
       WHY US
    ===================================================== */

    .why-us {
        padding: 32px 18px;

        margin:
            25px 0 45px;
    }

    .why-us h2 {
        font-size: 24px;
    }

    .why-us > p {
        font-size: 13px;

        line-height: 1.6;
    }

    .why-grid {
        grid-template-columns: 1fr;

        gap: 5px;
    }

    .why-item {
        padding: 10px;
    }


    /* =====================================================
       CART
    ===================================================== */

    .cart-sidebar {
        width: 100%;

        max-width: 100%;

        right: -100%;

        padding: 20px;
    }

    .cart-sidebar.open {
        right: 0;
    }


    /* =====================================================
       ORDER FORM
    ===================================================== */

    .order-form-container {
        padding: 12px;
    }

    .order-form {
        padding: 22px;

        border-radius: 15px;
    }

    .order-form input,
    .order-form textarea {
        width: 100%;

        box-sizing: border-box;
    }


    /* =====================================================
       FOOTER
    ===================================================== */

    .footer {
        margin-top: 45px;
    }

    .footer-container {
        grid-template-columns: 1fr;

        gap: 30px;

        padding-top: 35px;

        padding-bottom: 30px;
    }

    .footer-brand,
    .footer-links,
    .footer-social {
        align-items: center;

        text-align: center;
    }

    .footer-brand p {
        margin: auto;
    }

    .footer-links a {
        margin-bottom: 8px;
    }

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

}


/* =========================================================
   SMALL PHONES
========================================================= */

@media (max-width: 380px) {

    .container {
        width: calc(100% - 22px);
    }

    .logo {
        font-size: 18px;
    }

    .cart-btn {
        font-size: 10px;

        padding: 8px;
    }

    .mobile-menu-btn {
        width: 38px;
        height: 38px;

        font-size: 19px;
    }

    .hero h1 {
        font-size: 33px;
    }

    .hero-stats {
        gap: 13px;
    }

    .hero-stats strong {
        font-size: 15px;
    }

    .hero-stats span {
        font-size: 9px;
    }

    .hero-image img,
    .hero-circle {
        width: 210px;
        height: 210px;
    }

    .hero-image {
        min-height: 255px;
    }

    .product-card {
        grid-template-columns:
            62px
            minmax(0, 1fr)
            auto;

        gap: 8px;

        padding: 8px;
    }

    .product-card img {
        width: 62px;
        height: 62px;
    }

    .product-card h2 {
        font-size: 12px;
    }

    .product-card p {
        font-size: 9px;
    }

    .product-card .price {
        font-size: 14px;
    }

    .add-to-cart {
        min-width: 65px;

        padding: 7px 5px;

        font-size: 9px;
    }

}

/* =====================================================
   PROFESSIONAL FOOTER
===================================================== */

.footer {
    width: 100%;
    background: #222222;
    color: #ffffff;
    padding: 68px 0 0;
    margin-top: 0;
}

.footer .container {
    width: 90%;
    max-width: 1500px;
    margin: 0 auto;
}


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

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
    gap: 70px;
    padding-bottom: 55px;
}


/* ================= BRAND ================= */

.footer-brand h2 {
    margin: 0 0 24px;
    font-size: 30px;
    font-weight: 700;
    color: #ffffff;
}

.footer-brand p {
    margin: 0;
    max-width: 430px;
    color: #bdbdbd;
    font-size: 16px;
    line-height: 1.8;
}


/* ================= HEADINGS ================= */

.footer-links h3,
.footer-social h3 {
    margin: 0 0 24px;
    font-size: 19px;
    font-weight: 700;
    color: #ffffff;
}


/* ================= FOOTER LINKS ================= */

.footer-links {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.footer-links a {
    color: #bdbdbd;
    text-decoration: none;
    font-size: 16px;
    margin-bottom: 18px;
    transition: 0.3s ease;
}

.footer-links a:hover {
    color: #ff6500;
    transform: translateX(4px);
}


/* ================= SOCIAL ================= */

.footer-social p {
    margin: 0 0 22px;
    color: #bdbdbd;
    font-size: 16px;
    line-height: 1.7;
}

.social-icons {
    display: flex;
    align-items: center;
    gap: 12px;
}

.social-icons a {
    width: 45px;
    height: 45px;
    border-radius: 50%;

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

    background: #353535;
    color: #ffffff;

    text-decoration: none;

    transition: 0.3s ease;
}

.social-icons ion-icon {
    font-size: 21px;
}

.social-icons a:hover {
    background: #ff6500;
    color: #ffffff;
    transform: translateY(-4px);
}


/* ================= FOOTER BOTTOM ================= */

.footer-bottom {
    border-top: 1px solid #3b3b3b;
    padding: 28px 0 34px;

    display: flex;
    align-items: center;
    justify-content: space-between;

    color: #999999;
    font-size: 14px;
}

.footer-bottom p {
    margin: 0;
}

.footer-bottom p:last-child {
    text-align: right;
}


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

@media (max-width: 1000px) {

    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 45px;
    }

}


@media (max-width: 600px) {

    .footer {
        padding-top: 50px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 35px;
        padding-bottom: 40px;
    }

    .footer-brand h2 {
        font-size: 27px;
    }

    .footer-bottom {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }

    .footer-bottom p:last-child {
        text-align: left;
    }

} 

.footer-bottom a {
    color: #ff6600;
    font-weight: 700;
    transition: 0.25s ease;
}

.footer-bottom a:hover {
    color: #ffffff;
}