/* =========================================================
   RYNA WOMAN - HOME PAGE
========================================================= */

.home-page,
.home-page *,
.home-page *::before,
.home-page *::after {
    box-sizing: border-box;
}

.home-page {
    width: 100%;
    background: #fff5f7;
    color: #292522;
    font-family: Arial, Helvetica, sans-serif;
}

.home-page a {
    color: inherit;
    text-decoration: none;
}

.home-page img {
    max-width: 100%;
}


/* =========================================================
   HERO
========================================================= */

.home-hero {
    width: 100%;
    position: relative;
    overflow: hidden;
    background: #eee8e4;
}

.home-hero-video {
    height: 570px;
}

.hero-video {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}

.home-hero-banner {
    display: flex;
    width: 100%;
}

.hero-slide {
    width: 100%;
    min-width: 100%;
    height: 570px;
    position: relative;
    overflow: hidden;
}

.hero-slide img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    object-position: center center;
}

.hero-content {
    position: absolute;
    left: 50%;
    bottom: 55px;
    transform: translateX(-50%);
    width: min(90%, 500px);
    text-align: center;
    color: #ffffff;
    z-index: 2;
}

.hero-content h1 {
    margin: 0 0 10px;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 32px;
    font-weight: 400;
    line-height: 1.2;
}

.hero-content p {
    margin: 0 0 16px;
    font-size: 11px;
    line-height: 1.5;
}

.hero-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 105px;
    height: 34px;
    padding: 0 18px;
    background: #ffffff;
    color: #222222;
    font-size: 10px;
    font-weight: 400;
}

.hero-button:hover {
    background: #f5f5f5;
}


/* =========================================================
   COMMON SECTION
========================================================= */

.home-section {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 70px 30px;
}

.section-heading {
    width: 100%;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    margin-bottom: 28px;
}

.section-kicker {
    display: block;
    margin-bottom: 5px;
    color: #8b817c;
    font-size: 9px;
    font-weight: 400;
    line-height: 1.2;
}

.section-heading h2,
.center-section-heading h2 {
    margin: 0;
    color: #332d29;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 26px;
    font-weight: 400;
    line-height: 1.25;
}

.section-view-all {
    color: #766e69;
    font-size: 9px;
    line-height: 1.2;
    border-bottom: 1px solid #aaa19c;
    padding-bottom: 3px;
}

.section-view-all:hover {
    color: #222;
}


/* =========================================================
   SHOP BY CATEGORY
========================================================= */

.category-section {
    padding-top: 70px;
    padding-bottom: 70px;
}

.category-grid {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
}

.category-card {
    display: block;
    min-width: 0;
    width: 100%;
}

.category-image {
    width: 100%;

    /* HEIGHT - KEEP AS IT IS */
    aspect-ratio: 2 / 3;

    overflow: hidden;
    background: #eee8e4;
}

.category-image img {
    width: 100%;
    height: 100%;
    display: block;

    object-fit: cover;
    object-position: center center;

    transition: transform 0.4s ease;
}

.category-card:hover .category-image img {
    transform: scale(1.02);
}

.category-info {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 10px;
}

.category-info span {
    color: #554e49;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 11px;
    line-height: 1.3;
}

.category-info small {
    color: #817873;
    font-size: 9px;
    line-height: 1.3;
}


/* =========================================================
   FEATURED PRODUCTS
========================================================= */

.featured-section {
    padding-top: 65px;
    padding-bottom: 75px;
}

.product-grid {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
}

.home-product-card {
    min-width: 0;
    display: block;
}

.product-image-wrap {
    width: 100%;

    /* HEIGHT - KEEP AS IT IS */
    aspect-ratio: 2 / 3;

    position: relative;
    overflow: hidden;
    background: #eee8e4;
}

.product-image-wrap img {
    width: 100%;
    height: 100%;
    display: block;

    object-fit: cover;
    object-position: center center;

    transition: transform 0.4s ease;
}

.home-product-card:hover .product-image-wrap img {
    transform: scale(1.02);
}

.product-badge {
    position: absolute;
    top: 9px;
    left: 9px;
    z-index: 5;

    padding: 5px 8px;

    background: #ffffff;
    color: #403a36;

    font-size: 8px;
    line-height: 1;
}

.product-info {
    padding-top: 9px;
}

.product-category {
    display: block;
    margin-bottom: 4px;

    color: #8a817c;

    font-size: 8px;
    line-height: 1.2;
}

.product-info h3 {
    margin: 0 0 5px;

    color: #4b4541;

    font-family: Georgia, "Times New Roman", serif;
    font-size: 11px;
    font-weight: 400;
    line-height: 1.3;
}

.product-price {
    display: flex;
    align-items: center;
    gap: 7px;
}

.sale-price {
    color: #4b4541;
    font-size: 10px;
    line-height: 1.2;
}

.regular-price {
    color: #99918c;
    font-size: 8px;
    line-height: 1.2;
    text-decoration: line-through;
}


/* =========================================================
   EDITORIAL SECTION
========================================================= */

.editorial-section {
    width: 100%;
    max-width: none;
    margin: 0;

    padding: 85px max(30px, calc((100% - 1400px) / 2));

    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);

    align-items: center;
    gap: 70px;

    background: #f8f6e8;
}

.editorial-image {
    width: 100%;
    overflow: hidden;
    background: #eee8e4;
}

.editorial-image img {
    width: 100%;
    height: 100%;
    min-height: 560px;

    display: block;

    object-fit: cover;
    object-position: center center;

    transition: transform 0.5s ease;
}

.editorial-image:hover img {
    transform: scale(1.015);
}

.editorial-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;

    padding: 20px 0;
}

.editorial-label {
    margin: 0 0 14px;
    color: #766e69;
    font-size: 11px;
    line-height: 1.4;
}

.editorial-content h2 {
    margin: 0 0 20px;

    color: #292522;

    font-family: Georgia, "Times New Roman", serif;
    font-size: 40px;
    font-weight: 400;
    line-height: 1.08;
}

.editorial-description {
    margin: 0 0 28px;
    color: #625b56;
    font-size: 12px;
    line-height: 1.6;
}

.editorial-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;

    padding-bottom: 5px;

    border-bottom: 1px solid #554e49;

    color: #292522;

    font-size: 11px;
    line-height: 1.3;
}

.editorial-link span {
    font-size: 15px;
    line-height: 1;
    transition: transform 0.25s ease;
}

.editorial-link:hover span {
    transform: translateX(4px);
}


/* =========================================================
   ALL CATEGORY SECTION
========================================================= */

.all-category-section {
    padding-top: 70px;
    padding-bottom: 95px;
}

.center-section-heading {
    width: 100%;
    text-align: center;
    margin-bottom: 30px;
}

.center-section-heading .section-kicker {
    margin-bottom: 5px;
}

.all-category-grid {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
}

.all-category-card {
    display: block;
    min-width: 0;
    text-align: center;
}

.all-category-image {
    width: 100%;

    /* HEIGHT - KEEP AS IT IS */
    aspect-ratio: 2 / 3;

    overflow: hidden;
    background: #eee8e4;
}

.all-category-image img {
    width: 100%;
    height: 100%;
    display: block;

    object-fit: cover;
    object-position: center center;

    transition: transform 0.4s ease;
}

.all-category-card:hover .all-category-image img {
    transform: scale(1.02);
}

.all-category-card > span {
    display: block;
    padding-top: 9px;

    color: #645c57;

    font-family: Georgia, "Times New Roman", serif;
    font-size: 10px;
    line-height: 1.3;
}


/* =========================================================
   LARGE DESKTOP
   1920 × 1080
========================================================= */

@media (min-width: 1600px) {

    .home-hero-video,
    .hero-slide {
        height: 800px;
    }

    .home-section {
        max-width: 1500px;
        padding-left: 30px;
        padding-right: 30px;
    }

    .category-grid,
    .product-grid,
    .all-category-grid {
        gap: 14px;
    }

    .editorial-section {
        padding-left: max(40px, calc((100% - 1500px) / 2));
        padding-right: max(40px, calc((100% - 1500px) / 2));
        gap: 85px;
    }

    .editorial-image img {
        min-height: 650px;
    }

    .editorial-content h2 {
        font-size: 46px;
    }
}


/* =========================================================
   LARGE LAPTOP
   1440 × 900
========================================================= */

@media (min-width: 1367px) and (max-width: 1599px) {

    .home-hero-video,
    .hero-slide {
        height: 700px;
    }

    .home-section {
        max-width: 1400px;
        padding-left: 30px;
        padding-right: 30px;
    }

    .category-grid,
    .product-grid,
    .all-category-grid {
        gap: 12px;
    }

    .editorial-section {
        padding-left: max(35px, calc((100% - 1400px) / 2));
        padding-right: max(35px, calc((100% - 1400px) / 2));
        gap: 75px;
    }

    .editorial-image img {
        min-height: 600px;
    }
}


/* =========================================================
   LAPTOP
   1366 × 768
========================================================= */

@media (min-width: 1025px) and (max-width: 1366px) {

    .home-hero-video,
    .hero-slide {
        height: 500px;
    }

    .home-section {
        max-width: 1250px;
        padding-left: 25px;
        padding-right: 25px;
    }

    .category-grid,
    .product-grid,
    .all-category-grid {
        gap: 12px;
    }

    .editorial-section {
        padding-left: 30px;
        padding-right: 30px;
        gap: 50px;
    }

    .editorial-image img {
        min-height: 500px;
    }

    .editorial-content h2 {
        font-size: 36px;
    }
}


/* =========================================================
   LANDSCAPE TABLET
   1024 × 768
========================================================= */

@media (min-width: 769px) and (max-width: 1024px) {

    .home-hero-video,
    .hero-slide {
        height: 460px;
    }

    .home-section {
        max-width: 100%;
        padding: 55px 28px;
    }

    .section-heading h2,
    .center-section-heading h2 {
        font-size: 24px;
    }

    .category-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 10px;
    }

    .product-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 10px;
    }

    .all-category-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 10px;
    }

    .editorial-section {
        padding: 65px 28px;
        gap: 40px;
    }

    .editorial-image img {
        min-height: 450px;
    }

    .editorial-content h2 {
        font-size: 31px;
    }
}


/* =========================================================
   TABLET
   768 × 1024
========================================================= */

@media (min-width: 601px) and (max-width: 768px) {

    .home-hero-video,
    .hero-slide {
        height: 430px;
    }

    .hero-content {
        bottom: 35px;
    }

    .hero-content h1 {
        font-size: 26px;
    }

    .home-section {
        max-width: 100%;
        padding: 48px 25px;
    }

    .section-heading h2,
    .center-section-heading h2 {
        font-size: 22px;
    }

    .category-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }

    .product-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }

    .all-category-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 10px;
    }

    .editorial-section {
        width: 100%;
        max-width: none;

        padding: 60px 25px;

        grid-template-columns: 1fr;
        gap: 35px;
    }

    .editorial-image img {
        min-height: 500px;
    }

    .editorial-content h2 {
        font-size: 32px;
    }
}


/* =========================================================
   LARGE MOBILE
   414 × 896
========================================================= */

@media (min-width: 391px) and (max-width: 600px) {

    .home-hero-video,
    .hero-slide {
        height: 380px;
    }

    .hero-content {
        bottom: 28px;
    }

    .hero-content h1 {
        font-size: 23px;
    }

    .hero-content p {
        font-size: 9px;
    }

    .home-section {
        padding: 40px 18px;
    }

    .section-heading h2,
    .center-section-heading h2 {
        font-size: 20px;
    }

    .category-grid,
    .product-grid,
    .all-category-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 8px;
    }

    .category-info {
        padding-top: 8px;
    }

    .category-info span {
        font-size: 9px;
    }

    .category-info small {
        font-size: 7px;
    }

    .product-info {
        padding-top: 7px;
    }

    .product-category {
        font-size: 7px;
    }

    .product-info h3 {
        font-size: 9px;
    }

    .sale-price {
        font-size: 8px;
    }

    .regular-price {
        font-size: 7px;
    }

    .editorial-section {
        width: 100%;
        max-width: none;

        padding: 50px 18px;

        grid-template-columns: 1fr;
        gap: 28px;
    }

    .editorial-image img {
        min-height: 420px;
    }

    .editorial-label {
        font-size: 10px;
    }

    .editorial-content h2 {
        font-size: 29px;
    }

    .editorial-description {
        font-size: 11px;
        margin-bottom: 22px;
    }

    .editorial-link {
        font-size: 10px;
    }
}


/* =========================================================
   MODERN MOBILE
   390 × 844
========================================================= */

@media (min-width: 361px) and (max-width: 390px) {

    .home-hero-video,
    .hero-slide {
        height: 360px;
    }

    .hero-content {
        bottom: 26px;
    }

    .hero-content h1 {
        font-size: 22px;
    }

    .hero-content p {
        font-size: 9px;
    }

    .home-section {
        padding: 38px 15px;
    }

    .section-heading {
        margin-bottom: 20px;
    }

    .section-heading h2,
    .center-section-heading h2 {
        font-size: 19px;
    }

    .category-grid,
    .product-grid,
    .all-category-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 7px;
    }

    .category-info {
        padding-top: 8px;
    }

    .category-info span {
        font-size: 9px;
    }

    .category-info small {
        font-size: 7px;
    }

    .product-info {
        padding-top: 7px;
    }

    .product-category {
        font-size: 7px;
    }

    .product-info h3 {
        font-size: 9px;
    }

    .sale-price {
        font-size: 8px;
    }

    .regular-price {
        font-size: 7px;
    }

    .editorial-section {
        padding: 45px 15px;
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .editorial-image img {
        min-height: 390px;
    }

    .editorial-content h2 {
        font-size: 27px;
    }
}


/* =========================================================
   MOBILE
   360 × 800
========================================================= */

@media (min-width: 321px) and (max-width: 360px) {

    .home-hero-video,
    .hero-slide {
        height: 340px;
    }

    .hero-content {
        bottom: 24px;
    }

    .hero-content h1 {
        font-size: 21px;
    }

    .hero-content p {
        font-size: 8px;
    }

    .hero-button {
        min-width: 95px;
        height: 30px;
        padding: 0 14px;
        font-size: 8px;
    }

    .home-section {
        padding: 35px 13px;
    }

    .section-heading {
        margin-bottom: 18px;
    }

    .section-heading h2,
    .center-section-heading h2 {
        font-size: 18px;
    }

    .category-grid,
    .product-grid,
    .all-category-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 6px;
    }

    .category-info {
        padding-top: 7px;
    }

    .category-info span {
        font-size: 8px;
    }

    .category-info small {
        font-size: 7px;
    }

    .product-info {
        padding-top: 6px;
    }

    .product-category {
        font-size: 7px;
    }

    .product-info h3 {
        font-size: 8px;
    }

    .product-price {
        gap: 4px;
    }

    .sale-price {
        font-size: 8px;
    }

    .regular-price {
        font-size: 6px;
    }

    .editorial-section {
        padding: 40px 13px;
        grid-template-columns: 1fr;
        gap: 22px;
    }

    .editorial-image img {
        min-height: 350px;
    }

    .editorial-label {
        font-size: 8px;
    }

    .editorial-content h2 {
        font-size: 24px;
    }

    .editorial-description {
        font-size: 9px;
    }

    .editorial-link {
        font-size: 8px;
    }
}


/* =========================================================
   SMALL MOBILE
   320 × 568
========================================================= */

@media (max-width: 320px) {

    .home-hero-video,
    .hero-slide {
        height: 310px;
    }

    .hero-content {
        bottom: 20px;
    }

    .hero-content h1 {
        font-size: 19px;
    }

    .hero-content p {
        font-size: 7px;
        margin-bottom: 12px;
    }

    .hero-button {
        min-width: 88px;
        height: 28px;
        padding: 0 12px;
        font-size: 7px;
    }

    .home-section {
        padding: 30px 11px;
    }

    .section-heading {
        margin-bottom: 16px;
    }

    .section-heading h2,
    .center-section-heading h2 {
        font-size: 17px;
    }

    .category-grid,
    .product-grid,
    .all-category-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 5px;
    }

    .category-info {
        padding-top: 6px;
    }

    .category-info span {
        font-size: 7px;
    }

    .category-info small {
        font-size: 6px;
    }

    .product-info {
        padding-top: 5px;
    }

    .product-category {
        font-size: 6px;
        margin-bottom: 3px;
    }

    .product-info h3 {
        font-size: 7px;
        margin-bottom: 4px;
    }

    .product-price {
        gap: 3px;
    }

    .sale-price {
        font-size: 7px;
    }

    .regular-price {
        font-size: 6px;
    }

    .editorial-section {
        padding: 35px 11px;
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .editorial-image img {
        min-height: 310px;
    }

    .editorial-label {
        font-size: 8px;
    }

    .editorial-content h2 {
        font-size: 22px;
    }

    .editorial-description {
        font-size: 8px;
        margin-bottom: 16px;
    }

    .editorial-link {
        font-size: 7px;
    }

    .all-category-card > span {
        font-size: 6px;
    }
}


/* =========================================================
   TOUCH DEVICES
========================================================= */

@media (hover: none) {

    .category-card:hover .category-image img,
    .home-product-card:hover .product-image-wrap img,
    .all-category-card:hover .all-category-image img,
    .editorial-image:hover img {
        transform: none;
    }
}


/* =========================================================
   REDUCED MOTION
========================================================= */

@media (prefers-reduced-motion: reduce) {

    .home-page *,
    .home-page *::before,
    .home-page *::after {
        transition: none !important;
        animation: none !important;
    }
}


/* =========================================================
   HOME PAGE ONLY - TRANSPARENT HEADER
========================================================= */

body.home-transparent-header .site-header {
    position: fixed !important;

    top: 0;
    left: 0;

    width: 100%;

    z-index: 9999;

    background: transparent !important;
}

body.home-transparent-header .header-main,
body.home-transparent-header .header-nav {
    background: transparent !important;
}


/* =========================================================
   HOME HEADER - BLACK SEARCH + ICONS
========================================================= */

body.home-transparent-header .site-header,
body.home-transparent-header .site-header a,
body.home-transparent-header .site-header button,
body.home-transparent-header .site-header i,
body.home-transparent-header .site-header svg {
    color: #000000 !important;
}

body.home-transparent-header .site-header input,
body.home-transparent-header .site-header input::placeholder {
    color: #000000 !important;
}

body.home-transparent-header .site-header input {
    border-color: #000000 !important;
}

body.home-transparent-header .site-header .search,
body.home-transparent-header .site-header .search-input,
body.home-transparent-header .site-header input {
    border-bottom-color: #000000 !important;
}