/* =========================================================
   AARIDRA HOME PAGE
   ========================================================= */

:root {
    --aaridra-maroon: #65101d;
    --aaridra-maroon-dark: #470811;
    --aaridra-maroon-soft: #7d1b29;

    --aaridra-cream: #fbf8f3;
    --aaridra-warm: #f1e9df;

    --aaridra-gold: #b58a48;

    --aaridra-text: #2d2220;
    --aaridra-muted: #776a65;

    --aaridra-border: #e5ddd4;
}


/* =========================================================
   GENERAL HOME PAGE
   ========================================================= */

.home-announcement,
.home-header,
.home-hero,
.home-services,
.home-category-section,
.home-products-section,
.home-about-section,
.gallery-section,
.home-contact-section,
.home-footer {
    box-sizing: border-box;
}

body {
    overflow-x: hidden;
}

body.menu-open {
    overflow: hidden;
}


/* =========================================================
   ANNOUNCEMENT BAR
   ========================================================= */

.home-announcement {
    width: 100%;
    min-height: 34px;

    padding: 8px 30px;

    background: var(--aaridra-maroon);
    color: #fff;

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

    font-size: 9px;
    letter-spacing: 2.2px;
    text-transform: uppercase;

    box-sizing: border-box;
}

.home-announcement-center {
    opacity: 0.9;
}


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

.home-header {
    width: 100%;
    height: 88px;

    padding: 0 4.5%;

    background: #fff;

    border-bottom: 1px solid rgba(70, 25, 20, 0.08);

    display: grid;
    grid-template-columns: 1fr auto 1fr;

    align-items: center;

    position: relative;
    z-index: 50;
}


/* LEFT */

.home-header-left {
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

.home-menu-button {
    width: 42px;
    height: 42px;

    padding: 8px;

    border: none;
    background: transparent;

    cursor: pointer;

    display: flex;
    flex-direction: column;

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

    gap: 5px;
}

.home-menu-button span {
    display: block;

    width: 25px;
    height: 1px;

    background: var(--aaridra-maroon);

    transition: all 0.3s ease;
}


/* LOGO */

.home-logo {
    display: flex;

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

    text-decoration: none;
}

.home-logo img {
    display: block;

    width: auto;
    height: 78px;

    max-width: 110px;

    object-fit: contain;
}


/* RIGHT */

.home-header-right {
    display: flex;

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

    gap: 18px;
}

.home-header-icon {
    border: none;
    background: transparent;

    padding: 4px;

    color: var(--aaridra-maroon);

    font-size: 21px;

    cursor: pointer;
}

.home-cart-link {
    text-decoration: none;

    color: var(--aaridra-text);

    font-size: 11px;
    letter-spacing: 1.7px;

    display: inline-flex;
    align-items: center;

    gap: 6px;
}

.home-cart-link:hover {
    color: var(--aaridra-maroon);
}

.home-cart-count {
    min-width: 17px;
    height: 17px;

    border-radius: 50%;

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

    background: var(--aaridra-maroon);
    color: #fff;

    font-size: 8px;
    line-height: 1;
}


/* =========================================================
   SIDE MENU
   ========================================================= */

.home-menu-overlay {
    position: fixed;

    inset: 0;

    background: rgba(30, 15, 12, 0.35);

    opacity: 0;
    visibility: hidden;

    transition:
            opacity 0.35s ease,
            visibility 0.35s ease;

    z-index: 80;
}

.home-menu-overlay.open {
    opacity: 1;
    visibility: visible;
}

.home-side-menu {
    position: fixed;

    top: 0;
    left: 0;

    width: min(410px, 88vw);
    height: 100vh;

    background: var(--aaridra-cream);

    transform: translateX(-105%);

    transition: transform 0.45s cubic-bezier(0.77, 0, 0.175, 1);

    z-index: 90;

    display: flex;
    flex-direction: column;

    box-shadow: 15px 0 45px rgba(40, 15, 10, 0.08);
}

.home-side-menu.open {
    transform: translateX(0);
}

.home-menu-top {
    min-height: 90px;

    padding: 0 28px;

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

    border-bottom: 1px solid var(--aaridra-border);
}

.home-menu-logo img {
    width: auto;
    height: 65px;

    display: block;
}

.home-menu-close {
    width: 38px;
    height: 38px;

    border: none;
    background: transparent;

    font-size: 31px;
    font-weight: 200;

    color: var(--aaridra-maroon);

    cursor: pointer;
}

.home-menu-nav {
    padding: 25px 28px;

    display: flex;
    flex-direction: column;
}

.home-menu-link {
    min-height: 60px;

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

    text-decoration: none;

    color: var(--aaridra-text);

    border-bottom: 1px solid var(--aaridra-border);

    font-size: 14px;
    letter-spacing: 1px;

    transition:
            color 0.2s ease,
            padding-left 0.2s ease;
}

.home-menu-link:hover,
.home-menu-link.active {
    color: var(--aaridra-maroon);
    padding-left: 5px;
}

.home-menu-link span:last-child {
    color: #a99c96;

    font-size: 9px;
    letter-spacing: 2px;
}

.home-menu-bottom {
    margin-top: auto;

    padding: 25px 28px 35px;

    border-top: 1px solid var(--aaridra-border);

    display: flex;
    flex-direction: column;

    gap: 15px;
}

.home-menu-bottom a {
    text-decoration: none;

    color: var(--aaridra-text);

    font-size: 11px;
    letter-spacing: 1px;
}

.home-menu-bottom a:hover {
    color: var(--aaridra-maroon);
}

.home-menu-note {
    margin-top: 10px;

    color: var(--aaridra-muted);

    font-size: 11px;
    line-height: 1.7;
}


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

.home-hero {
    min-height: 690px;

    position: relative;

    background:
            linear-gradient(
                    105deg,
                    #f2e7dc 0%,
                    #f8eee6 46%,
                    #e8d8cb 100%
            );

    display: flex;
    align-items: center;

    overflow: hidden;
}

.home-hero::before {
    content: "";

    position: absolute;

    width: 560px;
    height: 560px;

    right: 11%;
    top: 50%;

    transform: translateY(-50%);

    border-radius: 50%;

    background:
            radial-gradient(
                    circle,
                    rgba(255,255,255,0.38) 0%,
                    rgba(255,255,255,0.08) 48%,
                    transparent 72%
            );
}

.home-hero-image {
    position: absolute;

    inset: 0;

    background:
            linear-gradient(
                    90deg,
                    rgba(247,235,225,0.96) 0%,
                    rgba(247,235,225,0.72) 44%,
                    rgba(247,235,225,0.05) 82%
            );
}

.home-hero-content {
    position: relative;
    z-index: 2;

    width: 55%;
    max-width: 700px;

    margin-left: 8.5%;

    padding: 60px 0;
}

.home-eyebrow {
    margin: 0 0 19px;

    color: var(--aaridra-maroon);

    font-size: 10px;
    letter-spacing: 4px;
    text-transform: uppercase;
}

.home-gold-line {
    width: 54px;
    height: 2px;

    margin-bottom: 27px;

    background: var(--aaridra-gold);
}

.home-hero h1 {
    margin: 0;

    color: var(--aaridra-maroon);

    font-family:
            Georgia,
            "Times New Roman",
            serif;

    font-size: clamp(68px, 7.2vw, 112px);

    font-weight: 400;

    line-height: 0.93;

    letter-spacing: -3px;
}

.home-hero-categories {
    margin: 34px 0 28px;

    color: var(--aaridra-maroon);

    font-size: 11px;
    letter-spacing: 3px;
}

.home-primary-button {
    min-height: 54px;

    padding: 0 29px;

    display: inline-flex;
    align-items: center;
    gap: 20px;

    text-decoration: none;

    background: var(--aaridra-maroon);
    color: #fff;

    font-size: 9px;
    font-weight: 600;
    letter-spacing: 2.1px;
    text-transform: uppercase;

    transition:
            background 0.25s ease,
            transform 0.25s ease;
}

.home-primary-button:hover {
    background: var(--aaridra-maroon-dark);
    transform: translateY(-2px);
}

.home-primary-button span {
    font-size: 15px;
}

.home-hero-side-copy {
    position: absolute;

    right: 5%;

    top: 50%;

    transform:
            translateY(-50%)
            rotate(90deg);

    transform-origin: center;

    color: rgba(101, 16, 29, 0.62);

    font-size: 9px;
    line-height: 1.7;

    letter-spacing: 4px;
    text-transform: uppercase;

    text-align: center;

    z-index: 2;
}


/* =========================================================
   SERVICES
   ========================================================= */

.home-services {
    min-height: 108px;

    padding: 0 5%;

    background: #fff;

    border-bottom: 1px solid var(--aaridra-border);

    display: grid;

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

    align-items: stretch;
}

.home-service {
    padding: 25px 25px;

    display: flex;
    align-items: center;

    justify-content: center;

    gap: 14px;

    border-right: 1px solid var(--aaridra-border);
}

.home-service:last-child {
    border-right: none;
}

.home-service-icon {
    color: var(--aaridra-maroon);

    font-size: 25px;
    font-weight: 300;
}

.home-service strong {
    display: block;

    margin-bottom: 4px;

    color: var(--aaridra-text);

    font-size: 9px;
    letter-spacing: 1.6px;
}

.home-service small {
    display: block;

    color: var(--aaridra-muted);

    font-size: 10px;
}


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

.home-section-heading {
    text-align: center;

    margin-bottom: 52px;
}

.home-section-heading h2 {
    margin: 0;

    color: var(--aaridra-maroon);

    font-family:
            Georgia,
            "Times New Roman",
            serif;

    font-size: clamp(40px, 4vw, 57px);

    font-weight: 400;

    line-height: 1.05;
}

.home-heading-line {
    width: 57px;
    height: 3px;

    margin: 24px auto 0;

    background: var(--aaridra-gold);
}

.home-section-heading-row {
    display: flex;

    align-items: flex-end;
    justify-content: space-between;

    text-align: left;
}

.home-section-heading-row .home-eyebrow {
    margin-bottom: 12px;
}

.home-view-all {
    padding-bottom: 5px;

    color: var(--aaridra-maroon);

    text-decoration: none;

    font-size: 9px;
    letter-spacing: 2px;

    border-bottom: 1px solid var(--aaridra-maroon);
}


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

.home-category-section {
    padding: 110px 4.5%;

    background: var(--aaridra-cream);
}

.home-category-grid {
    max-width: 1500px;

    margin: 0 auto;

    display: grid;

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

    gap: 25px;
}

.home-category-card {
    min-height: 570px;

    position: relative;

    overflow: hidden;

    display: flex;
    align-items: flex-end;

    text-decoration: none;

    background:
            linear-gradient(
                    145deg,
                    #e3d9cf 0%,
                    #b19d8e 52%,
                    #6f5a50 100%
            );

    transition: transform 0.45s ease;
}

.home-category-card::before {
    content: "";

    position: absolute;

    inset: 0;

    background:
            linear-gradient(
                    to top,
                    rgba(30, 13, 10, 0.62),
                    rgba(30, 13, 10, 0.05) 60%,
                    transparent
            );
}

.home-saree-category {
    background:
            linear-gradient(
                    145deg,
                    #eee6de,
                    #c4ada0,
                    #68564f
            );
}

.home-kurta-category {
    background:
            linear-gradient(
                    145deg,
                    #e4dbd2,
                    #a98d7b,
                    #584943
            );
}

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

.home-category-content {
    position: relative;
    z-index: 2;

    padding: 35px;
}

.home-category-content p {
    margin: 0 0 7px;

    color: rgba(255,255,255,0.78);

    font-size: 9px;
    letter-spacing: 3px;
    text-transform: uppercase;
}

.home-category-content h3 {
    margin: 0 0 19px;

    color: #fff;

    font-family:
            Georgia,
            "Times New Roman",
            serif;

    font-size: 45px;

    font-weight: 400;
}

.home-category-content span {
    color: #fff;

    font-size: 9px;
    letter-spacing: 2px;
}


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

.home-products-section {
    padding: 110px 4.5%;

    background: #fff;
}

.home-bestsellers-section {
    background: var(--aaridra-cream);
}

.home-product-grid {
    max-width: 1500px;

    margin: 0 auto;

    display: grid;

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

    gap: 24px;
}

.home-loading {
    grid-column: 1 / -1;

    margin: 35px 0;

    text-align: center;

    color: var(--aaridra-muted);

    font-size: 12px;
}

.home-product-card {
    min-width: 0;

    text-decoration: none;

    color: var(--aaridra-text);

    display: block;
}

.home-product-image {
    width: 100%;

    aspect-ratio: 0.78;

    position: relative;

    overflow: hidden;

    background:
            linear-gradient(
                    145deg,
                    #eadfd5,
                    #bca79a,
                    #d8c6ba
            );

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

.home-product-image img {
    display: block;

    width: 100%;
    height: 100%;

    object-fit: cover;

    transition: transform 0.6s ease;
}

.home-product-card:hover .home-product-image img {
    transform: scale(1.035);
}

.home-product-image span {
    color: rgba(255,255,255,0.78);

    font-size: 10px;
    letter-spacing: 4px;
}

.home-product-info {
    padding-top: 17px;
}

.home-product-info p {
    margin: 0 0 7px;

    color: #917b70;

    font-size: 8px;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.home-product-info h3 {
    margin: 0 0 11px;

    color: var(--aaridra-text);

    font-family:
            Georgia,
            "Times New Roman",
            serif;

    font-size: 18px;

    font-weight: 400;
}

.home-product-price {
    display: flex;

    align-items: center;

    gap: 9px;

    color: var(--aaridra-maroon);

    font-size: 12px;
    letter-spacing: 0.8px;
}

.home-original-price {
    color: #a59a95;

    text-decoration: line-through;

    font-size: 10px;
}


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

.home-about-section {
    min-height: 650px;

    display: grid;

    grid-template-columns:
        1fr 1fr;

    background: #eee6dd;
}

.home-about-image {
    min-height: 650px;

    background:
            linear-gradient(
                    145deg,
                    #c2ad9f,
                    #e2d4c9 48%,
                    #9d8273
            );

    position: relative;
}

.home-about-image::after {
    content: "AARIDRA";

    position: absolute;

    inset: 0;

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

    color: rgba(255,255,255,0.7);

    font-size: 12px;
    letter-spacing: 6px;
}

.home-about-content {
    padding: 80px 10%;

    display: flex;

    flex-direction: column;

    justify-content: center;
}

.home-about-content h2 {
    margin: 0 0 28px;

    color: var(--aaridra-maroon);

    font-family:
            Georgia,
            "Times New Roman",
            serif;

    font-size: clamp(40px, 4vw, 60px);

    font-weight: 400;

    line-height: 1.05;
}

.home-about-content > p {
    max-width: 470px;

    margin: 0 0 18px;

    color: #706560;

    font-size: 14px;

    line-height: 1.9;
}


/* =========================================================
   AARIDRA MOMENTS
   TRUE FLOATING EDITORIAL COLLAGE
   ========================================================= */

.gallery-section {
    position: relative;
    padding: 120px 4.5% 150px;

    background: var(--aaridra-cream);

    overflow: hidden;
}

.gallery-heading {
    position: relative;
    z-index: 30;

    margin-bottom: 45px;

    text-align: center;
}

.gallery-heading h2 {
    margin: 0;

    color: var(--aaridra-maroon);

    font-family:
            Georgia,
            "Times New Roman",
            serif;

    font-size: clamp(42px, 4.5vw, 58px);

    font-weight: 400;
}

.gallery-heading .section-eyebrow {
    margin-bottom: 18px;
}


/* =========================================================
   FLOATING COLLAGE CONTAINER
   ========================================================= */

.gallery-grid {
    position: relative;

    width: min(1450px, 100%);

    height: 560px;

    margin: 0 auto;

    padding: 0;

    display: block;

    isolation: isolate;
}


/* =========================================================
   COMMON FLOATING CARD
   ========================================================= */

.gallery-image {
    position: absolute;

    width: 245px;
    height: 330px;

    margin: 0 !important;
    padding: 0;

    box-sizing: border-box;

    overflow: hidden;

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

    border: 8px solid var(--aaridra-cream);

    background:
            linear-gradient(
                    145deg,
                    #eaded3,
                    #a77c6a,
                    #ddc9bc
            );

    box-shadow:
            0 18px 38px rgba(55, 30, 25, 0.13);

    will-change: transform;

    cursor: pointer;

    transition:
            box-shadow 0.45s ease,
            filter 0.45s ease;
}


/* =========================================================
   CARD 1
   ========================================================= */

.gallery-image:nth-child(1) {
    left: 2.5%;
    top: 105px;

    z-index: 2;

    background:
            linear-gradient(
                    145deg,
                    #eee4db,
                    #b18c7b,
                    #d5c0b1
            );

    animation:
            aaridraFloatOne
            7s
            ease-in-out
            infinite;
}


/* =========================================================
   CARD 2
   ========================================================= */

.gallery-image:nth-child(2) {
    left: 21%;
    top: 45px;

    z-index: 5;

    background:
            linear-gradient(
                    145deg,
                    #dfcec1,
                    #a98575,
                    #e8ddd6
            );

    animation:
            aaridraFloatTwo
            8s
            ease-in-out
            infinite;

    animation-delay: -1.5s;
}


/* =========================================================
   CARD 3 - CENTER
   ========================================================= */

.gallery-image:nth-child(3) {
    left: 40.2%;
    top: 0;

    width: 270px;
    height: 370px;

    z-index: 12;

    background:
            linear-gradient(
                    145deg,
                    #efe6dd,
                    #ae8877,
                    #d6c1b4
            );

    box-shadow:
            0 30px 65px rgba(55, 30, 25, 0.18);

    animation:
            aaridraFloatCenter
            6.5s
            ease-in-out
            infinite;

    animation-delay: -2s;
}


/* =========================================================
   CARD 4
   ========================================================= */

.gallery-image:nth-child(4) {
    left: 59.5%;
    top: 48px;

    z-index: 5;

    background:
            linear-gradient(
                    145deg,
                    #d9c5b8,
                    #9c7566,
                    #e4d8d0
            );

    animation:
            aaridraFloatFour
            8.5s
            ease-in-out
            infinite;

    animation-delay: -3.5s;
}


/* =========================================================
   CARD 5
   ========================================================= */

.gallery-image:nth-child(5) {
    left: 78.5%;
    top: 108px;

    z-index: 2;

    background:
            linear-gradient(
                    145deg,
                    #e7d8cd,
                    #a77b69,
                    #d4b9aa
            );

    animation:
            aaridraFloatFive
            7.5s
            ease-in-out
            infinite;

    animation-delay: -4.5s;
}


/* =========================================================
   LABEL
   ========================================================= */

.gallery-image span {
    position: relative;

    z-index: 3;

    color: rgba(255, 255, 255, 0.86);

    font-size: 10px;
    letter-spacing: 4px;
}


/* =========================================================
   FLOAT ANIMATIONS
   ========================================================= */

@keyframes aaridraFloatOne {

    0% {
        transform:
                translate3d(0, 0, 0)
                rotate(-7deg);
    }

    25% {
        transform:
                translate3d(5px, -14px, 0)
                rotate(-5deg);
    }

    50% {
        transform:
                translate3d(0, -24px, 0)
                rotate(-8deg);
    }

    75% {
        transform:
                translate3d(-5px, -10px, 0)
                rotate(-6deg);
    }

    100% {
        transform:
                translate3d(0, 0, 0)
                rotate(-7deg);
    }
}


@keyframes aaridraFloatTwo {

    0% {
        transform:
                translate3d(0, 0, 0)
                rotate(-3.5deg);
    }

    25% {
        transform:
                translate3d(-5px, -18px, 0)
                rotate(-5deg);
    }

    50% {
        transform:
                translate3d(3px, -30px, 0)
                rotate(-2deg);
    }

    75% {
        transform:
                translate3d(7px, -12px, 0)
                rotate(-4deg);
    }

    100% {
        transform:
                translate3d(0, 0, 0)
                rotate(-3.5deg);
    }
}


@keyframes aaridraFloatCenter {

    0% {
        transform:
                translate3d(0, 0, 0)
                rotate(1deg);
    }

    25% {
        transform:
                translate3d(0, -18px, 0)
                rotate(2deg);
    }

    50% {
        transform:
                translate3d(0, -30px, 0)
                rotate(-1deg);
    }

    75% {
        transform:
                translate3d(0, -14px, 0)
                rotate(1.5deg);
    }

    100% {
        transform:
                translate3d(0, 0, 0)
                rotate(1deg);
    }
}


@keyframes aaridraFloatFour {

    0% {
        transform:
                translate3d(0, 0, 0)
                rotate(4deg);
    }

    25% {
        transform:
                translate3d(6px, -14px, 0)
                rotate(5deg);
    }

    50% {
        transform:
                translate3d(0, -27px, 0)
                rotate(3deg);
    }

    75% {
        transform:
                translate3d(-6px, -11px, 0)
                rotate(5deg);
    }

    100% {
        transform:
                translate3d(0, 0, 0)
                rotate(4deg);
    }
}


@keyframes aaridraFloatFive {

    0% {
        transform:
                translate3d(0, 0, 0)
                rotate(7deg);
    }

    25% {
        transform:
                translate3d(-5px, -16px, 0)
                rotate(5deg);
    }

    50% {
        transform:
                translate3d(0, -25px, 0)
                rotate(8deg);
    }

    75% {
        transform:
                translate3d(5px, -10px, 0)
                rotate(6deg);
    }

    100% {
        transform:
                translate3d(0, 0, 0)
                rotate(7deg);
    }
}


/* =========================================================
   HOVER
   ========================================================= */

.gallery-image:hover {
    animation-play-state: paused;

    z-index: 50;

    box-shadow:
            0 35px 75px rgba(50, 25, 20, 0.25);

    filter: brightness(1.03);
}


/* =========================================================
   CONTACT
   ========================================================= */

.home-contact-section {
    padding: 110px 5%;

    background: #fff;

    text-align: center;
}

.home-contact-section h2 {
    margin: 0 0 20px;

    color: var(--aaridra-maroon);

    font-family:
            Georgia,
            "Times New Roman",
            serif;

    font-size: clamp(40px, 4.5vw, 58px);

    font-weight: 400;
}

.home-contact-section > p:not(.home-eyebrow) {
    max-width: 560px;

    margin: 0 auto 30px;

    color: var(--aaridra-muted);

    font-size: 14px;

    line-height: 1.8;
}

.home-contact-links {
    display: flex;

    justify-content: center;

    gap: 25px;
}

.home-contact-links a {
    min-width: 130px;

    padding: 14px 22px;

    border: 1px solid var(--aaridra-maroon);

    color: var(--aaridra-maroon);

    text-decoration: none;

    font-size: 9px;
    letter-spacing: 2px;

    transition:
            background 0.25s ease,
            color 0.25s ease;
}

.home-contact-links a:hover {
    background: var(--aaridra-maroon);
    color: #fff;
}


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

.home-footer {
    background: var(--aaridra-maroon-dark);

    color: #fff;
}

.home-footer-main {
    padding: 70px 5% 55px;

    display: grid;

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

    gap: 50px;
}

.home-footer-brand img {
    width: auto;
    height: 95px;

    display: block;

    margin-bottom: 18px;
}

.home-footer-brand p {
    max-width: 250px;

    margin: 0;

    color: rgba(255,255,255,0.7);

    font-size: 12px;

    line-height: 1.7;
}

.home-footer-column {
    display: flex;

    flex-direction: column;

    gap: 11px;
}

.home-footer-column h3 {
    margin: 0 0 10px;

    color: #fff;

    font-size: 9px;
    letter-spacing: 2px;
}

.home-footer-column a {
    color: rgba(255,255,255,0.68);

    text-decoration: none;

    font-size: 11px;

    transition: color 0.2s ease;
}

.home-footer-column a:hover {
    color: #fff;
}

.home-footer-bottom {
    padding: 18px 5%;

    border-top: 1px solid rgba(255,255,255,0.12);

    display: flex;

    justify-content: space-between;

    gap: 20px;

    color: rgba(255,255,255,0.5);

    font-size: 8px;
    letter-spacing: 1.5px;
}


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

@media (max-width: 1000px) {

    .home-announcement {
        gap: 12px;

        font-size: 8px;
        letter-spacing: 1.6px;
    }

    .home-header {
        height: 78px;
    }

    .home-logo img {
        height: 60px;
    }

    .home-hero {
        min-height: 620px;
    }

    .home-hero-content {
        width: 65%;
        margin-left: 6%;
    }

    .home-hero h1 {
        font-size: 72px;
    }

    .home-services {
        grid-template-columns: repeat(2, 1fr);
    }

    .home-service:nth-child(2) {
        border-right: none;
    }

    .home-service:nth-child(3),
    .home-service:nth-child(4) {
        border-top: 1px solid var(--aaridra-border);
    }

    .home-category-section,
    .home-products-section {
        padding-left: 30px;
        padding-right: 30px;
    }

    .home-category-card {
        min-height: 490px;
    }

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

    .home-product-card:nth-child(4) {
        display: none;
    }

    .home-about-section {
        grid-template-columns: 1fr;
    }

    .home-about-image {
        min-height: 500px;
    }

    .home-about-content {
        padding: 70px 8%;
    }

    .gallery-section {
        padding: 95px 25px 120px;
    }

    .gallery-grid {
        width: 100%;
        height: 470px;
    }

    .gallery-image {
        width: 190px;
        height: 270px;
        border-width: 6px;
    }

    .gallery-image:nth-child(1) {
        left: 1%;
        top: 95px;
    }

    .gallery-image:nth-child(2) {
        left: 20%;
        top: 42px;
    }

    .gallery-image:nth-child(3) {
        left: 39%;
        top: 0;

        width: 215px;
        height: 300px;
    }

    .gallery-image:nth-child(4) {
        left: 59%;
        top: 45px;
    }

    .gallery-image:nth-child(5) {
        left: 78%;
        top: 95px;
    }

    .home-footer-main {
        grid-template-columns:
            1.5fr 1fr 1fr;

        gap: 40px;
    }

    .home-footer-brand {
        grid-column: 1 / -1;
    }

}


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

@media (max-width: 600px) {

    .home-announcement {
        min-height: 30px;

        padding: 7px 10px;

        justify-content: center;

        font-size: 7px;
        letter-spacing: 1.2px;

        text-align: center;
    }

    .home-announcement > span:first-child,
    .home-announcement > span:last-child {
        display: none;
    }

    .home-announcement-center {
        display: block;
    }


    .home-header {
        height: 70px;

        padding: 0 18px;
    }

    .home-logo img {
        height: 57px;
    }

    .home-header-icon {
        display: none;
    }

    .home-cart-link {
        font-size: 9px;
        letter-spacing: 1.4px;
    }


    /* HERO */

    .home-hero {
        min-height: 635px;

        align-items: flex-start;
    }

    .home-hero-content {
        width: 100%;

        margin-left: 0;

        padding: 95px 25px 50px;
    }

    .home-hero h1 {
        font-size: 61px;

        letter-spacing: -2px;
    }

    .home-hero-categories {
        margin-top: 27px;

        font-size: 9px;

        letter-spacing: 2px;
    }

    .home-primary-button {
        min-height: 50px;

        padding: 0 23px;
    }

    .home-hero-side-copy {
        display: none;
    }


    /* SERVICES */

    .home-services {
        grid-template-columns: 1fr;

        padding: 0;
    }

    .home-service {
        min-height: 85px;

        justify-content: flex-start;

        padding: 20px 25px;

        border-right: none;

        border-bottom: 1px solid var(--aaridra-border);
    }

    .home-service:nth-child(3) {
        border-top: none;
    }

    .home-service:last-child {
        border-bottom: none;
    }


    /* SECTION HEADINGS */

    .home-section-heading {
        margin-bottom: 37px;
    }

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

    .home-section-heading-row {
        align-items: flex-end;
    }

    .home-view-all {
        font-size: 8px;
    }


    /* CATEGORY */

    .home-category-section {
        padding: 75px 20px;
    }

    .home-category-grid {
        grid-template-columns: 1fr;

        gap: 18px;
    }

    .home-category-card {
        min-height: 430px;
    }

    .home-category-content {
        padding: 25px;
    }

    .home-category-content h3 {
        font-size: 38px;
    }


    /* PRODUCTS */

    .home-products-section {
        padding: 75px 20px;
    }

    .home-product-grid {
        grid-template-columns: repeat(2, 1fr);

        gap: 28px 12px;
    }

    .home-product-card:nth-child(4) {
        display: block;
    }

    .home-product-image {
        aspect-ratio: 0.76;
    }

    .home-product-info h3 {
        font-size: 14px;
    }

    .home-product-info p {
        font-size: 7px;
    }

    .home-product-price {
        font-size: 10px;
    }


    /* ABOUT */

    .home-about-image {
        min-height: 370px;
    }

    .home-about-content {
        padding: 60px 25px;
    }

    .home-about-content h2 {
        font-size: 40px;
    }

    .home-about-content > p {
        font-size: 13px;
    }


    /* =====================================================
       AARIDRA MOMENTS - MOBILE
       ===================================================== */

    .gallery-section {
        padding: 80px 18px 90px;
        overflow: hidden;
    }

    .gallery-heading {
        margin-bottom: 25px;
    }

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

    .gallery-grid {
        width: 100%;
        height: 545px;

        position: relative;

        display: block;

        padding: 0;
        min-height: 0;
    }

    .gallery-image {
        position: absolute;

        width: 145px;
        height: 205px;

        border-width: 5px;

        margin: 0 !important;
    }

    .gallery-image:nth-child(1) {
        left: 0;
        top: 110px;

        animation-name: aaridraMobileOne;
        animation-duration: 6.5s;
    }

    .gallery-image:nth-child(2) {
        left: 17%;
        top: 48px;

        animation-name: aaridraMobileTwo;
        animation-duration: 7.5s;
        animation-delay: -1.2s;
    }

    .gallery-image:nth-child(3) {
        left: 31%;
        top: 0;

        width: 165px;
        height: 230px;

        animation-name: aaridraMobileCenter;
        animation-duration: 6s;
        animation-delay: -2s;
    }

    .gallery-image:nth-child(4) {
        left: 51%;
        top: 52px;

        animation-name: aaridraMobileFour;
        animation-duration: 8s;
        animation-delay: -3s;
    }

    .gallery-image:nth-child(5) {
        left: 69%;
        top: 115px;

        animation-name: aaridraMobileFive;
        animation-duration: 7s;
        animation-delay: -4s;
    }

    .gallery-image span {
        font-size: 8px;
        letter-spacing: 3px;
    }

    .gallery-image:hover {
        animation-play-state: paused;
    }


    /* =====================================================
       MOBILE FLOATING MOTION
       ===================================================== */

    @keyframes aaridraMobileOne {

        0% {
            transform:
                    translate3d(0, 0, 0)
                    rotate(-8deg);
        }

        50% {
            transform:
                    translate3d(0, -16px, 0)
                    rotate(-5deg);
        }

        100% {
            transform:
                    translate3d(0, 0, 0)
                    rotate(-8deg);
        }
    }

    @keyframes aaridraMobileTwo {

        0% {
            transform:
                    translate3d(0, 0, 0)
                    rotate(-4deg);
        }

        50% {
            transform:
                    translate3d(0, -24px, 0)
                    rotate(-2deg);
        }

        100% {
            transform:
                    translate3d(0, 0, 0)
                    rotate(-4deg);
        }
    }

    @keyframes aaridraMobileCenter {

        0% {
            transform:
                    translate3d(0, 0, 0)
                    rotate(0deg);
        }

        50% {
            transform:
                    translate3d(0, -28px, 0)
                    rotate(1.5deg);
        }

        100% {
            transform:
                    translate3d(0, 0, 0)
                    rotate(0deg);
        }
    }

    @keyframes aaridraMobileFour {

        0% {
            transform:
                    translate3d(0, 0, 0)
                    rotate(4deg);
        }

        50% {
            transform:
                    translate3d(0, -20px, 0)
                    rotate(2deg);
        }

        100% {
            transform:
                    translate3d(0, 0, 0)
                    rotate(4deg);
        }
    }

    @keyframes aaridraMobileFive {

        0% {
            transform:
                    translate3d(0, 0, 0)
                    rotate(8deg);
        }

        50% {
            transform:
                    translate3d(0, -15px, 0)
                    rotate(5deg);
        }

        100% {
            transform:
                    translate3d(0, 0, 0)
                    rotate(8deg);
        }
    }


    /* CONTACT */

    .home-contact-section {
        padding: 75px 20px;
    }

    .home-contact-section h2 {
        font-size: 39px;
    }

    .home-contact-section > p:not(.home-eyebrow) {
        font-size: 13px;
    }

    .home-contact-links {
        flex-direction: column;

        align-items: center;

        gap: 12px;
    }

    .home-contact-links a {
        width: 190px;
    }


    /* FOOTER */

    .home-footer-main {
        grid-template-columns: repeat(2, 1fr);

        padding:
                55px 25px
                45px;

        gap: 38px 24px;
    }

    .home-footer-brand {
        grid-column: 1 / -1;
    }

    .home-footer-column {
        gap: 9px;
    }

    .home-footer-bottom {
        padding: 20px 25px;

        flex-direction: column;

        align-items: flex-start;
    }

}