/*=========================================================
    BUY A RUG - LUXURY MEGA MENU
    PART 1 - FOUNDATION
=========================================================*/

:root {

    --primary: #B08D57;
    --dark: #111111;
    --light: #ffffff;
    --text: #555555;
    --border: #ececec;
    --shadow: 0 20px 60px rgba(0, 0, 0, .12);
    --radius: 18px;

}

/*=========================================================
MAIN NAV
=========================================================*/

.main-nav {

    position: relative;
    z-index: 100;

}

.luxury-menu {

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

}

.luxury-menu>li {

    position: static;

}

.luxury-menu>li>a {

    display: block;

    padding: 22px 18px;

    font-size: 14px;

    font-weight: 600;

    letter-spacing: .8px;

    color: #222;

    text-transform: uppercase;

    transition: .3s;

}

.luxury-menu>li:hover>a {

    color: var(--primary);

}

/*=========================================================
MEGA DROPDOWN
=========================================================*/

.has-mega {

    position: static;

}

.has-mega>.mega-panel {

    position: absolute;

    left: 0;

    top: 100%;

    width: 100%;

    background: #fff;

    box-shadow: var(--shadow);

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

    opacity: 0;

    visibility: hidden;

    transform: translateY(25px);

    transition: .35s;

    z-index: 99999;

    pointer-events: none;

}

/* JS adds .show */

.has-mega>.mega-panel.show {

    opacity: 1;

    visibility: visible;

    transform: translateY(0);

    pointer-events: auto;

}

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

.mega-container {

    max-width: 1450px;

    margin: auto;

    padding: 45px;

}

/*=========================================================
WRAPPER
=========================================================*/

.mega-wrapper {

    display: grid;

    grid-template-columns: 3fr 1.2fr;

    gap: 40px;

}

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

.mega-header {

    display: flex;

    justify-content: space-between;

    align-items: flex-end;

    margin-bottom: 35px;

}

.mega-heading h3 {

    font-size: 30px;

    color: #111;

    margin: 0;

    font-weight: 700;

}

.mega-heading p {

    margin-top: 8px;

    color: #777;

    font-size: 15px;

}

/*=========================================================
LEFT
=========================================================*/

.mega-left {

    width: 100%;

}

/*=========================================================
RIGHT
=========================================================*/

.mega-right {

    width: 100%;

    display: flex;

}

/*=========================================================
EMPTY STATES
=========================================================*/

.no-banner {

    width: 100%;

    min-height: 500px;

    border-radius: var(--radius);

    background:

        linear-gradient(135deg,

            #f7f7f7,

            #efefef);

    display: flex;

    align-items: center;

    justify-content: center;

    color: #999;

    font-size: 18px;

    font-weight: 600;

}

.no-image {

    background: #f5f5f5;

    display: flex;

    align-items: center;

    justify-content: center;

    color: #bbb;

    font-size: 13px;

}

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

.mega-footer {

    margin-top: 40px;

    padding-top: 25px;

    border-top: 1px solid #eee;

    display: flex;

    justify-content: space-between;

    align-items: center;

}

.mega-footer a {

    display: inline-block;

    padding: 12px 28px;

    background: #111;

    color: #fff;

    border-radius: 35px;

    text-decoration: none;

    transition: .3s;

}

.mega-footer a:hover {

    background: var(--primary);

}

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

@media(max-width:1400px) {

    .mega-container {

        padding: 35px;

    }

}

@media(max-width:1200px) {

    .mega-wrapper {

        grid-template-columns: 1fr;

    }

    .mega-right {

        display: none;

    }

}

@media(max-width:991px) {

    .has-mega>.mega-panel {

        display: none;

    }

}
/*=========================================================
PART 2 - COLLECTION CARDS
=========================================================*/

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

.cards-grid {

    display: grid;

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

    gap: 28px;

}

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

.mega-card {

    display: block;

    position: relative;

    background: #fff;

    border-radius: 18px;

    overflow: hidden;

    border: 1px solid #efefef;

    transition: all .35s ease;

    text-decoration: none;

}

.mega-card:hover {

    transform: translateY(-8px);

    box-shadow: 0 18px 45px rgba(0, 0, 0, .12);

}

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

.mega-image {

    position: relative;

    height: 220px;

    overflow: hidden;

    background: #f6f6f6;

}

.mega-image img {

    width: 100%;

    height: 100%;

    object-fit: cover;

    transition: .6s;

}

/* If no image */

.mega-image img[src=""],
.mega-image img:not([src]) {

    display: none;

}

.mega-image.no-image {

    background: linear-gradient(135deg, #f7f7f7, #ededed);

}

.mega-image.no-image:before {

    content: "RUG";

    position: absolute;

    left: 50%;

    top: 50%;

    transform: translate(-50%, -50%);

    font-size: 42px;

    color: #ddd;

    font-weight: 700;

    letter-spacing: 5px;

}

/*==============================
OVERLAY
==============================*/

.mega-image:after {

    content: "";

    position: absolute;

    left: 0;

    right: 0;

    bottom: 0;

    height: 60%;

    background: linear-gradient(to top,
            rgba(0, 0, 0, .45),
            transparent);

    opacity: 0;

    transition: .35s;

}

.mega-card:hover .mega-image:after {

    opacity: 1;

}

.mega-card:hover img {

    transform: scale(1.08);

}

/*==============================
BADGE
==============================*/

.collection-badge {

    position: absolute;

    top: 16px;

    left: 16px;

    background: #B08D57;

    color: #fff;

    padding: 7px 16px;

    border-radius: 25px;

    font-size: 11px;

    text-transform: uppercase;

    letter-spacing: 1px;

    z-index: 10;

}

/*==============================
TITLE
==============================*/

.mega-title {

    padding: 22px;

    text-align: center;

}

.mega-title h4 {

    margin: 0;

    font-size: 18px;

    color: #222;

    font-weight: 600;

    transition: .3s;

}

.mega-title span {

    display: block;

    margin-top: 8px;

    color: #999;

    font-size: 13px;

}

.mega-card:hover .mega-title h4 {

    color: #B08D57;

}

/*==============================
VIEW BUTTON
==============================*/

.collection-btn {

    position: absolute;

    left: 50%;

    bottom: -60px;

    transform: translateX(-50%);

    transition: .35s;

    z-index: 20;

}

.collection-btn span {

    display: inline-block;

    background: #fff;

    color: #111;

    padding: 12px 26px;

    border-radius: 35px;

    font-size: 14px;

    font-weight: 600;

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

}

.mega-card:hover .collection-btn {

    bottom: 24px;

}

/*==============================
RIBBON
==============================*/

.ribbon {

    position: absolute;

    right: -48px;

    top: 22px;

    width: 170px;

    text-align: center;

    background: #d89d1f;

    color: #fff;

    transform: rotate(45deg);

    font-size: 11px;

    padding: 6px;

    letter-spacing: 1px;

    z-index: 9;

}

/*==============================
SHINE EFFECT
==============================*/

.mega-card:before {

    content: "";

    position: absolute;

    left: -120%;

    top: 0;

    width: 70%;

    height: 100%;

    background:

        linear-gradient(90deg,

            transparent,

            rgba(255, 255, 255, .25),

            transparent);

    transform: skewX(-25deg);

    transition: .7s;

    z-index: 30;

}

.mega-card:hover:before {

    left: 170%;

}

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

@media(max-width:1300px) {

    .cards-grid {

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

    }

}

@media(max-width:767px) {

    .cards-grid {

        grid-template-columns: 1fr;

    }

    .mega-image {

        height: 180px;

    }

}
/*=========================================================
PART 3 - LUXURY BANNER
=========================================================*/

.mega-right {

    width: 100%;

    display: flex;

    align-items: stretch;

}

.mega-banner {

    position: relative;

    width: 100%;

    min-height: 620px;

    border-radius: 22px;

    overflow: hidden;

    background: #111;

    box-shadow: 0 20px 50px rgba(0, 0, 0, .18);

}

/*============================
Banner Image
============================*/

.mega-banner img {

    width: 100%;

    height: 100%;

    object-fit: cover;

    transition: .7s;

}

.mega-banner:hover img {

    transform: scale(1.08);

}

/*============================
No Banner
============================*/

.mega-banner.no-banner {

    background:
        linear-gradient(135deg, #181818, #333),
        radial-gradient(circle at top right, #b08d57 0%, transparent 45%);

}

.mega-banner.no-banner:before {

    content: "BUY A RUG";

    position: absolute;

    left: 50%;

    top: 50%;

    transform: translate(-50%, -50%);

    font-size: 42px;

    color: rgba(255, 255, 255, .08);

    font-weight: 700;

    letter-spacing: 6px;

    white-space: nowrap;

}

/*============================
Overlay
============================*/

.mega-banner:after {

    content: "";

    position: absolute;

    inset: 0;

    background:

        linear-gradient(to top,

            rgba(0, 0, 0, .82),

            rgba(0, 0, 0, .18),

            transparent);

}

/*============================
Content
============================*/

.banner-overlay {

    position: absolute;

    left: 35px;

    right: 35px;

    bottom: 35px;

    z-index: 20;

    color: #fff;

}

.banner-overlay small {

    display: inline-block;

    color: #d9b76b;

    text-transform: uppercase;

    letter-spacing: 2px;

    font-size: 12px;

    margin-bottom: 15px;

}

.banner-overlay h3 {

    color: #fff;

    font-size: 34px;

    line-height: 42px;

    margin-bottom: 18px;

    font-weight: 700;

}

.banner-overlay p {

    color: #f3f3f3;

    line-height: 28px;

    margin-bottom: 28px;

}

/*============================
Button
============================*/

.banner-btn {

    display: inline-flex;

    align-items: center;

    justify-content: center;

    padding: 14px 34px;

    background: #B08D57;

    color: #fff;

    border-radius: 35px;

    text-decoration: none;

    transition: .35s;

    font-weight: 600;

}

.banner-btn:hover {

    background: #fff;

    color: #111;

}

/*============================
Floating Card
============================*/

.banner-feature {

    position: absolute;

    right: 25px;

    top: 25px;

    z-index: 25;

    width: 180px;

    padding: 18px;

    border-radius: 16px;

    background: rgba(255, 255, 255, .15);

    backdrop-filter: blur(18px);

    color: #fff;

}

.banner-feature h4 {

    color: #fff;

    margin-bottom: 8px;

    font-size: 18px;

}

.banner-feature p {

    margin: 0;

    font-size: 13px;

    line-height: 20px;

}

/*============================
Decorative Circles
============================*/

.banner-circle {

    position: absolute;

    border-radius: 50%;

    border: 1px solid rgba(255, 255, 255, .12);

    z-index: 10;

}

.banner-circle.one {

    width: 220px;

    height: 220px;

    top: -80px;

    right: -80px;

}

.banner-circle.two {

    width: 130px;

    height: 130px;

    bottom: 40px;

    right: 40px;

}

/*============================
Bottom Stats
============================*/

.banner-stats {

    position: absolute;

    left: 30px;

    right: 30px;

    bottom: 0;

    display: flex;

    justify-content: space-between;

    padding: 18px 25px;

    background: rgba(255, 255, 255, .08);

    backdrop-filter: blur(15px);

    z-index: 30;

}

.banner-stat {

    text-align: center;

    color: #fff;

}

.banner-stat strong {

    display: block;

    font-size: 24px;

    color: #fff;

}

.banner-stat span {

    font-size: 13px;

    color: #ddd;

}

/*============================
Responsive
============================*/

@media(max-width:1200px) {

    .mega-banner {

        min-height: 420px;

    }

}

@media(max-width:991px) {

    .mega-right {

        display: none;

    }

}
/*=========================================================
PART 4 - CIRCLE / COLOR / SIZE COLLECTIONS
=========================================================*/

/*=============================================
COMMON GRID
=============================================*/

.circle-grid,
.color-grid,
.size-grid {

    display: grid;

    gap: 28px;

    align-items: start;

}

/*=============================================
MATERIAL GRID
=============================================*/

.circle-grid {

    grid-template-columns: repeat(5, minmax(120px, 1fr));

}

/*=============================================
CIRCLE CARD
=============================================*/

.circle-card {

    display: flex;

    flex-direction: column;

    align-items: center;

    text-decoration: none;

    transition: .35s;

    position: relative;

}

.circle-card:hover {

    transform: translateY(-6px);

}

/*=============================================
CIRCLE IMAGE
=============================================*/

.circle-image {

    width: 120px;

    height: 120px;

    border-radius: 50%;

    overflow: hidden;

    background: #f6f6f6;

    border: 4px solid #fff;

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

    transition: .35s;

    position: relative;

}

.circle-card:hover .circle-image {

    border-color: #B08D57;

    box-shadow: 0 18px 35px rgba(0, 0, 0, .15);

}

.circle-image img {

    width: 100%;

    height: 100%;

    object-fit: cover;

    transition: .5s;

}

.circle-card:hover img {

    transform: scale(1.08);

}

/* No Image */

.circle-image.no-image {

    background: linear-gradient(135deg, #fafafa, #efefef);

}

.circle-image.no-image:before {

    content: "RUG";

    position: absolute;

    left: 50%;

    top: 50%;

    transform: translate(-50%, -50%);

    color: #ccc;

    font-size: 14px;

    letter-spacing: 2px;

    font-weight: 700;

}

/*=============================================
TITLE
=============================================*/

.circle-card span {

    margin-top: 14px;

    font-size: 15px;

    color: #333;

    font-weight: 600;

    text-align: center;

    transition: .3s;

}

.circle-card:hover span {

    color: #B08D57;

}

/*=============================================
COLOR GRID
=============================================*/

.color-grid {

    grid-template-columns: repeat(6, minmax(90px, 1fr));

}

/*=============================================
COLOR CARD
=============================================*/

.color-card {

    display: flex;

    flex-direction: column;

    align-items: center;

    text-decoration: none;

}

.color-circle {

    width: 90px;

    height: 90px;

    border-radius: 50%;

    border: 6px solid #fff;

    box-shadow: 0 8px 20px rgba(0, 0, 0, .10);

    transition: .35s;

    cursor: pointer;

}

.color-card:hover .color-circle {

    transform: scale(1.15);

    box-shadow: 0 18px 35px rgba(0, 0, 0, .18);

}

.color-card span {

    margin-top: 15px;

    color: #333;

    font-size: 14px;

    font-weight: 600;

}

/*=============================================
SIZE GRID
=============================================*/

.size-grid {

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

}

/*=============================================
SIZE CARD
=============================================*/

.size-card {

    display: flex;

    flex-direction: column;

    align-items: center;

    text-decoration: none;

    border: 1px solid #ececec;

    border-radius: 18px;

    padding: 25px;

    transition: .35s;

    background: #fff;

}

.size-card:hover {

    border-color: #B08D57;

    transform: translateY(-6px);

    box-shadow: 0 18px 35px rgba(0, 0, 0, .12);

}

.size-image {

    width: 100px;

    height: 80px;

    display: flex;

    align-items: center;

    justify-content: center;

    margin-bottom: 20px;

}

.size-image img {

    max-width: 100%;

    max-height: 100%;

    object-fit: contain;

}

.size-image.no-image {

    background: #f8f8f8;

    border-radius: 12px;

}

.size-image.no-image:before {

    content: "SIZE";

    color: #ccc;

    font-weight: 700;

    letter-spacing: 2px;

}

.size-card span {

    color: #333;

    font-size: 16px;

    font-weight: 600;

}

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

@media(max-width:1400px) {

    .circle-grid {

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

    }

    .color-grid {

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

    }

}

@media(max-width:1200px) {

    .circle-grid {

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

    }

    .color-grid {

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

    }

    .size-grid {

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

    }

}

@media(max-width:767px) {

    .circle-grid {

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

    }

    .color-grid {

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

    }

    .size-grid {

        grid-template-columns: 1fr;

    }

}
/*=========================================================
PART 5 - FEATURED PRODUCTS
=========================================================*/

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

.mega-featured {

    margin-top: 45px;

}

.mega-featured-title {

    display: flex;

    align-items: center;

    justify-content: space-between;

    margin-bottom: 25px;

}

.mega-featured-title h4 {

    margin: 0;

    font-size: 22px;

    font-weight: 700;

    color: #111;

}

.mega-featured-title a {

    color: #B08D57;

    text-decoration: none;

    font-weight: 600;

}

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

.featured-grid {

    display: grid;

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

    gap: 25px;

}

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

.featured-card {

    position: relative;

    display: block;

    border-radius: 18px;

    overflow: hidden;

    background: #fff;

    border: 1px solid #ececec;

    transition: .35s;

    text-decoration: none;

}

.featured-card:hover {

    transform: translateY(-8px);

    box-shadow: 0 18px 45px rgba(0, 0, 0, .12);

}

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

.featured-image {

    position: relative;

    height: 230px;

    overflow: hidden;

    background: #f6f6f6;

}

.featured-image img {

    width: 100%;

    height: 100%;

    object-fit: cover;

    transition: .6s;

}

.featured-card:hover img {

    transform: scale(1.08);

}

/* No image */

.featured-image.no-image {

    background: linear-gradient(135deg, #fafafa, #ececec);

}

.featured-image.no-image:before {

    content: "BUY A RUG";

    position: absolute;

    left: 50%;

    top: 50%;

    transform: translate(-50%, -50%);

    font-size: 18px;

    color: #ccc;

    font-weight: 700;

    letter-spacing: 2px;

}

/*===============================
BADGES
================================*/

.product-badge {

    position: absolute;

    top: 16px;

    left: 16px;

    z-index: 20;

    padding: 7px 14px;

    border-radius: 20px;

    color: #fff;

    font-size: 11px;

    letter-spacing: 1px;

    text-transform: uppercase;

    font-weight: 700;

}

.badge-sale {

    background: #e53935;

}

.badge-new {

    background: #0C7C59;

}

.badge-hot {

    background: #ff9800;

}

/*===============================
QUICK ACTION
================================*/

.quick-action {

    position: absolute;

    left: 50%;

    bottom: -55px;

    transform: translateX(-50%);

    transition: .35s;

    z-index: 30;

}

.quick-action span {

    display: inline-block;

    padding: 12px 28px;

    background: #fff;

    color: #111;

    border-radius: 35px;

    box-shadow: 0 10px 30px rgba(0, 0, 0, .18);

    font-weight: 600;

}

.featured-card:hover .quick-action {

    bottom: 20px;

}

/*===============================
CONTENT
================================*/

.featured-content {

    padding: 20px;

}

.featured-content h5 {

    margin: 0;

    font-size: 17px;

    color: #222;

    font-weight: 600;

}

.featured-content p {

    margin: 10px 0;

    color: #888;

    font-size: 13px;

    line-height: 22px;

}

/*===============================
PRICE
================================*/

.product-price {

    display: flex;

    align-items: center;

    gap: 10px;

}

.product-price strong {

    color: #B08D57;

    font-size: 20px;

}

.product-price del {

    color: #aaa;

    font-size: 14px;

}

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

.featured-bottom {

    margin-top: 15px;

    display: flex;

    justify-content: space-between;

    align-items: center;

}

.featured-bottom span {

    color: #666;

    font-size: 13px;

}

.featured-bottom i {

    color: #ffc107;

}

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

.no-featured {

    border: 2px dashed #ddd;

    border-radius: 20px;

    min-height: 260px;

    display: flex;

    align-items: center;

    justify-content: center;

    color: #aaa;

    font-size: 18px;

}

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

@media(max-width:1300px) {

    .featured-grid {

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

    }

}

@media(max-width:767px) {

    .featured-grid {

        grid-template-columns: 1fr;

    }

}
/*=========================================================
PART 6 - LUXURY FOOTER
=========================================================*/

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

.mega-footer {

    margin-top: 50px;

    padding-top: 35px;

    border-top: 1px solid #ececec;

    display: grid;

    grid-template-columns: 2fr 1fr;

    gap: 40px;

}

/*=========================================
LEFT
=========================================*/

.mega-footer-left {

    display: flex;

    justify-content: space-between;

    flex-wrap: wrap;

    gap: 25px;

}

/*=========================================
INFO BLOCK
=========================================*/

.footer-info {

    min-width: 180px;

}

.footer-info h5 {

    margin: 0 0 15px;

    color: #111;

    font-size: 16px;

    font-weight: 700;

}

.footer-info ul {

    margin: 0;

    padding: 0;

    list-style: none;

}

.footer-info li {

    margin-bottom: 10px;

}

.footer-info a {

    color: #666;

    text-decoration: none;

    transition: .3s;

}

.footer-info a:hover {

    color: #B08D57;

}

/*=========================================
STATISTICS
=========================================*/

.collection-stats {

    display: flex;

    gap: 35px;

}

.collection-stat {

    text-align: center;

}

.collection-stat strong {

    display: block;

    color: #111;

    font-size: 30px;

    font-weight: 700;

}

.collection-stat span {

    color: #888;

    font-size: 13px;

}

/*=========================================
RIGHT
=========================================*/

.mega-footer-right {

    display: flex;

    flex-direction: column;

    justify-content: center;

}

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

.newsletter-box {

    padding: 25px;

    border-radius: 20px;

    background: #faf8f4;

    border: 1px solid #ececec;

}

.newsletter-box h4 {

    margin-bottom: 12px;

    color: #111;

    font-size: 22px;

}

.newsletter-box p {

    color: #666;

    line-height: 24px;

    margin-bottom: 20px;

}

/*=========================================
INPUT
=========================================*/

.newsletter-box form {

    display: flex;

}

.newsletter-box input {

    flex: 1;

    height: 48px;

    border: 1px solid #ddd;

    border-radius: 30px 0 0 30px;

    padding: 0 20px;

    outline: none;

}

.newsletter-box button {

    height: 48px;

    border: none;

    padding: 0 28px;

    background: #B08D57;

    color: #fff;

    border-radius: 0 30px 30px 0;

    cursor: pointer;

    transition: .3s;

}

.newsletter-box button:hover {

    background: #111;

}

/*=========================================
TRUST BADGES
=========================================*/

.trust-icons {

    margin-top: 25px;

    display: flex;

    justify-content: space-between;

    gap: 15px;

}

.trust-box {

    flex: 1;

    text-align: center;

    border: 1px solid #ececec;

    border-radius: 16px;

    padding: 18px;

    transition: .3s;

}

.trust-box:hover {

    transform: translateY(-5px);

    box-shadow: 0 12px 30px rgba(0, 0, 0, .08);

}

.trust-box i {

    font-size: 28px;

    color: #B08D57;

    margin-bottom: 12px;

}

.trust-box h6 {

    margin: 0;

    font-size: 14px;

    color: #111;

}

.trust-box span {

    display: block;

    margin-top: 6px;

    color: #888;

    font-size: 12px;

}

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

.footer-social {

    display: flex;

    gap: 12px;

    margin-top: 20px;

}

.footer-social a {

    width: 42px;

    height: 42px;

    border-radius: 50%;

    background: #fff;

    border: 1px solid #ddd;

    display: flex;

    align-items: center;

    justify-content: center;

    transition: .3s;

    color: #666;

}

.footer-social a:hover {

    background: #B08D57;

    color: #fff;

    border-color: #B08D57;

}

/*=========================================
EMPTY STATES
=========================================*/

.no-newsletter {

    display: none;

}

.no-trust {

    display: none;

}

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

@media(max-width:1200px) {

    .mega-footer {

        grid-template-columns: 1fr;

    }

    .collection-stats {

        justify-content: center;

    }

}

@media(max-width:768px) {

    .mega-footer-left {

        flex-direction: column;

    }

    .collection-stats {

        flex-wrap: wrap;

    }

    .newsletter-box form {

        flex-direction: column;

        gap: 12px;

    }

    .newsletter-box input {

        border-radius: 30px;

    }

    .newsletter-box button {

        border-radius: 30px;

        width: 100%;

    }

    .trust-icons {

        flex-direction: column;

    }

}
/*=========================================================
PART 7 - PREMIUM ANIMATIONS
=========================================================*/

/*==============================
GENERAL TRANSITION
==============================*/

.mega-panel *,
.mega-card,
.circle-card,
.color-card,
.size-card,
.featured-card,
.banner-btn {

    transition: all .35s cubic-bezier(.4, 0, .2, 1);

}

/*==============================
PANEL ANIMATION
==============================*/

.has-mega>.mega-panel {

    transform: translateY(20px) scale(.98);

    opacity: 0;

}

.has-mega>.mega-panel.show {

    transform: translateY(0) scale(1);

    opacity: 1;

}

/*==============================
CARD STAGGER
==============================*/

.cards-grid .mega-card {

    opacity: 0;

    transform: translateY(25px);

    animation: megaCardFade .45s forwards;

}

.cards-grid .mega-card:nth-child(1) {
    animation-delay: .05s;
}

.cards-grid .mega-card:nth-child(2) {
    animation-delay: .10s;
}

.cards-grid .mega-card:nth-child(3) {
    animation-delay: .15s;
}

.cards-grid .mega-card:nth-child(4) {
    animation-delay: .20s;
}

.cards-grid .mega-card:nth-child(5) {
    animation-delay: .25s;
}

.cards-grid .mega-card:nth-child(6) {
    animation-delay: .30s;
}

.cards-grid .mega-card:nth-child(7) {
    animation-delay: .35s;
}

.cards-grid .mega-card:nth-child(8) {
    animation-delay: .40s;
}

@keyframes megaCardFade {

    from {

        opacity: 0;

        transform: translateY(25px);

    }

    to {

        opacity: 1;

        transform: translateY(0);

    }

}

/*==============================
CARD GLOW
==============================*/

.mega-card:hover {

    border-color: #B08D57;

}

.mega-card:hover::after {

    content: "";

    position: absolute;

    inset: 0;

    border: 2px solid rgba(176, 141, 87, .18);

    border-radius: 18px;

    pointer-events: none;

}

/*==============================
IMAGE SHINE
==============================*/

.mega-image {

    position: relative;

}

.mega-image:before {

    content: "";

    position: absolute;

    left: -120%;

    top: 0;

    width: 60%;

    height: 100%;

    background:

        linear-gradient(90deg,

            transparent,

            rgba(255, 255, 255, .30),

            transparent);

    transform: skewX(-25deg);

    transition: .8s;

    z-index: 5;

}

.mega-card:hover .mega-image:before {

    left: 180%;

}

/*==============================
TITLE UNDERLINE
==============================*/

.mega-title h4 {

    position: relative;

    display: inline-block;

}

.mega-title h4:after {

    content: "";

    position: absolute;

    left: 50%;

    bottom: -8px;

    width: 0;

    height: 2px;

    background: #B08D57;

    transition: .35s;

    transform: translateX(-50%);

}

.mega-card:hover .mega-title h4:after {

    width: 100%;

}

/*==============================
BUTTON EFFECT
==============================*/

.banner-btn {

    position: relative;

    overflow: hidden;

}

.banner-btn:before {

    content: "";

    position: absolute;

    left: -100%;

    top: 0;

    width: 100%;

    height: 100%;

    background: rgba(255, 255, 255, .18);

    transition: .5s;

}

.banner-btn:hover:before {

    left: 100%;

}

/*==============================
FEATURED PRODUCT
==============================*/

.featured-card:hover {

    border-color: #B08D57;

}

.featured-card:hover .featured-image img {

    transform: scale(1.08);

}

/*==============================
COLOR
==============================*/

.color-card:hover {

    transform: translateY(-5px);

}

.color-card:hover .color-circle {

    box-shadow:

        0 0 0 8px rgba(176, 141, 87, .12),

        0 15px 35px rgba(0, 0, 0, .12);

}

/*==============================
CIRCLE
==============================*/

.circle-card:hover {

    transform: translateY(-8px);

}

.circle-card:hover .circle-image {

    transform: rotate(3deg);

}

/*==============================
SIZE
==============================*/

.size-card:hover {

    background: #faf8f3;

}

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

.mega-footer a {

    position: relative;

    overflow: hidden;

}

.mega-footer a:before {

    content: "";

    position: absolute;

    left: -100%;

    top: 0;

    width: 100%;

    height: 100%;

    background: rgba(255, 255, 255, .20);

    transition: .5s;

}

.mega-footer a:hover:before {

    left: 100%;

}

/*==============================
MENU UNDERLINE
==============================*/

.luxury-menu>li>a {

    position: relative;

}

.luxury-menu>li>a:after {

    content: "";

    position: absolute;

    left: 50%;

    bottom: 10px;

    width: 0;

    height: 2px;

    background: #B08D57;

    transition: .35s;

    transform: translateX(-50%);

}

.luxury-menu>li:hover>a:after {

    width: 80%;

}

/*==============================
SCROLLBAR
==============================*/

.mega-panel {

    scrollbar-width: thin;

    scrollbar-color: #B08D57 #fff;

}

.mega-panel::-webkit-scrollbar {

    width: 8px;

}

.mega-panel::-webkit-scrollbar-thumb {

    background: #B08D57;

    border-radius: 20px;

}

.mega-panel::-webkit-scrollbar-track {

    background: #f6f6f6;

}

/*==============================
PERFORMANCE
==============================*/

.mega-card,
.circle-card,
.color-card,
.size-card,
.featured-card {

    will-change: transform;

    backface-visibility: hidden;

    transform-style: preserve-3d;

}
/*=========================================================
PART 8 - RESPONSIVE & MOBILE
=========================================================*/

/*==========================================
1600+
==========================================*/

@media (min-width:1600px) {

    .mega-container {

        max-width: 1550px;

    }

    .cards-grid {

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

    }

    .featured-grid {

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

    }

}


/*==========================================
1440
==========================================*/

@media(max-width:1440px) {

    .mega-container {

        padding: 35px;

    }

    .cards-grid {

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

    }

    .featured-grid {

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

    }

}


/*==========================================
1280
==========================================*/

@media(max-width:1280px) {

    .mega-wrapper {

        grid-template-columns: 2fr 1fr;

        gap: 30px;

    }

    .circle-grid {

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

    }

    .color-grid {

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

    }

}


/*==========================================
1200
==========================================*/

@media(max-width:1200px) {

    .mega-wrapper {

        grid-template-columns: 1fr;

    }

    .mega-right {

        display: none;

    }

    .cards-grid {

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

    }

    .featured-grid {

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

    }

}


/*==========================================
992
==========================================*/

@media(max-width:991px) {

    .has-mega>.mega-panel {

        display: none !important;

    }

    .cards-grid {

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

    }

    .circle-grid {

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

    }

    .color-grid {

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

    }

    .size-grid {

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

    }

    .featured-grid {

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

    }

}


/*==========================================
768
==========================================*/

@media(max-width:767px) {

    .cards-grid {

        grid-template-columns: 1fr;

    }

    .circle-grid {

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

    }

    .color-grid {

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

    }

    .size-grid {

        grid-template-columns: 1fr;

    }

    .featured-grid {

        grid-template-columns: 1fr;

    }

    .collection-stats {

        flex-wrap: wrap;

        justify-content: center;

        gap: 20px;

    }

    .footer-social {

        justify-content: center;

    }

}


/*==========================================
480
==========================================*/

@media(max-width:480px) {

    .mega-container {

        padding: 20px;

    }

    .mega-header h3 {

        font-size: 22px;

    }

    .banner-overlay h3 {

        font-size: 24px;

        line-height: 32px;

    }

    .banner-btn {

        width: 100%;

        justify-content: center;

    }

    .collection-badge {

        font-size: 10px;

        padding: 6px 10px;

    }

}


/*=========================================================
IMAGE FALLBACKS
=========================================================*/

img {

    max-width: 100%;

    height: auto;

}

.mega-image img,
.circle-image img,
.featured-image img {

    display: block;

    background: #f6f6f6;

}

.mega-image img[src=""],
.circle-image img[src=""],
.featured-image img[src=""] {

    display: none;

}


/*=========================================================
NO IMAGE PLACEHOLDER
=========================================================*/

.no-image,
.no-banner {

    position: relative;

    overflow: hidden;

}

.no-image:after,
.no-banner:after {

    content: "";

    position: absolute;

    inset: 0;

    background:

        linear-gradient(135deg,

            rgba(255, 255, 255, .12),

            transparent);

}


/*=========================================================
ACCESSIBILITY
=========================================================*/

.mega-card:focus,
.circle-card:focus,
.color-card:focus,
.size-card:focus,
.featured-card:focus {

    outline: 2px solid #B08D57;

    outline-offset: 4px;

}

.banner-btn:focus {

    outline: 2px solid #111;

}


/*=========================================================
PRINT
=========================================================*/

@media print {

    .mega-panel {

        display: none !important;

    }

}
/*=========================================================
PART 9 - FINAL LUXURY POLISH
=========================================================*/

/*====================================
Panel
====================================*/

.mega-panel {

    border-top: 3px solid var(--primary);

    backdrop-filter: blur(15px);

    overflow: hidden;

}

/*====================================
Scrollable Content
====================================*/

.mega-container {

    max-height: 82vh;

    overflow-y: auto;

    overflow-x: hidden;

}

/*====================================
Scrollbar
====================================*/

.mega-container::-webkit-scrollbar {

    width: 8px;

}

.mega-container::-webkit-scrollbar-thumb {

    background: #B08D57;

    border-radius: 20px;

}

.mega-container::-webkit-scrollbar-track {

    background: #f7f7f7;

}

/* Firefox */

.mega-container {

    scrollbar-width: thin;

    scrollbar-color: #B08D57 #f7f7f7;

}

/*====================================
Glass Card
====================================*/

.glass-card {

    background: rgba(255, 255, 255, .65);

    backdrop-filter: blur(25px);

    border: 1px solid rgba(255, 255, 255, .35);

    border-radius: 20px;

}

/*====================================
Hover Elevation
====================================*/

.mega-card,
.featured-card,
.size-card {

    will-change: transform;

}

.mega-card:hover,
.featured-card:hover,
.size-card:hover {

    box-shadow:

        0 25px 60px rgba(0, 0, 0, .12),

        0 10px 20px rgba(0, 0, 0, .06);

}

/*====================================
Divider
====================================*/

.mega-divider {

    width: 100%;

    height: 1px;

    margin: 35px 0;

    background:

        linear-gradient(to right,

            transparent,

            #ddd,

            transparent);

}

/*====================================
Header Bottom Border
====================================*/

.mega-header {

    padding-bottom: 25px;

    border-bottom: 1px solid #ececec;

}

/*====================================
Luxury Tag
====================================*/

.luxury-tag {

    display: inline-flex;

    align-items: center;

    padding: 7px 18px;

    border-radius: 30px;

    background: #111;

    color: #fff;

    font-size: 11px;

    text-transform: uppercase;

    letter-spacing: 1px;

}

.luxury-tag.gold {

    background: #B08D57;

}

/*====================================
Menu Hover Line
====================================*/

.luxury-menu>li {

    position: relative;

}

.luxury-menu>li>a {

    position: relative;

}

.luxury-menu>li>a::before {

    content: "";

    position: absolute;

    left: 50%;

    bottom: 8px;

    width: 0;

    height: 2px;

    background: #B08D57;

    transition: .35s;

    transform: translateX(-50%);

}

.luxury-menu>li:hover>a::before {

    width: 75%;

}

/*====================================
Banner Shine
====================================*/

.mega-banner {

    position: relative;

}

.mega-banner::before {

    content: "";

    position: absolute;

    left: -120%;

    top: 0;

    width: 70%;

    height: 100%;

    background:

        linear-gradient(90deg,

            transparent,

            rgba(255, 255, 255, .25),

            transparent);

    transform: skewX(-25deg);

    transition: .9s;

    z-index: 30;

}

.mega-banner:hover::before {

    left: 170%;

}

/*====================================
Card Border Animation
====================================*/

.mega-card {

    position: relative;

}

.mega-card::after {

    content: "";

    position: absolute;

    inset: 0;

    border: 2px solid transparent;

    border-radius: 18px;

    transition: .35s;

    pointer-events: none;

}

.mega-card:hover::after {

    border-color: rgba(176, 141, 87, .30);

}

/*====================================
Button Animation
====================================*/

.banner-btn,
.collection-btn span {

    transition: .35s;

}

.banner-btn:hover {

    transform: translateY(-2px);

}

.collection-btn span:hover {

    background: #B08D57;

    color: #fff;

}

/*====================================
Trust Hover
====================================*/

.trust-box {

    transition: .35s;

}

.trust-box:hover {

    border-color: #B08D57;

}

/*====================================
Social
====================================*/

.footer-social a {

    transition: .35s;

}

.footer-social a:hover {

    transform: translateY(-4px);

}

/*====================================
Sticky Header
====================================*/

.header-bottom.sticky-header {

    z-index: 9999;

}

.header-bottom.sticky-header .mega-panel {

    margin-top: 0;

}

/*====================================
Prevent Layout Shift
====================================*/

.mega-image,
.circle-image,
.featured-image {

    flex-shrink: 0;

}

/*====================================
Selection
====================================*/

::selection {

    background: #B08D57;

    color: #fff;

}
/*=========================================================
PART 10 - PRODUCTION READY
=========================================================*/

/*==========================================
Hardware Acceleration
==========================================*/

.mega-panel,
.mega-card,
.circle-card,
.color-card,
.size-card,
.featured-card,
.mega-banner {

    transform: translateZ(0);

    backface-visibility: hidden;

    perspective: 1000px;

}

/*==========================================
Prevent Image Flicker
==========================================*/

.mega-image img,
.circle-image img,
.featured-image img,
.mega-banner img {

    image-rendering: auto;

    backface-visibility: hidden;

}

/*==========================================
Smooth Hover
==========================================*/

.mega-card,
.featured-card,
.circle-card,
.color-card,
.size-card {

    transition:

        transform .35s,

        box-shadow .35s,

        border-color .35s,

        background .35s;

}

/*==========================================
Image Fade
==========================================*/

.mega-image img,
.featured-image img {

    opacity: 1;

    transition:

        opacity .4s,

        transform .5s;

}

.mega-card:hover img,
.featured-card:hover img {

    opacity: .96;

}

/*==========================================
Banner Gradient
==========================================*/

.mega-banner:after {

    content: "";

    position: absolute;

    left: 0;

    right: 0;

    top: 0;

    bottom: 0;

    background:

        linear-gradient(180deg,

            rgba(0, 0, 0, .05),

            rgba(0, 0, 0, .55));

    pointer-events: none;

}

/*==========================================
Banner Pattern
==========================================*/

.mega-banner.no-banner {

    background:

        radial-gradient(circle at top right, #b08d57 0%, transparent 35%),

        radial-gradient(circle at bottom left, #444 0%, transparent 45%),

        linear-gradient(135deg, #111, #222);

}

/*==========================================
Placeholder
==========================================*/

.no-image,
.no-banner {

    display: flex;

    align-items: center;

    justify-content: center;

    text-align: center;

}

.no-image svg,
.no-banner svg {

    width: 90px;

    height: 90px;

    opacity: .18;

}

/*==========================================
Hover Shadow
==========================================*/

.mega-card:hover {

    box-shadow:

        0 30px 70px rgba(0, 0, 0, .12),

        0 12px 25px rgba(0, 0, 0, .06);

}

/*==========================================
Featured Hover
==========================================*/

.featured-card:hover {

    box-shadow:

        0 25px 65px rgba(0, 0, 0, .14);

}

/*==========================================
Circle Hover
==========================================*/

.circle-image {

    transition:

        transform .35s,

        box-shadow .35s;

}

.circle-card:hover .circle-image {

    transform: scale(1.08);

}

/*==========================================
Color Hover
==========================================*/

.color-circle {

    transition:

        transform .35s,

        box-shadow .35s;

}

.color-card:hover .color-circle {

    transform: scale(1.12);

}

/*==========================================
Size Hover
==========================================*/

.size-card {

    transition: .35s;

}

.size-card:hover {

    background: #faf8f4;

}

/*==========================================
Featured Grid
==========================================*/

.featured-grid:empty {

    display: none;

}

/*==========================================
Banner Empty
==========================================*/

.mega-right:empty {

    display: none;

}

.mega-left:only-child {

    width: 100%;

}

/*==========================================
Footer Empty
==========================================*/

.mega-footer:empty {

    display: none;

}

/*==========================================
Featured Empty
==========================================*/

.mega-featured:empty {

    display: none;

}

/*==========================================
Accessibility
==========================================*/

.mega-card:focus-visible,
.circle-card:focus-visible,
.color-card:focus-visible,
.size-card:focus-visible,
.featured-card:focus-visible {

    outline: 2px solid #B08D57;

    outline-offset: 3px;

}

/*==========================================
Reduced Motion
==========================================*/

@media(prefers-reduced-motion:reduce) {

    * {

        animation: none !important;

        transition: none !important;

        scroll-behavior: auto !important;

    }

}

/*==========================================
Dark Mode Ready
==========================================*/

body.dark .mega-panel {

    background: #1b1b1b;

    color: #fff;

}

body.dark .mega-card {

    background: #252525;

    border-color: #333;

}

body.dark .mega-title h4 {

    color: #fff;

}

/*==========================================
Print
==========================================*/

@media print {

    .mega-panel {

        display: none !important;

    }

}

/*==========================================
Final Fixes
==========================================*/

.mega-panel {

    overflow: hidden;

}

.mega-container {

    overflow-y: auto;

    overflow-x: hidden;

}

img {

    max-width: 100%;

    display: block;

}
/*======================================
Mobile Navigation
======================================*/

.mobile-nav-open {

    overflow: hidden;

}

.mobile-menu-container {

    position: fixed;

    left: -100%;

    top: 0;

    width: 360px;

    height: 100vh;

    background: #fff;

    z-index: 999999;

    overflow: auto;

    transition: .35s;

    box-shadow: 0 0 60px rgba(0, 0, 0, .18);

}

.mobile-nav-open .mobile-menu-container {

    left: 0;

}

.mobile-menu-overlay {

    position: fixed;

    left: 0;

    top: 0;

    width: 100%;

    height: 100%;

    background: rgba(0, 0, 0, .45);

    opacity: 0;

    visibility: hidden;

    transition: .35s;

    z-index: 999998;

}

.mobile-nav-open .mobile-menu-overlay {

    opacity: 1;

    visibility: visible;

}

.mobile-open>.mega-panel {

    display: block;

    position: relative;

    opacity: 1;

    visibility: visible;

    transform: none;

    box-shadow: none;

    padding: 20px;

}
/*==========================================
Header Animation
==========================================*/

.header-small {

    padding-top: 0;

    padding-bottom: 0;

    box-shadow: 0 15px 40px rgba(0, 0, 0, .08);

    transition: .35s;

}

/*==========================================
Current Menu
==========================================*/

.current-link {

    color: #B08D57 !important;

}

.current-link:after {

    width: 80% !important;

}

/*==========================================
GPU
==========================================*/

.mega-panel {

    will-change: transform;

}

.mega-card {

    will-change: transform;

}

/*==========================================
Prevent Flicker
==========================================*/

.has-mega {

    position: static;

}

.has-mega>.mega-panel {

    pointer-events: none;

}

.has-mega>.mega-panel.show {

    pointer-events: auto;

}
/*=================================
Accessibility
=================================*/

.mega-panel a:focus,

.banner-btn:focus,

.collection-btn span:focus {

    outline: 2px solid #B08D57;

    outline-offset: 3px;

}

/*=================================
Active Menu
=================================*/

.has-mega.active>a {

    color: #B08D57;

}

.has-mega.active>a:after {

    width: 80%;

}

/*=================================
Touch
=================================*/

.mobile-menu-container {

    touch-action: pan-y;

}

/*=================================
Reduced Motion
=================================*/

@media(prefers-reduced-motion:reduce) {

    .mega-panel,

    .mega-card,

    .featured-card {

        transition: none !important;

        animation: none !important;

    }

}
/* ===========================
MEGA MENU FINAL FIX
=========================== */

.header-bottom {
    position: relative;
}

.header-center {
    position: static;
}

.main-nav {
    position: static !important;
}

.luxury-menu {
    position: static !important;
}

.luxury-menu>li {
    position: static !important;
}

.has-mega {
    position: static !important;
}

.has-mega>.mega-panel {

    position: absolute !important;

    left: 0 !important;

    top: 100% !important;

    width: 100% !important;

    min-width: 100% !important;

    max-width: none !important;

    display: block !important;

    visibility: hidden;

    opacity: 0;

    transform: translateY(20px);

    z-index: 999999;

    background: #fff;

    overflow: hidden;

}

.has-mega:hover>.mega-panel,
.has-mega.active>.mega-panel,
.has-mega>.mega-panel.show {

    opacity: 1;

    visibility: visible;

    transform: translateY(0);

}