/* =========================================================
   AARIDRA - MAIN WEBSITE STYLES
   ========================================================= */


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

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: Arial, Helvetica, sans-serif;
    color: #222;
    background: #fdfcf9;
    line-height: 1.5;
}

a {
    color: inherit;
    text-decoration: none;
}

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


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

.announcement-bar {
    height: 34px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #222;
    color: #fff;
    font-size: 10px;
    letter-spacing: 2px;
    font-weight: 500;
}


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

.site-header {
    height: 82px;
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    padding: 0 5%;
    background: #fdfcf9;
    border-bottom: 1px solid #e8e5df;
    position: relative;
    z-index: 20;
}

.header-left {
    display: flex;
    align-items: center;
}

.desktop-nav {
    display: flex;
    align-items: center;
    gap: 30px;
}

.desktop-nav a,
.header-cart {
    font-size: 12px;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    color: #333;
    transition: opacity 0.2s ease;
}

.desktop-nav a:hover,
.header-cart:hover {
    opacity: 0.55;
}

.main-logo {
    font-size: 29px;
    font-weight: 500;
    letter-spacing: 6px;
    color: #222;
    white-space: nowrap;
}

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

.header-icon {
    font-size: 20px;
    line-height: 1;
}

.header-cart {
    display: inline-block;
}

.menu-button {
    display: none;
    border: none;
    background: transparent;
    font-size: 22px;
    cursor: pointer;
}


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

.mobile-menu {
    display: none;
}


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

.hero-section {
    width: 100%;
}

.hero-image-placeholder {
    min-height: 680px;
    background:
            linear-gradient(
                    90deg,
                    rgba(25, 20, 18, 0.62),
                    rgba(25, 20, 18, 0.22),
                    rgba(25, 20, 18, 0.05)
            ),
            linear-gradient(
                    135deg,
                    #c9b7a5,
                    #e6ddd3 45%,
                    #b8a18e
            );
    display: flex;
    align-items: center;
    position: relative;
}

.hero-image-placeholder::after {
    content: "AARIDRA";
    position: absolute;
    right: 8%;
    bottom: 8%;
    color: rgba(255, 255, 255, 0.35);
    font-size: 13px;
    letter-spacing: 7px;
}

.hero-overlay {
    width: 90%;
    max-width: 1250px;
    margin: 0 auto;
    color: #fff;
}

.hero-small-text {
    font-size: 11px;
    letter-spacing: 4px;
    margin-bottom: 22px;
}

.hero-overlay h1 {
    font-size: clamp(52px, 7vw, 94px);
    line-height: 0.98;
    font-weight: 400;
    letter-spacing: -2px;
    margin-bottom: 35px;
}

.hero-button {
    display: inline-block;
    padding: 16px 34px;
    background: #fff;
    color: #222;
    font-size: 11px;
    letter-spacing: 2px;
    transition: all 0.2s ease;
}

.hero-button:hover {
    background: #222;
    color: #fff;
}


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

.section-eyebrow {
    font-size: 10px;
    letter-spacing: 3.5px;
    color: #8b827a;
    margin-bottom: 16px;
}

.intro-section {
    max-width: 780px;
    margin: 0 auto;
    padding: 110px 25px;
    text-align: center;
}

.intro-section h2 {
    font-size: clamp(34px, 4vw, 50px);
    line-height: 1.12;
    font-weight: 400;
    margin-bottom: 25px;
}

.intro-text {
    max-width: 590px;
    margin: 0 auto 28px;
    color: #777;
    font-size: 15px;
    line-height: 1.8;
}

.text-link {
    display: inline-block;
    font-size: 10px;
    letter-spacing: 2px;
    border-bottom: 1px solid #333;
    padding-bottom: 5px;
    transition: opacity 0.2s ease;
}

.text-link:hover {
    opacity: 0.55;
}


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

.home-products-section {
    padding: 0 5% 110px;
}

.section-heading-row {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 35px;
}

.section-heading-row h2 {
    font-size: 38px;
    font-weight: 400;
    line-height: 1.1;
}

.view-all-link {
    font-size: 10px;
    letter-spacing: 2px;
    border-bottom: 1px solid #333;
    padding-bottom: 5px;
}

.home-product-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
}

.home-product-card {
    display: block;
}

.home-product-image {
    aspect-ratio: 0.78;
    background:
            linear-gradient(
                    135deg,
                    #ded2c6,
                    #b9a18e 55%,
                    #eee8e1
            );
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    transition: transform 0.35s ease;
}

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

.home-product-image span {
    color: rgba(255, 255, 255, 0.75);
    font-size: 11px;
    letter-spacing: 5px;
}

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

.home-product-info p {
    color: #8b827a;
    font-size: 9px;
    letter-spacing: 2px;
    margin-bottom: 7px;
}

.home-product-info h3 {
    font-size: 15px;
    font-weight: 400;
    margin-bottom: 9px;
}

.home-product-info span {
    font-size: 9px;
    letter-spacing: 1.7px;
    border-bottom: 1px solid #444;
    padding-bottom: 3px;
}


/* =========================================================
   COLLECTIONS
   ========================================================= */

.collections-section {
    padding: 105px 5%;
    background: #f3f0eb;
}

.collections-heading {
    text-align: center;
    margin-bottom: 45px;
}

.collections-heading h2 {
    font-size: 42px;
    font-weight: 400;
}

.collection-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
    max-width: 1400px;
    margin: 0 auto;
}

.collection-card {
    display: block;
    background: #fff;
}

.collection-image {
    aspect-ratio: 1.35;
    background:
            linear-gradient(
                    135deg,
                    #b9a394,
                    #ddd2c7 50%,
                    #aa9180
            );
    display: flex;
    align-items: center;
    justify-content: center;
}

.collection-image span {
    color: rgba(255, 255, 255, 0.75);
    font-size: 11px;
    letter-spacing: 5px;
}

.collection-content {
    padding: 25px 25px 28px;
}

.collection-content h3 {
    font-size: 24px;
    font-weight: 400;
    margin-bottom: 7px;
}

.collection-content p {
    color: #777;
    font-size: 13px;
    margin-bottom: 17px;
}

.collection-content span {
    font-size: 9px;
    letter-spacing: 1.8px;
    border-bottom: 1px solid #444;
    padding-bottom: 4px;
}


/* =========================================================
   BEST SELLERS
   ========================================================= */

.best-sellers-section {
    padding-top: 110px;
}


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

.brand-story-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 650px;
    background: #eee9e2;
}

.brand-story-image {
    min-height: 600px;
    background:
            linear-gradient(
                    135deg,
                    #bba999,
                    #dcd0c5 48%,
                    #9e8877
            );
    display: flex;
    align-items: center;
    justify-content: center;
}

.brand-story-image span {
    color: rgba(255, 255, 255, 0.7);
    font-size: 12px;
    letter-spacing: 6px;
}

.brand-story-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 80px 10%;
}

.brand-story-content h2 {
    font-size: clamp(38px, 4vw, 58px);
    font-weight: 400;
    line-height: 1.08;
    margin-bottom: 28px;
}

.brand-story-content p {
    max-width: 470px;
    color: #6f6963;
    font-size: 14px;
    line-height: 1.9;
    margin-bottom: 18px;
}


/* =========================================================
   GALLERY
   ========================================================= */

.gallery-section {
    padding: 110px 5%;
    background: #fdfcf9;
}

.gallery-heading {
    text-align: center;
    margin-bottom: 45px;
}

.gallery-heading h2 {
    font-size: 40px;
    font-weight: 400;
}

.gallery-grid {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr 1fr 0.85fr 1.15fr;
    gap: 8px;
    max-width: 1500px;
    margin: 0 auto;
}

.gallery-image {
    aspect-ratio: 0.78;
    background:
            linear-gradient(
                    145deg,
                    #d8ccc1,
                    #b19b89,
                    #e3dbd2
            );
    display: flex;
    align-items: center;
    justify-content: center;
}

.gallery-image span {
    color: rgba(255, 255, 255, 0.7);
    font-size: 9px;
    letter-spacing: 4px;
}


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

.service-section {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    border-top: 1px solid #e6e1da;
    border-bottom: 1px solid #e6e1da;
    background: #fff;
}

.service-item {
    padding: 55px 30px;
    text-align: center;
    border-right: 1px solid #e6e1da;
}

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

.service-icon {
    font-size: 23px;
    margin-bottom: 17px;
    font-weight: 300;
}

.service-item h3 {
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 9px;
}

.service-item p {
    font-size: 12px;
    color: #888;
}


/* =========================================================
   NEWSLETTER
   ========================================================= */

.newsletter-section {
    padding: 105px 20px;
    text-align: center;
    background: #eee9e2;
}

.newsletter-section h2 {
    font-size: 42px;
    font-weight: 400;
    margin-bottom: 15px;
}

.newsletter-section > p:not(.section-eyebrow) {
    color: #777;
    font-size: 14px;
    margin-bottom: 30px;
}

.newsletter-form {
    display: flex;
    max-width: 500px;
    margin: 0 auto;
    border-bottom: 1px solid #555;
}

.newsletter-form input {
    flex: 1;
    min-width: 0;
    padding: 14px 5px;
    border: none;
    outline: none;
    background: transparent;
    font-size: 13px;
}

.newsletter-form input::placeholder {
    color: #999;
}

.newsletter-form button {
    border: none;
    background: transparent;
    padding: 14px 5px;
    font-size: 9px;
    letter-spacing: 2px;
    cursor: pointer;
}


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

.site-footer,
footer {
    background: #222;
    color: #fff;
}

.footer-main {
    display: grid;
    grid-template-columns: 2fr repeat(3, 1fr);
    gap: 50px;
    padding: 75px 6%;
}

.footer-brand h2 {
    font-size: 25px;
    font-weight: 500;
    letter-spacing: 5px;
    margin-bottom: 17px;
}

.footer-brand p {
    color: #aaa;
    font-size: 12px;
    max-width: 260px;
    line-height: 1.7;
}

.footer-column {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-column h3 {
    font-size: 10px;
    letter-spacing: 2px;
    font-weight: 500;
    margin-bottom: 8px;
}

.footer-column a {
    color: #aaa;
    font-size: 12px;
    transition: color 0.2s ease;
}

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

.footer-bottom {
    border-top: 1px solid #3b3b3b;
    padding: 22px 6%;
    display: flex;
    justify-content: space-between;
    gap: 20px;
    color: #888;
    font-size: 10px;
}


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

.products-page {
    padding: 80px 5% 110px;
    background: #fdfcf9;
}

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

.products-heading h1 {
    font-size: 48px;
    font-weight: 400;
    margin-bottom: 15px;
}

.products-subtitle {
    color: #777;
    font-size: 14px;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 35px 22px;
    max-width: 1400px;
    margin: 0 auto;
}

.product-card {
    background: #fff;
}

.product-image-placeholder {
    aspect-ratio: 0.78;
    background:
            linear-gradient(
                    135deg,
                    #d9cec3,
                    #b39c8a,
                    #e7dfd7
            );
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

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

.product-image-placeholder span {
    color: rgba(255, 255, 255, 0.75);
    letter-spacing: 5px;
    font-size: 11px;
}

.product-info {
    padding: 18px 3px 5px;
}

.product-category {
    color: #8b827a;
    font-size: 9px;
    letter-spacing: 2px;
    margin-bottom: 8px;
}

.product-name {
    font-size: 17px;
    font-weight: 400;
    margin-bottom: 8px;
}

.product-description {
    color: #777;
    font-size: 12px;
    line-height: 1.6;
    margin-bottom: 12px;
}

.product-price {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 9px;
}

.original-price {
    color: #999;
    text-decoration: line-through;
    font-size: 12px;
}

.discount-price {
    font-size: 15px;
    font-weight: 500;
}

.product-stock {
    color: #777;
    font-size: 10px;
    margin-bottom: 14px;
}

.add-cart-button {
    width: 100%;
    border: 1px solid #222;
    background: #222;
    color: #fff;
    padding: 14px;
    font-size: 10px;
    letter-spacing: 1.5px;
    cursor: pointer;
}

.add-cart-button:hover {
    background: #fff;
    color: #222;
}

.add-cart-button:disabled {
    background: #aaa;
    border-color: #aaa;
    cursor: not-allowed;
}

.loading-message,
.no-products {
    text-align: center;
    color: #777;
    grid-column: 1 / -1;
    padding: 60px 0;
}


/* =========================================================
   CATEGORY NAVIGATION
   ========================================================= */

.category-navigation {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 36px;
    margin: 0 auto 55px;
    flex-wrap: wrap;
}

.category-button {
    appearance: none;
    -webkit-appearance: none;

    border: none;
    border-bottom: 1px solid transparent;

    background: transparent;

    padding: 5px 0;

    color: #777;

    font-size: 10px;
    font-weight: 400;
    letter-spacing: 1.8px;

    cursor: pointer;
    outline: none;

    transition:
            color 0.2s ease,
            border-color 0.2s ease;
}

.category-button:hover {
    color: #222;
}

.category-button.active {
    color: #222;
    border-bottom-color: #222;
}

.products-error {
    grid-column: 1 / -1;
    text-align: center;
    padding: 80px 20px;
}

.products-error h2 {
    font-size: 25px;
    font-weight: 400;
    margin-bottom: 12px;
}

.products-error p {
    color: #777;
    font-size: 13px;
}


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

.cart-page {
    max-width: 1250px;
    margin: 0 auto;
    padding: 80px 25px 110px;
}

.cart-heading {
    text-align: center;
    margin-bottom: 55px;
}

.cart-heading h1 {
    font-size: 45px;
    font-weight: 400;
}


/* ---------------------------------------------------------
   CART LAYOUT
   --------------------------------------------------------- */

.cart-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 390px;
    gap: 65px;
    align-items: start;
}


/* ---------------------------------------------------------
   CART ITEM
   --------------------------------------------------------- */

.cart-item {
    display: grid;
    grid-template-columns: 180px minmax(0, 1fr) 100px;
    gap: 30px;
    align-items: start;

    width: 100%;

    padding: 0 0 30px;
    margin-bottom: 30px;

    border-bottom: 1px solid #e5e1dc;
}


/* ---------------------------------------------------------
   CART IMAGE
   --------------------------------------------------------- */

.cart-item-image {
    width: 180px !important;
    height: 230px !important;

    min-width: 180px !important;
    max-width: 180px !important;

    min-height: 230px !important;
    max-height: 230px !important;

    background:
            linear-gradient(
                    135deg,
                    #d9cec3,
                    #b39c8a
            );

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

    overflow: hidden !important;
}

.cart-item-image img {
    display: block !important;

    width: 100% !important;
    height: 100% !important;

    min-width: 0 !important;
    max-width: 100% !important;

    min-height: 0 !important;
    max-height: 100% !important;

    object-fit: cover !important;
}

.cart-item-image span {
    color: rgba(255, 255, 255, 0.7);
    font-size: 9px;
    letter-spacing: 3px;
}


/* ---------------------------------------------------------
   CART PRODUCT DETAILS
   --------------------------------------------------------- */

.cart-item-details {
    min-width: 0;
    padding-top: 3px;
}

.cart-item-category {
    color: #8b827a;
    font-size: 10px;
    letter-spacing: 2px;
    margin-bottom: 10px;
    text-transform: uppercase;
}

.cart-item-name {
    font-size: 19px;
    font-weight: 400;
    margin-bottom: 8px;
}

.cart-item-price {
    font-size: 15px;
    margin-bottom: 18px;
}


/* ---------------------------------------------------------
   QUANTITY
   --------------------------------------------------------- */

.quantity-controls {
    display: flex;
    align-items: center;

    width: fit-content;

    border: 1px solid #ddd;
}

.quantity-controls button {
    width: 40px;
    height: 40px;

    border: none;
    background: #fff;

    cursor: pointer;

    font-size: 15px;
}

.quantity-controls button:hover {
    background: #f7f5f2;
}

.quantity-controls span {
    width: 45px;

    text-align: center;

    font-size: 13px;
}


/* ---------------------------------------------------------
   REMOVE
   --------------------------------------------------------- */

.remove-cart-button {
    display: block;

    margin-top: 12px;

    padding: 0;

    border: none;
    background: transparent;

    color: #888;

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

    cursor: pointer;
}

.remove-cart-button:hover {
    color: #222;
}


/* ---------------------------------------------------------
   CART ITEM TOTAL
   --------------------------------------------------------- */

.cart-item-total {
    text-align: right;
    padding-top: 3px;
    font-size: 15px;
}


/* ---------------------------------------------------------
   CART SUMMARY
   --------------------------------------------------------- */

.cart-summary {
    width: 390px;

    border: 1px solid #e3dfda;

    padding: 38px 42px;

    height: fit-content;

    background: #fff;

    position: sticky;
    top: 30px;
}

.cart-summary h2 {
    font-size: 23px;
    font-weight: 400;
    margin-bottom: 25px;
}

.cart-total-row {
    display: flex;
    justify-content: space-between;

    padding: 14px 0;

    border-bottom: 1px solid #eee;

    font-size: 13px;
}

.cart-grand-total {
    display: flex;
    justify-content: space-between;

    padding: 20px 0;

    font-size: 18px;
}

.checkout-button {
    display: block;

    width: 100%;

    text-align: center;

    background: #222;
    color: #fff;

    padding: 16px;

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

.checkout-button:hover {
    background: #444;
}


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

.empty-cart {
    text-align: center;
    padding: 80px 20px;
}

.empty-cart h2 {
    font-size: 28px;
    font-weight: 400;
    margin-bottom: 15px;
}

.empty-cart p {
    color: #777;
    font-size: 13px;
    margin-bottom: 25px;
}


/* =========================================================
   CHECKOUT PAGE
   ========================================================= */

.checkout-page {
    max-width: 1200px;
    margin: 0 auto;
    padding: 75px 25px 110px;
}

.checkout-heading {
    text-align: center;
    margin-bottom: 55px;
}

.checkout-heading h1 {
    font-size: 45px;
    font-weight: 400;
    margin-bottom: 12px;
}

.checkout-heading > p:not(.eyebrow) {
    color: #777;
    font-size: 14px;
}

.checkout-layout {
    display: grid;
    grid-template-columns: 1.25fr 0.75fr;
    gap: 55px;
}

.checkout-form-section,
.checkout-summary-section {
    background: #fff;
    border: 1px solid #e4e0da;
    padding: 35px;
}

.checkout-form-section h2,
.checkout-summary-section h2 {
    font-size: 22px;
    font-weight: 400;
    margin-bottom: 28px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-size: 11px;
    margin-bottom: 8px;
    letter-spacing: 0.5px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    border: 1px solid #ddd;
    padding: 13px;
    outline: none;
    font-size: 13px;
    background: #fff;
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: #777;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

.place-order-button {
    width: 100%;

    border: none;

    background: #222;
    color: #fff;

    padding: 17px;

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

    cursor: pointer;
}

.place-order-button:hover {
    background: #444;
}

.place-order-button:disabled {
    background: #aaa;
    cursor: not-allowed;
}

.checkout-error {
    color: #b00020;
    font-size: 12px;
    margin-bottom: 15px;
}

.checkout-item {
    display: flex;
    justify-content: space-between;
    gap: 20px;

    padding: 16px 0;

    border-bottom: 1px solid #eee;
}

.checkout-item h3 {
    font-size: 14px;
    font-weight: 400;
    margin-bottom: 5px;
}

.checkout-item p {
    color: #888;
    font-size: 11px;
}

.checkout-total-row,
.checkout-grand-total {
    display: flex;
    justify-content: space-between;
}

.checkout-total-row {
    padding: 15px 0;
    border-bottom: 1px solid #eee;
    font-size: 13px;
}

.checkout-grand-total {
    padding-top: 22px;
    font-size: 19px;
}


/* =========================================================
   PAYMENT PAGE
   ========================================================= */

.payment-page {
    min-height: calc(100vh - 146px);

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

    padding: 70px 20px;
}

.payment-container {
    width: 100%;
    max-width: 570px;

    background: #fff;

    border: 1px solid #e4e0da;

    padding: 50px 55px;

    text-align: center;
}

.payment-container h1 {
    font-size: 32px;
    font-weight: 400;
    margin-bottom: 14px;
}

#payment-message {
    color: #777;
    font-size: 14px;
}

.payment-details {
    margin-top: 35px;
    border-top: 1px solid #eee;
}

.payment-row {
    display: flex;
    justify-content: space-between;

    padding: 19px 0;

    border-bottom: 1px solid #eee;

    font-size: 14px;

    text-align: left;
}

.payment-row span {
    color: #777;
}

.payment-row strong {
    font-weight: 600;
}

.payment-row.amount-row strong {
    font-size: 21px;
}

.pay-button {
    width: 100%;

    margin-top: 32px;

    padding: 17px;

    border: none;

    background: #222;
    color: #fff;

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

    cursor: pointer;
}

.pay-button:hover {
    background: #444;
}

.pay-button:disabled {
    background: #aaa;
    cursor: not-allowed;
}

.secure-payment {
    margin-top: 22px;

    font-size: 11px;

    color: #888;
}


/* =========================================================
   ORDER SUCCESS
   ========================================================= */

.success-page {
    min-height: calc(100vh - 146px);

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

    padding: 70px 20px;
}

.success-container {
    width: 100%;
    max-width: 600px;

    background: #fff;

    border: 1px solid #e4e0da;

    padding: 55px;

    text-align: center;
}

.success-icon {
    width: 64px;
    height: 64px;

    border: 1px solid #222;
    border-radius: 50%;

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

    margin: 0 auto 25px;

    font-size: 27px;
}

.success-container h1 {
    font-size: 34px;
    font-weight: 400;
    margin-bottom: 15px;
}

.success-message {
    color: #777;

    font-size: 14px;

    line-height: 1.7;

    margin-bottom: 30px;
}

.order-details {
    border-top: 1px solid #eee;
    border-bottom: 1px solid #eee;
}

.order-row {
    display: flex;
    justify-content: space-between;

    padding: 18px 0;

    border-bottom: 1px solid #eee;

    font-size: 14px;

    text-align: left;
}

.order-row:last-child {
    border-bottom: none;
}

.order-row span {
    color: #777;
}

.success-button {
    display: inline-block;

    margin-top: 35px;

    padding: 16px 35px;

    background: #222;
    color: #fff;

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

.success-button:hover {
    background: #444;
}

.error-message {
    color: #b00020;
    font-size: 12px;
    margin-top: 18px;
}


/* =========================================================
   RESPONSIVE - TABLET
   ========================================================= */

@media (max-width: 900px) {

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

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

    .brand-story-section {
        grid-template-columns: 1fr;
    }

    .brand-story-image {
        min-height: 500px;
    }

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

    .gallery-image:nth-child(4),
    .gallery-image:nth-child(5) {
        display: none;
    }

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

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

    .cart-summary {
        width: 100%;
        position: static;
    }

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

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

    .category-navigation {
        gap: 28px;
    }
}


/* =========================================================
   RESPONSIVE - MOBILE
   ========================================================= */

@media (max-width: 600px) {

    .announcement-bar {
        height: 30px;
        font-size: 8px;
        letter-spacing: 1.5px;
    }

    .site-header {
        height: 68px;
        padding: 0 20px;
    }

    .desktop-nav {
        display: none;
    }

    .menu-button {
        display: block;
    }

    .main-logo {
        font-size: 22px;
        letter-spacing: 4px;
    }

    .header-cart {
        display: none;
    }

    .header-icon {
        font-size: 19px;
    }

    .mobile-menu {
        display: none;

        flex-direction: column;

        background: #fdfcf9;

        border-bottom: 1px solid #e5e1dc;

        position: relative;

        z-index: 15;
    }

    .mobile-menu-open {
        display: flex;
    }

    .mobile-menu a {
        padding: 17px 22px;

        border-bottom: 1px solid #eee;

        font-size: 12px;

        letter-spacing: 1px;

        text-transform: uppercase;
    }


    /* HERO */

    .hero-image-placeholder {
        min-height: 600px;
    }

    .hero-overlay {
        width: 85%;
    }

    .hero-overlay h1 {
        font-size: 54px;
    }

    .hero-small-text {
        font-size: 9px;
        letter-spacing: 3px;
    }


    /* INTRO */

    .intro-section {
        padding: 80px 22px;
    }

    .intro-section h2 {
        font-size: 34px;
    }

    .intro-text {
        font-size: 13px;
    }


    /* HOME PRODUCTS */

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

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

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

    .view-all-link {
        font-size: 9px;
    }

    .home-product-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px 12px;
    }

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


    /* COLLECTIONS */

    .collections-section {
        padding: 80px 20px;
    }

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

    .collection-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .collection-content {
        padding: 20px;
    }

    .collection-content h3 {
        font-size: 21px;
    }


    /* BRAND STORY */

    .brand-story-image {
        min-height: 400px;
    }

    .brand-story-content {
        padding: 65px 25px;
    }

    .brand-story-content h2 {
        font-size: 39px;
    }

    .brand-story-content p {
        font-size: 13px;
    }


    /* GALLERY */

    .gallery-section {
        padding: 80px 20px;
    }

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

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

    .gallery-image:nth-child(4) {
        display: flex;
    }

    .gallery-image:nth-child(5) {
        display: none;
    }


    /* SERVICES */

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

    .service-item {
        border-right: none;
        border-bottom: 1px solid #e6e1da;
        padding: 40px 25px;
    }

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


    /* NEWSLETTER */

    .newsletter-section {
        padding: 80px 20px;
    }

    .newsletter-section h2 {
        font-size: 34px;
    }

    .newsletter-form {
        width: 100%;
    }


    /* FOOTER */

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

        gap: 40px 25px;

        padding: 55px 25px;
    }

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

    .footer-bottom {
        flex-direction: column;
        padding: 20px 25px;
    }


    /* PRODUCTS */

    .products-page {
        padding: 60px 20px 80px;
    }

    .products-heading h1 {
        font-size: 38px;
    }

    .products-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px 12px;
    }

    .product-name {
        font-size: 14px;
    }

    .product-description {
        font-size: 11px;
    }


    /* CATEGORY */

    .category-navigation {
        gap: 18px;
        margin-bottom: 40px;
    }

    .category-button {
        font-size: 9px;
        letter-spacing: 1.4px;
    }


    /* CART */

    .cart-page {
        padding: 55px 18px 80px;
    }

    .cart-heading h1 {
        font-size: 37px;
    }

    .cart-layout {
        grid-template-columns: 1fr;
    }

    .cart-item {
        grid-template-columns: 110px minmax(0, 1fr);
        gap: 18px;
    }

    .cart-item-image {
        width: 110px !important;
        height: 145px !important;

        min-width: 110px !important;
        max-width: 110px !important;

        min-height: 145px !important;
        max-height: 145px !important;

        grid-column: 1;
        grid-row: 1 / span 2;
    }

    .cart-item-image img {
        width: 100% !important;
        height: 100% !important;
    }

    .cart-item-details {
        grid-column: 2;
        grid-row: 1;
    }

    .cart-item-total {
        grid-column: 2;
        grid-row: 2;
        text-align: left;
    }

    .remove-cart-button {
        text-align: left;
    }

    .cart-summary {
        width: 100%;
        padding: 30px 25px;
    }


    /* CHECKOUT */

    .checkout-page {
        padding: 55px 18px 80px;
    }

    .checkout-heading h1 {
        font-size: 37px;
    }

    .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .checkout-form-section,
    .checkout-summary-section {
        padding: 25px 20px;
    }


    /* PAYMENT */

    .payment-page,
    .success-page {
        padding: 40px 15px;
        align-items: flex-start;
    }

    .payment-container,
    .success-container {
        padding: 38px 22px;
    }

    .payment-container h1,
    .success-container h1 {
        font-size: 28px;
    }

    .payment-row,
    .order-row {
        font-size: 13px;
    }

    .success-message {
        font-size: 13px;
    }

    /* =========================================================
   AARIDRA MOMENTS
   ========================================================= */

    .home-moments-section {
        padding: 105px 4.5%;
        background: var(--aaridra-cream);
    }

    .home-moments-grid {
        max-width: 1500px;
        margin: 0 auto;
        display: grid;
        grid-template-columns: 1.15fr 0.85fr 1fr 0.85fr 1.15fr;
        gap: 8px;
    }

    .home-moment-card {
        aspect-ratio: 0.78;
        display: flex;
        align-items: center;
        justify-content: center;
        overflow: hidden;
        background: linear-gradient(
                145deg,
                #eaded3,
                #a77c6a,
                #ddc9bc
        );
    }

    .home-moment-card span {
        color: rgba(255, 255, 255, 0.78);
        font-size: 10px;
        letter-spacing: 4px;
    }

    @media (max-width: 1000px) {

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

        .home-moment-card:nth-child(4),
        .home-moment-card:nth-child(5) {
            display: none;
        }
    }

    @media (max-width: 600px) {

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

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

        .home-moment-card:nth-child(4) {
            display: flex;
        }

        .home-moment-card:nth-child(5) {
            display: none;
        }
    }
}