* {
    /*outline: 1px solid #ff0016!important;*/
}


/* =========================================================
   ROOT
========================================================= */

:root {

    --black: #111111;

    --black-soft: #1A1A1A;

    --white: #FFFFFF;

    --cream: #F7F6F2;

    --gray-50: #FAFAF8;

    --gray-100: #F1F1EE;

    --gray-200: #E4E4DF;

    --gray-300: #be0a0a;

    --gray-500: #be0a0a;

    --gray-700: #be0a0a;

    --accent: #ef0707;

    --max-width: 1380px;

    --side-space: 48px;

    --transition: .45s cubic-bezier(.2, .7, .2, 1);

}


/* =========================================================
   RESET
========================================================= */

* {

    margin: 0;

    padding: 0;

    box-sizing: border-box;

}


html {

    scroll-behavior: smooth;

}


body {

    direction: rtl;

    background: var(--white);

    color: var(--black);

    font-family: Tahoma,
    Arial,
    sans-serif;

    line-height: 1.8;

    -webkit-font-smoothing: antialiased;

}


a {

    text-decoration: none;

    color: inherit;

}


img {

    display: block;

    max-width: 100%;

}


button,
input {

    font: inherit;

}


button {

    cursor: pointer;

}


::selection {

    background: var(--black);

    color: var(--white);

}


/* =========================================================
   GLOBAL CONTAINER
========================================================= */

.section-container,
.header-inner,
.footer-inner,
.footer-address,
.footer-bottom {

    width: min(
            var(--max-width),
            calc(100% - (var(--side-space) * 2))
    );

    margin-inline: auto;

}


/* =========================================================
   HEADER
========================================================= */

.luxury-header {

    position: sticky;

    top: 0;

    z-index: 1000;

    height: 82px;

    background: rgba(255, 255, 255, .94);

    backdrop-filter: blur(18px);

    -webkit-backdrop-filter: blur(18px);

    border-bottom: 1px solid var(--gray-200);

}


.header-inner {

    height: 100%;

    display: flex;

    align-items: center;

    gap: 55px;

}


/* =========================================================
   BRAND
========================================================= */

.brand {

    display: flex;

    flex-direction: column;

    justify-content: center;

    line-height: 1;

    min-width: 105px;

}


.brand-name,
.brand > span:first-child {

    color: var(--black);

    font-size: 20px;

    font-weight: 900;

    letter-spacing: 4px;

}


.brand-sub,
.brand > small {

    color: var(--gray-500);

    font-size: 7px;

    letter-spacing: 5px;

    margin-top: 7px;

    margin-right: 4px;

}


/* =========================================================
   NAVIGATION
========================================================= */

.main-nav {

    display: flex;

    align-items: center;

    gap: 34px;

    flex: 1;

}


.main-nav a {

    position: relative;

    color: var(--gray-700);

    font-size: 11px;

    transition: color var(--transition);

}


.main-nav a::after {

    content: "";

    position: absolute;

    bottom: -9px;

    right: 0;

    width: 0;

    height: 1px;

    background: var(--black);

    transition: width var(--transition);

}


.main-nav a:hover {

    color: var(--black);

}


.main-nav a:hover::after {

    width: 100%;

}


/* =========================================================
   SEARCH
========================================================= */

.luxury-search {

    width: 180px;

    height: 38px;

    display: flex;

    align-items: center;

    border-bottom: 1px solid var(--gray-300);

    transition: width var(--transition),
    border-color var(--transition);

}


.luxury-search:focus-within {

    width: 225px;

    border-color: var(--black);

}


.luxury-search input {

    width: 100%;

    height: 100%;

    border: 0;

    outline: 0;

    background: transparent;

    color: var(--black);

    font-size: 11px;

    padding: 0 5px;

}


.luxury-search input::placeholder {

    color: var(--gray-500);

}


.luxury-search button {

    width: 30px;

    height: 100%;

    border: 0;

    background: transparent;

    color: var(--gray-700);

    display: flex;

    align-items: center;

    justify-content: center;

}


/* =========================================================
   MOBILE BUTTON
========================================================= */

.menu-button {

    display: none;

    width: 38px;

    height: 38px;

    border: 0;

    background: transparent;

    flex-direction: column;

    justify-content: center;

    align-items: center;

    gap: 6px;

}


.menu-button span {

    display: block;

    width: 21px;

    height: 1px;

    background: var(--black);

}


/* =========================================================
   HERO
========================================================= */

.hero {

    background: var(--cream);

    padding: 90px 0;

}


.hero-inner {

    width: min(
            var(--max-width),
            calc(100% - (var(--side-space) * 2))
    );

    margin-inline: auto;

    display: grid;

    grid-template-columns:
        .85fr 1.15fr;

    align-items: center;

    gap: 90px;

}


.hero-copy {

    padding-right: 20px;

}


.overline {

    display: block;

    color: var(--gray-500);

    font-size: 8px;

    letter-spacing: 3px;

    font-weight: 700;

    margin-bottom: 17px;

}


.hero-copy h1 {

    color: var(--black);

    font-size: clamp(42px, 5vw, 72px);

    font-weight: 900;

    line-height: 1.35;

    letter-spacing: -2px;

    margin-bottom: 25px;

}


.hero-copy p {

    max-width: 480px;

    color: var(--gray-500);

    font-size: 12px;

    line-height: 2.2;

    margin-bottom: 30px;

}


/* =========================================================
   LUXURY BUTTON
========================================================= */

.luxury-button {

    display: inline-flex;

    align-items: center;

    gap: 25px;

    padding: 12px 19px;

    background: var(--black);

    color: var(--white);

    font-size: 10px;

    transition: background var(--transition),
    transform var(--transition);

}


.luxury-button:hover {

    color: white;

    background: var(--accent);

    transform: translateY(-2px);

}


.luxury-button span {

    font-size: 17px;

    line-height: 1;

}


/* =========================================================
   IMAGE PLACEHOLDER
========================================================= */

.image-placeholder {

    position: relative;

    width: 100%;

    height: 100%;

    display: flex;

    flex-direction: column;

    align-items: center;

    justify-content: center;

    /*background: var(--gray-100);*/

    /*border: 1px solid var(--gray-200);*/

    overflow: hidden;

}


.image-placeholder > span {

    color: var(--gray-300);

    font-size: 10px;

    letter-spacing: 4px;

}


.image-placeholder > small {

    margin-top: 6px;

    color: var(--gray-500);

    font-size: 7px;

    letter-spacing: 2px;

}


.image-placeholder img {

    position: absolute;

    inset: 0;

    width: 100%;

    height: 100%;

    object-fit: contain;

    z-index: 2;

}


/* =========================================================
   HERO FRAME
========================================================= */

.hero-frame {
    width: 590px;
    height: 590px;
    box-shadow: rgba(17, 17, 26, 0.1) 0 0 16px;

}


.hero-frame .image-placeholder {

    background: #ECEBE6;

}


.hero-frame .image-placeholder > span {

    font-size: 11px;

}


/* =========================================================
   INTRO
========================================================= */

.intro-section {

    padding: 145px 0;

    background: var(--white);

}


.intro-inner {

    width: min(
            var(--max-width),
            calc(100% - (var(--side-space) * 2))
    );

    margin-inline: auto;

}


.intro-content {

    display: grid;

    grid-template-columns:
        1.2fr .8fr;

    gap: 100px;

    align-items: end;

}


.intro-content h2 {

    color: var(--black);

    font-size: clamp(30px, 4vw, 52px);

    line-height: 1.55;

    font-weight: 800;

    letter-spacing: -1px;

}


.intro-content p {

    color: var(--gray-500);

    font-size: 12px;

    line-height: 2.3;

    max-width: 390px;

}


/* =========================================================
   SECTION HEAD
========================================================= */

.collections,
.products,
.new-products {

    padding: 110px 0;

}


.collections {

    background: var(--gray-50);

}


.section-heading {

    display: flex;

    align-items: flex-end;

    justify-content: space-between;

    margin-bottom: 45px;

}


.section-heading h2 {

    color: var(--black);

    font-size: 31px;

    line-height: 1.3;

    font-weight: 800;

}


.heading-number {

    color: var(--gray-300);

    font-size: 11px;

    letter-spacing: 2px;

}


/* =========================================================
   COLLECTION GRID
========================================================= */

.collection-grid {

    display: grid;

    grid-template-columns:
        repeat(3, 1fr);

    gap: 14px;

}


.collection-card {

    position: relative;

    background: var(--white);

    border: 1px solid var(--gray-200);

    padding: 10px;

    transition: transform var(--transition),
    border-color var(--transition);

}


.collection-card:hover {

    transform: translateY(-7px);

    border-color: var(--gray-300);

}


.collection-number {

    position: absolute;

    top: 22px;

    right: 22px;

    z-index: 3;

    color: var(--gray-500);

    font-size: 9px;

}


.collection-frame {
    width: auto;

    height: 370px;

}


.collection-footer {

    display: flex;

    align-items: flex-end;

    justify-content: space-between;

    padding: 17px 9px 10px;

}


.collection-footer span:first-child {

    display: block;

    color: var(--gray-500);

    font-size: 7px;

    letter-spacing: 5px;

}


.collection-footer h3 {

    margin-top: 5px;

    color: var(--black);

    font-size: 17px;

    font-weight: 700;

}


.collection-arrow {

    width: 34px;

    height: 34px;

    border: 1px solid var(--gray-200);

    display: flex;

    align-items: center;

    justify-content: center;

    color: var(--gray-700);

    font-size: 14px;

    transition: background var(--transition),
    color var(--transition);

}


.collection-card:hover.collection-arrow {

    background: var(--black);

    color: white;

}


/* =========================================================
   TEXT LINK
========================================================= */

.text-link {

    display: inline-flex;

    align-items: center;

    gap: 12px;

    color: var(--gray-500);

    font-size: 10px;

    transition: color var(--transition);

}


.text-link:hover {

    color: var(--black);

}


.dark-link {

    color: var(--white);

}


/* =========================================================
   PRODUCT GRID
========================================================= */

.products {

    background: var(--white);

}


.product-grid {

    display: grid;

    grid-template-columns:
        repeat(4, 1fr);

    gap: 25px;

}


.product-item {

    display: block;

}


.product-frame {

    position: relative;

    height: 430px;

    background: var(--gray-50);

}


.product-frame .image-placeholder {

    background: var(--gray-50);

    border: 0;

}


.product-index {

    position: absolute;

    top: 17px;

    right: 17px;

    z-index: 4;

    color: var(--gray-500);

    font-size: 8px;

    letter-spacing: 1px;

}


.product-info {

    padding: 16px 2px;

}


.product-info > span {

    color: var(--gray-500);

    font-size: 8px;

    letter-spacing: 2px;

}


.product-info h3 {

    color: var(--black);

    font-size: 14px;

    margin: 5px 0 8px;

}


.product-info small {

    color: var(--gray-500);

    font-size: 9px;

    transition: color var(--transition);

}


.product-item:hover.product-info small {

    color: var(--accent);

}


/* =========================================================
   EDITORIAL
========================================================= */

.editorial {

    padding: 120px 0;

    background: var(--black);

}


.editorial-inner {

    width: min(
            var(--max-width),
            calc(100% - (var(--side-space) * 2))
    );

    margin-inline: auto;

    display: grid;

    grid-template-columns:
        1.15fr .85fr;

    gap: 90px;

    align-items: center;

}


.editorial-frame {

    height: 560px;

}


.editorial-frame.image-placeholder {

    background: var(--black-soft);

    border-color: #2A2A2A;

}


.editorial-frame.image-placeholder > span {

    color: #444;

}


.editorial-frame.image-placeholder > small {

    color: #777;

}


.editorial-content {

    color: white;

}


.editorial-content .overline {

    color: #777;

}


.editorial-content h2 {

    color: white;

    font-size: clamp(34px, 4vw, 54px);

    line-height: 1.5;

    margin-bottom: 22px;

}


.editorial-content p {

    max-width: 420px;

    color: #888;

    font-size: 12px;

    line-height: 2.3;

    margin-bottom: 28px;

}


/* =========================================================
   NEW PRODUCTS
========================================================= */

.new-grid {
    width: 100%;

    column-count: 4;

    column-gap: 16px;
}



.new-card {
    display: inline-flex;

    width: 100%;

    flex-direction: column;

    margin: 0 0 12px;

    break-inside: avoid;

    text-decoration: none;

    color: inherit;

    background: #fff;
}



.new-image {
    width: 100%;

    display: flex;

    align-items: center;

    justify-content: center;

    overflow: hidden;

    background: #f5f5f5;
}


.new-image img {
    display: block;

    width: 100%;

    height: auto;

    object-fit: contain;
}



.new-info {
    display: flex;

    align-items: center;

    justify-content: space-between;

    padding: 12px 0;
}


.new-info span {

    font-size: 10px;

    color: #777;
}


.new-info h3 {

    margin: 0;

    font-size: 14px;

    font-weight: 600;

    color: #222;
}

/*=============================*/
/*MOBILE*/
/*========================*/

@media (max-width: 576px)  {
    .new-grid {
        width: 100%;

        column-count: 2;

        column-gap: 16px;
    }

}

/* =========================
   INFO
========================= */

.new-info {
    display: flex;

    align-items: center;

    justify-content: space-between;

    padding: 14px 0;
}


.new-info span {
    font-size: 10px;

    color: #777;

    white-space: nowrap;
}


.new-info h3 {
    margin: 0;

    font-size: 15px;

    font-weight: 600;

    color: #222;

    text-align: right;
}


/* =========================
   TABLET
========================= */

@media (max-width: 992px) {

    .new-grid {
        grid-template-columns: repeat(2, 1fr);

        gap: 16px;
    }


    .card-01,
    .card-06 {
        grid-column: span 2;
    }


    .card-02,
    .card-03,
    .card-04,
    .card-05,
    .card-07,
    .card-08 {
        grid-column: span 1;
    }

}


/* =========================
   MOBILE
========================= */

@media (max-width: 576px) {

    .new-grid {
        grid-template-columns: repeat(2, 1fr);

        gap: 12px;
    }


    .card-01,
    .card-06 {
        grid-column: span 2;
    }


    .card-02,
    .card-03,
    .card-04,
    .card-05,
    .card-07,
    .card-08 {
        grid-column: span 1;
    }


    .new-info {
        padding: 10px 0;

        display: block;
    }


    .new-info span {
        display: block;

        margin-bottom: 4px;
    }


    .new-info h3 {
        font-size: 13px;
    }

}






/* =========================================================
   CONTACT
========================================================= */

.contact-section {

    padding: 150px 30px;

    background: var(--white);

    text-align: center;

}


.contact-inner {

    max-width: 800px;

    margin-inline: auto;

}


.contact-inner h2 {

    color: var(--black);

    font-size: clamp(32px, 5vw, 55px);

    line-height: 1.5;

    margin-bottom: 15px;

}


.contact-inner p {

    color: var(--gray-500);

    font-size: 12px;

    margin-bottom: 30px;

}


.contact-links {

    display: flex;

    justify-content: center;

    flex-wrap: wrap;

    gap: 30px;

}


.contact-links a {

    color: var(--black);

    font-size: 11px;

    border-bottom: 1px solid var(--gray-300);

    padding-bottom: 5px;

    transition: border-color var(--transition),
    color var(--transition);

}


.contact-links a:hover {

    color: var(--accent);

    border-color: var(--accent);

}


/* =========================================================
   FOOTER
========================================================= */

.luxury-footer {

    background: var(--black);

    color: white;

    padding: 80px 0 25px;

}


.footer-inner {

    display: grid;

    grid-template-columns:
        2fr 1fr 1fr 1fr;

    gap: 60px;

    padding-bottom: 70px;

}


.footer-logo span {

    color: white;

}


.footer-logo small {

    color: #666;

}


.footer-brand p {

    max-width: 280px;

    color: #777;

    font-size: 10px;

    line-height: 2.2;

    margin-top: 18px;

}


.footer-column {

    display: flex;

    flex-direction: column;

    align-items: flex-start;

    gap: 9px;

}


.footer-column > span {

    color: #666;

    font-size: 8px;

    letter-spacing: 2px;

    margin-bottom: 8px;

}


.footer-column a {

    color: #999;

    font-size: 10px;

    transition: color var(--transition);

}


.footer-column a:hover {

    color: white;

}


.footer-address {

    padding: 22px 0;

    border-top: 1px solid #282828;

    border-bottom: 1px solid #282828;

}


.footer-address span {

    color: #666;

    font-size: 8px;

    letter-spacing: 2px;

}


.footer-address p {

    color: #777;

    font-size: 10px;

    margin-top: 5px;

}


.footer-bottom {

    display: flex;

    align-items: center;

    justify-content: space-between;

    padding-top: 22px;

    color: #555;

    font-size: 8px;

    letter-spacing: 1px;

}


/* =========================================================
   MOBILE MENU
========================================================= */

.luxury-menu {

    width: 310px !important;

    background: var(--black);

    color: white;

}


.mobile-menu-top {

    display: flex;

    align-items: center;

    justify-content: space-between;

    padding: 25px;

    border-bottom: 1px solid #292929;

}


.mobile-menu-top div {

    display: flex;

    flex-direction: column;

}


.mobile-menu-top span {

    font-size: 18px;

    font-weight: 900;

    letter-spacing: 3px;

}


.mobile-menu-top small {

    color: #666;

    font-size: 7px;

    letter-spacing: 4px;

}


.mobile-menu-top button {

    border: 0;

    background: transparent;

    color: white;

    font-size: 30px;

    font-weight: 200;

}


.luxury-menu .offcanvas-body {

    padding: 25px;

}


.luxury-menu .offcanvas-body a {

    display: block;

    padding: 16px 0;

    border-bottom: 1px solid #292929;

    color: #aaa;

    font-size: 13px;

    transition: color var(--transition);

}


.luxury-menu .offcanvas-body a:hover {

    color: white;

}


/* =========================================================
   RESPONSIVE
========================================================= */

@media (max-width: 1100px) {


    :root {

        --side-space: 32px;

    }


    .header-inner {

        gap: 30px;

    }


    .main-nav {

        gap: 20px;

    }


    .luxury-search {

        width: 140px;

    }


    .luxury-search:focus-within {

        width: 175px;

    }


    .hero-inner {

        gap: 50px;

    }


    .collection-grid {

        grid-template-columns:
            repeat(2, 1fr);

    }


    .product-grid {

        grid-template-columns:
            repeat(2, 1fr);

    }


    .new-grid {

        grid-template-columns:
            repeat(2, 1fr);

    }


    .new-large {

        grid-row: auto;

        grid-column: span 2;

    }


    .new-large .new-frame {

        height: 500px;

    }


    .footer-inner {

        grid-template-columns:
            repeat(2, 1fr);

    }

}


/* =========================================================
   TABLET / MOBILE
========================================================= */

@media (max-width: 768px) {


    :root {

        --side-space: 20px;

    }


    .luxury-header {

        height: 70px;

    }


    .main-nav {

        display: none;

    }


    .luxury-search {

        margin-right: auto;

        width: 150px;

    }


    .luxury-search:focus-within {

        width: 150px;

    }


    .menu-button {

        display: flex;

    }


    .brand {

        min-width: 90px;

    }


    .brand-name,
    .brand > span:first-child {
        direction: ltr;
        font-size: 17px;

    }


    /* Hero */
    .hero {

        padding: 50px 0 65px;

    }


    .hero-inner {

        display: flex;

        flex-direction: column;

        gap: 40px;

    }


    .hero-copy {

        width: 100%;

        padding: 0;

    }


    .hero-copy h1 {

        font-size: 42px;

    }


    .hero-copy p {

        font-size: 11px;

    }


    .hero-frame {

        width: 100%;

        height: 370px;

    }


    /* Intro */
    .intro-section {

        padding: 85px 0;

    }


    .intro-content {

        display: block;

    }


    .intro-content h2 {

        font-size: 32px;

        margin-bottom: 30px;

    }


    /* Sections */
    .collections,
    .products,
    .new-products {

        padding: 75px 0;

    }


    .section-heading {

        margin-bottom: 30px;

    }


    .section-heading h2 {

        font-size: 26px;

    }


    /* Collections */
    .collection-grid {

        grid-template-columns:
            repeat(2, 1fr);

        gap: 10px;

    }


    .collection-frame {

        height: 270px;

    }


    .collection-footer {

        padding: 13px 5px 7px;

    }


    .collection-footer h3 {

        font-size: 14px;

    }


    .collection-arrow {

        width: 29px;

        height: 29px;

    }


    /* Products */
    .product-grid {

        grid-template-columns:
            repeat(2, 1fr);

        gap: 15px;

    }


    .product-frame {

        height: 310px;

    }


    .product-info h3 {

        font-size: 12px;

    }


    /* Editorial */
    .editorial {

        padding: 75px 0;

    }


    .editorial-inner {

        display: flex;

        flex-direction: column;

        gap: 45px;

    }


    .editorial-frame {

        width: 100%;

        height: 390px;

    }


    .editorial-content {

        width: 100%;

    }


    .editorial-content h2 {

        font-size: 34px;

    }


    /* New */
    .new-grid {

        grid-template-columns:
            repeat(2, 1fr);

        gap: 10px;

    }


    .new-large {

        grid-column: span 2;

    }


    .new-frame {

        height: 230px;

    }


    .new-large .new-frame {

        height: 350px;

    }


    /* Contact */
    .contact-section {

        padding: 90px 20px;

    }


    .contact-inner h2 {

        font-size: 34px;

    }


    .contact-links {

        flex-direction: column;

        align-items: center;

        gap: 15px;

    }


    /* Footer */
    .footer-inner {

        grid-template-columns:
            repeat(2, 1fr);

        gap: 45px 25px;

    }


    .footer-brand {

        grid-column: span 2;

    }


    .footer-bottom {

        flex-direction: column;

        align-items: flex-start;

        gap: 8px;

    }

}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 480px) {


    :root {

        --side-space: 14px;

    }


    .luxury-search {

        width: 125px;

    }


    .luxury-search:focus-within {

        width: 125px;

    }


    .luxury-search input {

        font-size: 10px;

    }


    .hero-copy h1 {

        font-size: 34px;

    }


    .hero-frame {

        height: 300px;

    }


    .collection-grid {

        gap: 7px;

    }


    .collection-frame {

        height: 220px;

    }


    .collection-number {

        top: 13px;

        right: 13px;

    }


    .collection-footer h3 {

        font-size: 13px;

    }


    .product-frame {

        height: 250px;

    }


    .product-info {

        padding: 12px 0;

    }


    .new-grid {

        gap: 7px;

    }


    .new-frame {

        height: 190px;

    }


    .new-large .new-frame {

        height: 270px;

    }


    .editorial-frame {

        height: 300px;

    }


    .footer-inner {

        grid-template-columns:
            1fr 1fr;

        gap: 35px 15px;

    }


    .footer-brand {

        grid-column: span 2;

    }

}
@media (max-width: 576px) {

    .product-modal-size {
        width: 95%;
        height: 550px;
        margin: auto;
    }

    .product-modal-image {
        height: 420px;
    }

    .product-modal-image img {
        max-width: 280px;
        max-height: 380px;
    }

}

/* اندازه ثابت مودال */
.product-modal-size {
    width: 700px;
    max-width: 90%;
    height: 650px;
}


/* محوطه نمایش عکس */
.product-modal-image {
    height: 520px;

    display: flex;
    align-items: center;
    justify-content: center;
}


/* خود عکس */
.product-modal-image img {
    max-width: 400px;
    max-height: 480px;

    width: auto;
    height: auto;

    object-fit: contain;
}