/* =========================================================
   ROOT
========================================================= */

:root {

    --primary: #A97142;
    --primary-dark: #8B5E3C;
    --gold: #D4AF37;

    --dark: #232323;
    --dark-soft: #2D2D2D;

    --white: #FFFFFF;
    --light: #FAF8F5;
    --light-gray: #F5F5F5;

    --text: #444444;
    --muted: #777777;

    --border: #E8E8E8;

    --shadow:
        0 8px 25px rgba(0, 0, 0, 0.08);

    --shadow-hover:
        0 15px 35px rgba(0, 0, 0, 0.12);

    --radius: 14px;

    --container:
        1320px;

}


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

* {

    margin: 0;
    padding: 0;

    box-sizing: border-box;

}


html {

    scroll-behavior: smooth;

}


body {

    margin: 0;
    padding: 0;

    background: var(--light);

    color: var(--text);

    font-family:
        'Poppins',
        sans-serif;

    line-height: 1.6;

}


body,
button,
input,
select,
textarea {

    font-family:
        'Poppins',
        sans-serif;

}


img {

    display: block;

    max-width: 100%;

}


a {

    text-decoration: none;

    color: inherit;

}


/* Hide breadcrumb sections on pages and subpages */
.breadcrumb,
.subcategories {

    display: none !important;

}


button {

    border: none;

    cursor: pointer;

}


ul,
ol {

    margin: 0;
    padding: 0;

    list-style: none;

}


input,
select,
button {

    outline: none;

}



.container {

    width: min(92%, var(--container));

    max-width: var(--container);

    margin-left: auto;
    margin-right: auto;

}


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

section {

    width: 100%;

}


.section-title {

    text-align: center;

    max-width: 760px;

    margin:
        0 auto 48px;

}


.section-title h2 {

    margin-bottom: 10px;

    color: var(--dark);

    font-size:
        clamp(30px, 3vw, 42px);

    line-height: 1.2;

    font-weight: 700;

}


.section-title p {

    color: var(--muted);

    font-size: 15px;

}


/* =========================================================
   TOP BAR
========================================================= */

.top-bar {

    width: 100%;

    min-height: 42px;

    background: var(--dark-soft);

    color: var(--white);

    display: flex;

    justify-content: space-between;

    align-items: center;

    padding:
        0 max(4%, calc((100% - 1320px) / 2));

    font-size: 13px;

}


.top-left,
.top-right {

    display: flex;

    align-items: center;

    gap: 25px;

}


.top-bar a {

    display: flex;

    align-items: center;

    gap: 8px;

    color: var(--white);

    transition:
        color 0.25s ease;

}


.top-bar a:hover {

    color: var(--gold);

}


.top-bar i {

    color: var(--gold);

    font-size: 13px;

}


.location-link strong {

    color: var(--white);

    font-weight: 600;

}


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

.header {

    width: 100%;

    min-height: 90px;

    background: var(--white);

    display: flex;

    align-items: center;

    position: sticky;

    top: 0;

    z-index: 1000;

    box-shadow:
        0 3px 18px rgba(0, 0, 0, 0.06);

}


.header>.container {

    width: min(92%, var(--container));

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 35px;

}


/* =========================================================
   LOGO
========================================================= */

.logo {

    flex-shrink: 0;

}


.logo a {

    display: flex;

    flex-direction: column;

    align-items: center;

    justify-content: center;

    line-height: 1.1;

}


.logo span {

    color: var(--primary);

    font-size: 34px;

    font-weight: 700;

    letter-spacing: 4px;

}


.logo small {

    margin-top: 4px;

    color: var(--dark);

    font-size: 11px;

    letter-spacing: 7px;

}


/* =========================================================
   SEARCH BOX - POLISHED GLOBAL SEARCH
========================================================= */

.search-box {
    position: relative;
    width: min(48%, 600px);
    height: 50px;
    display: flex;
    align-items: stretch;
    background: #fff;
    border: 1px solid #e4e0db;
    border-radius: 28px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, .04);
    transition: border-color .2s ease, box-shadow .2s ease;
}

.search-box:focus-within {
    border-color: #c9a06f;
    box-shadow: 0 0 0 3px rgba(201, 160, 111, .12);
}


.search-input {

    flex: 1;

    height: 100%;

    display: flex;

    align-items: center;

    padding: 0 18px;
    min-width: 0;
}


.search-input i {

    color: #999;

    margin-right: 10px;

}


.search-input input {

    width: 100%;
    height: 100%;
    min-width: 0;
    border: 0 !important;
    outline: 0 !important;
    box-shadow: none !important;
    background: transparent;
    color: var(--dark);
    font-size: 14px;
    font-family: inherit;
}

.search-input input:focus,
.search-input input:focus-visible {
    border: 0 !important;
    outline: 0 !important;
    box-shadow: none !important;
}


.search-input input::placeholder {

    color: #999;

}


.search-btn {

    height: 100%;
    padding: 0 27px;
    border: 0;
    outline: 0;
    background: var(--primary);

    color: var(--white);

    font-size: 14px;

    font-weight: 600;

    /* Rounded right side like screenshot */
    border-radius: 0 28px 28px 0;

    cursor: pointer;

    transition:
        background 0.25s ease;

}


.search-btn:hover {

    background: var(--primary-dark);

}


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

.header-icons {

    display: flex;

    align-items: center;

    gap: 18px;

    flex-shrink: 0;

}


.header-icons a {

    position: relative;

    width: 42px;

    height: 42px;

    display: flex;

    align-items: center;

    justify-content: center;

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

    border-radius: 50%;

    color: var(--dark);

    background: var(--white);

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

}


.header-icons a:hover {

    color: var(--white);

    background: var(--primary);

    border-color: var(--primary);

    transform: translateY(-2px);

}


.header-icons i {

    font-size: 17px;

}


/* =========================================================
   CART / WISHLIST COUNT
========================================================= */

.header-icons small,
.mobile-icons small {

    position: absolute;

    top: -5px;

    right: -5px;

    min-width: 19px;

    height: 19px;

    padding: 0 4px;

    display: flex;

    align-items: center;

    justify-content: center;

    border-radius: 50%;

    background: #E63946;

    color: var(--white);

    font-size: 10px;

    line-height: 1;

}


/* =========================================================
   NAVBAR
========================================================= */

.navbar {

    width: 100%;

    background: var(--dark);

    position: relative;

    z-index: 900;

}


.navbar>.container {

    width: min(92%, var(--container));

    max-width: var(--container);

}

.navbar>.container.nav-container {

    display: flex;

    justify-content: center;

}

.nav-menu {

    width: 100%;

    max-width: 1100px;

    min-height: 58px;

    display: flex;

    align-items: center;

    justify-content: center;

    flex-wrap: wrap;

    gap: 8px;

}


.nav-menu>li {

    position: relative;

}


.nav-menu>li>a {

    display: flex;

    align-items: center;

    gap: 7px;

    padding:
        18px 22px;

    color: var(--white);

    font-size: 14px;

    font-weight: 500;

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

}


.nav-menu>li>a:hover,
.nav-menu>li.active>a {

    color: var(--gold);

}


/* =========================================================
   MEGA MENU
========================================================= */

.mega-menu {

    position: absolute;

    top: 100%;

    left: 80%;

    transform:
        translateX(-50%) translateY(10px);

    width: min(900px, 90vw);

    padding: 35px;

    display: flex;

    justify-content: space-between;

    gap: 40px;

    background: var(--white);

    border-radius:
        0 0 14px 14px;

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

    opacity: 0;

    visibility: hidden;

    transition:
        opacity 0.25s ease,
        visibility 0.25s ease,
        transform 0.25s ease;

}


.mega-parent:hover .mega-menu {

    opacity: 1;

    visibility: visible;

    transform:
        translateX(-50%) translateY(0);

}


.mega-column {

    width: 180px;

}


.mega-column h4 {

    margin-bottom: 14px;

    color: var(--primary);

    font-size: 17px;

}


.mega-column a {

    display: block;

    padding: 7px 0;

    color: #555;

    font-size: 14px;

    transition:
        color 0.2s ease,
        padding 0.2s ease;

}


.mega-column a:hover {

    padding-left: 6px;

    color: var(--primary);

}


.mega-banner {

    width: 300px;

    position: relative;

}


.mega-banner img {

    width: 100%;

    height: 240px;

    object-fit: cover;

    border-radius: 10px;

}


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

.menu-toggle {

    display: none;

    width: 42px;

    height: 42px;

    align-items: center;

    justify-content: center;

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

    border-radius: 50%;

    background: var(--white);

    color: var(--dark);

    font-size: 20px;

}


.mobile-icons {

    display: none;

}


.mobile-search {

    display: none;

}


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

.hero {

    width: 100%;

}


.slider {

    position: relative;

    width: 100%;

    height: 620px;

    overflow: hidden;

}


.slide {

    position: absolute;

    inset: 0;

    width: 100%;

    height: 100%;

    opacity: 0;

    visibility: hidden;

    transition:
        opacity 0.8s ease;

}


.slide.active {

    opacity: 1;

    visibility: visible;

}


.slide::after {

    content: "";

    position: absolute;

    inset: 0;

    background:
        linear-gradient(90deg,
            rgba(0, 0, 0, 0.60),
            rgba(0, 0, 0, 0.18),
            rgba(0, 0, 0, 0.05));

}


.slide img {

    width: 100%;

    height: 100%;

    object-fit: cover;

}


.hero-content {

    position: absolute;

    top: 50%;

    left:
        max(4%, calc((100% - 1320px) / 2));

    transform:
        translateY(-50%);

    z-index: 2;

    max-width: 600px;

    color: var(--white);

}


.hero-content h4 {

    margin-bottom: 12px;

    color: #F8D7A4;

    font-size: 20px;

    font-weight: 500;

}


.hero-content h1 {

    margin-bottom: 18px;

    font-size:
        clamp(38px, 5vw, 60px);

    line-height: 1.15;

}


.hero-content p {

    max-width: 520px;

    margin-bottom: 28px;

    font-size: 17px;

}


.hero-btn {

    display: inline-flex;

    align-items: center;

    justify-content: center;

    padding:
        14px 34px;

    background: var(--primary);

    color: var(--white);

    border-radius: 30px;

    font-size: 15px;

    font-weight: 600;

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

}


.hero-btn:hover {

    background: var(--primary-dark);

    transform:
        translateY(-2px);

}


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

.prev,
.next {

    position: absolute;

    top: 50%;

    transform:
        translateY(-50%);

    z-index: 5;

    width: 48px;

    height: 48px;

    border:
        1px solid rgba(255, 255, 255, 0.5);

    border-radius: 50%;

    background:
        rgba(0, 0, 0, 0.25);

    color: var(--white);

    font-size: 20px;

    transition:
        background 0.25s ease;

}


.prev {

    left: 25px;

}


.next {

    right: 25px;

}


.prev:hover,
.next:hover {

    background: var(--primary);

}


/* =========================================================
   SHOP BY CATEGORY
========================================================= */

.category {

    padding:
        80px 0;

    background: var(--white);

}


.category>.container {

    width: min(92%, var(--container));

}


.category-container {

    display: grid;

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

    gap: 28px;

}


.category-card {

    position: relative;

    min-height: 320px;

    overflow: hidden;

    border-radius: var(--radius);

    cursor: pointer;

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

}


.category-card::before {

    content: "";

    position: absolute;

    inset: 0;

    z-index: 1;

    pointer-events: none;

    background:
        linear-gradient(to top,
            rgba(0, 0, 0, 0.65),
            transparent 65%);

}


.category-card img {

    width: 100%;

    height: 100%;

    min-height: 320px;

    object-fit: cover;

    transition:
        transform 0.5s ease;

}


.category-card:hover img {

    transform:
        scale(1.06);

}


.category-click-image {
    width: 100%;
    height: 100%;
    min-height: 320px;

    display: block;

    object-fit: cover;

    cursor: pointer;

    transition: transform 0.5s ease;
}

.category-card {
    overflow: hidden;
}

.category-card:hover .category-click-image {
    transform: scale(1.06);
}


.category-info {

    position: absolute;

    left: 25px;

    bottom: 25px;

    z-index: 2;

    color: var(--white);

}


.category-info h3 {

    margin-bottom: 12px;

    font-size: 26px;

}


.category-info a {

    display: inline-flex;

    padding:
        9px 22px;

    background: var(--primary);

    color: var(--white);

    border-radius: 25px;

    font-size: 13px;

    font-weight: 600;

    transition:
        background 0.25s ease;

}


.category-info a:hover {

    background: var(--dark);

}


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

.products {

    padding:
        80px 0;

    background: var(--light);

}


.products>.container {

    width: min(92%, var(--container));

}


.product-grid {

    display: grid;

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

    gap: 25px;

}


.product-card {

    position: relative;

    display: flex;

    flex-direction: column;

    overflow: hidden;

    background: var(--white);

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

    border-radius: var(--radius);

    box-shadow:
        0 5px 20px rgba(0, 0, 0, 0.06);

    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease;

}


.product-card:hover {

    transform:
        translateY(-6px);

    box-shadow:
        var(--shadow-hover);

}


.product-card>img {

    width: 100%;

    height: 270px;

    object-fit: cover;

}


.product-image {

    position: relative;

    overflow: hidden;

}


.product-image img {

    width: 100%;

    height: 280px;

    object-fit: cover;

    transition:
        transform 0.4s ease;

}


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

    transform:
        scale(1.04);

}


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

.badge,
.discount-badge {

    position: absolute;

    top: 14px;

    left: 14px;

    z-index: 3;

    padding:
        6px 12px;

    background: var(--primary);

    color: var(--white);

    border-radius: 20px;

    font-size: 12px;

    font-weight: 600;

}


/* =========================================================
   WISHLIST
========================================================= */

.wishlist,
.wishlist-btn {

    position: absolute;

    top: 14px;

    right: 14px;

    z-index: 5;

    width: 40px;

    height: 40px;

    display: flex;

    align-items: center;

    justify-content: center;

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

    border-radius: 50%;

    background: var(--white);

    color: #555;

    cursor: pointer;

    box-shadow:
        0 3px 12px rgba(0, 0, 0, 0.08);

    transition:
        color 0.2s ease,
        background 0.2s ease,
        transform 0.2s ease;

}


.wishlist:hover,
.wishlist-btn:hover {

    transform:
        scale(1.08);

    color: #C62828;

}


.wishlist-btn.active {

    color: #C62828;

}


.wishlist-btn.active i {

    color: #C62828;

}


/* =========================================================
   QUICK VIEW
========================================================= */

.quick-view {

    position: absolute;

    left: 50%;

    bottom: 14px;

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

    z-index: 4;

    padding:
        7px 14px;

    background:
        rgba(35, 35, 35, 0.9);

    color: var(--white);

    border-radius: 20px;

    font-size: 11px;

    opacity: 0;

    transition:
        opacity 0.25s ease,
        transform 0.25s ease;

}


.product-card:hover .quick-view {

    opacity: 1;

    transform:
        translate(-50%, 0);

}


/* =========================================================
   PRODUCT INFO
========================================================= */

.product-info {

    display: flex;

    flex-direction: column;

    flex: 1;

    padding: 20px;

}


.product-category {

    margin-bottom: 6px;

    color: #999;

    font-size: 11px;

    text-transform: uppercase;

    letter-spacing: 1px;

}


.product-info h3 {

    min-height: 50px;

    margin-bottom: 10px;

    color: var(--dark);

    font-size: 17px;

    line-height: 1.45;

}


.stars {

    margin-bottom: 10px;

    color: #F6B400;

    letter-spacing: 1px;

}


.rating {

    display: flex;

    align-items: center;

    gap: 6px;

    margin-bottom: 10px;

    font-size: 13px;

}


.rating-number,
.reviews {

    color: #888;

}


.price {

    display: flex;

    align-items: center;

    flex-wrap: wrap;

    gap: 8px;

    margin-bottom: 16px;

}


.current-price {

    color: var(--primary);

    font-size: 21px;

    font-weight: 700;

}


.original-price,
.price span {

    color: #999;

    font-size: 14px;

    text-decoration:
        line-through;

}


/* =========================================================
   PRODUCT BUTTON
========================================================= */

.product-info button {

    width: 100%;

    margin-top: auto;

    padding:
        13px 15px;

    border-radius: 30px;

    background: var(--dark);

    color: var(--white);

    font-size: 14px;

    font-weight: 600;

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

}


.product-info button:hover {

    background: var(--primary);

    transform:
        translateY(-1px);

}


.add-cart-btn {

    display: flex;

    align-items: center;

    justify-content: center;

    gap: 8px;

}


/* =========================================================
   SPECIAL OFFERS
========================================================= */

.offers {

    width: min(92%, var(--container));

    margin:
        80px auto;

    display: grid;

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

    gap: 28px;

}


.offer-box {

    position: relative;

    height: 380px;

    overflow: hidden;

    border-radius: 18px;

    cursor: pointer;

}


.offer-box::before {

    content: "";

    position: absolute;

    inset: 0;

    z-index: 1;

    background:
        linear-gradient(90deg,
            rgba(0, 0, 0, 0.60),
            rgba(0, 0, 0, 0.10));

}


.offer-box img {

    width: 100%;

    height: 100%;

    object-fit: cover;

    transition:
        transform 0.5s ease;

}


.offer-box:hover img {

    transform:
        scale(1.06);

}


.offer-content {

    position: absolute;

    top: 50%;

    left: 45px;

    transform:
        translateY(-50%);

    z-index: 2;

    max-width: 380px;

    color: var(--white);

}


.offer-content span {

    display: inline-block;

    margin-bottom: 16px;

    padding:
        7px 15px;

    background: var(--primary);

    border-radius: 20px;

    font-size: 11px;

    letter-spacing: 1px;

    font-weight: 600;

}


.offer-content h2 {

    margin-bottom: 15px;

    font-size:
        clamp(26px, 3vw, 36px);

    line-height: 1.2;

}


.offer-content p {

    margin-bottom: 22px;

    font-size: 16px;

}


.offer-btn {

    display: inline-flex;

    padding:
        12px 28px;

    background: var(--white);

    color: var(--dark);

    border-radius: 30px;

    font-size: 14px;

    font-weight: 600;

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

}


.offer-btn:hover {

    background: var(--primary);

    color: var(--white);

}


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

.best-sellers {

    padding:
        80px 0;

    background: var(--white);

}


.best-sellers>.container {

    width: min(92%, var(--container));

}


.best-grid {

    display: grid;

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

    gap: 25px;

}


.best-card {

    position: relative;

    overflow: hidden;

    background: var(--white);

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

    border-radius: var(--radius);

    box-shadow:
        0 5px 20px rgba(0, 0, 0, 0.06);

    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease;

}


.best-card:hover {

    transform:
        translateY(-6px);

    box-shadow:
        var(--shadow-hover);

}


.best-card img {

    width: 100%;

    height: 260px;

    object-fit: cover;

}

/* Match Best Seller image zoom with Shop By Category cards */
.best-card img {
    transition: transform 0.5s ease;
}

.best-card:hover img {
    transform: scale(1.06);
}

/* Match Featured Product image zoom with Shop By Category cards */
.product-card>img,
.product-card .product-image img {
    transition: transform 0.5s ease;
}

.product-card:hover>img,
.product-card:hover .product-image img {
    transform: scale(1.06);
}


.discount {

    position: absolute;

    top: 14px;

    left: 14px;

    z-index: 2;

    padding:
        6px 12px;

    background: var(--primary);

    color: var(--white);

    border-radius: 20px;

    font-size: 12px;

}


.best-icons {

    position: absolute;

    top: 14px;

    right: 14px;

    z-index: 3;

    display: flex;

    flex-direction: column;

    gap: 8px;

}


.best-icons i {

    width: 38px;

    height: 38px;

    display: flex;

    align-items: center;

    justify-content: center;

    border-radius: 50%;

    background: var(--white);

    color: var(--dark);

    cursor: pointer;

    box-shadow:
        0 3px 10px rgba(0, 0, 0, 0.08);

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

}


.best-icons i:hover {

    background: var(--primary);

    color: var(--white);

}


.best-info {

    padding: 20px;

}


.best-info h3 {

    min-height: 50px;

    color: var(--dark);

    font-size: 17px;

    line-height: 1.4;

}


.best-info h4 {

    color: var(--primary);

    font-size: 21px;

}


.best-info h4 span {

    margin-left: 7px;

    color: #999;

    font-size: 14px;

    text-decoration:
        line-through;

}


.best-info button {

    width: 100%;

    margin-top: 18px;

    padding: 13px;

    border-radius: 30px;

    background: var(--dark);

    color: var(--white);

    transition:
        background 0.25s ease;

}


.best-info button:hover {

    background: var(--primary);

}


/* =========================================================
   WHY CHOOSE ROYAL STAY
========================================================= */

.why-choose {

    padding:
        90px 0;

    background: var(--light);

}


.why-choose>.container {

    width: min(92%, var(--container));

}


.why-container {

    display: grid;

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

    gap: 25px;

}


.why-box {

    padding:
        35px 25px;

    background: var(--white);

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

    border-radius: var(--radius);

    text-align: center;

    box-shadow:
        0 5px 20px rgba(0, 0, 0, 0.05);

    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease;

}


.why-box:hover {

    transform:
        translateY(-6px);

    box-shadow:
        var(--shadow-hover);

}


.why-icon {

    width: 78px;

    height: 78px;

    margin:
        0 auto 20px;

    display: flex;

    align-items: center;

    justify-content: center;

    border-radius: 50%;

    background: var(--primary);

    color: var(--white);

    font-size: 30px;

}


.why-box h3 {

    margin-bottom: 10px;

    color: var(--dark);

    font-size: 20px;

}


.why-box p {

    color: #666;

    font-size: 14px;

    line-height: 1.7;

}


/* =========================================================
   TESTIMONIALS
========================================================= */

.testimonials {

    padding:
        90px 0;

    background: var(--white);

}


.testimonials>.container {

    width: min(92%, var(--container));

}


.testimonial-container {

    display: grid;

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

    gap: 25px;

}


.testimonial-card {

    padding:
        35px 28px;

    background: var(--light);

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

    border-radius: 18px;

    text-align: center;

    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease;

}


.testimonial-card:hover {

    transform:
        translateY(-6px);

    box-shadow:
        var(--shadow);

}


.testimonial-card img {

    width: 90px;

    height: 90px;

    margin:
        0 auto 18px;

    border:
        4px solid var(--primary);

    border-radius: 50%;

    object-fit: cover;

}


.testimonial-card h3 {

    margin-bottom: 3px;

    color: var(--dark);

    font-size: 19px;

}


.testimonial-card span {

    color: #888;

    font-size: 13px;

}


.testimonial-card .stars {

    margin:
        12px 0;

    color: #F6B400;

    font-size: 16px;

}


.testimonial-card p {

    color: #666;

    font-size: 14px;

    line-height: 1.7;

}


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

.newsletter {

    padding:
        85px 0;

    background:
        linear-gradient(135deg,
            var(--primary-dark),
            var(--primary));

    color: var(--white);

    text-align: center;

}


.newsletter-content {

    width: min(92%, 720px);

    margin:
        0 auto;

}


.newsletter h2 {

    margin-bottom: 15px;

    font-size:
        clamp(28px, 4vw, 42px);

    line-height: 1.2;

}


.newsletter p {

    margin-bottom: 28px;

    font-size: 15px;

    line-height: 1.7;

}


.newsletter form {

    display: flex;

    align-items: stretch;

    justify-content: center;

    gap: 10px;

}


.newsletter input {

    flex: 1;

    min-width: 0;

    height: 54px;

    padding:
        0 20px;

    border: none;

    border-radius: 30px;

    background: var(--white);

    color: var(--dark);

    font-size: 14px;

}


.newsletter button {

    min-width: 130px;

    padding:
        0 25px;

    border-radius: 30px;

    background: var(--dark);

    color: var(--white);

    font-size: 14px;

    font-weight: 600;

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

}


.newsletter button:hover {

    background: var(--white);

    color: var(--dark);

}


#message {

    margin-top: 15px;

    color: var(--white);

    font-size: 14px;

}


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

.footer {
    padding: 70px 0 20px;
    background: #1C1C1C;
    color: var(--white);
}

/* Keep entire footer centered */
.footer>.footer-inner {
    width: min(92%, var(--container));
    margin: 0 auto;
}

/* Main footer columns */
.footer-container {
    display: grid;

    grid-template-columns:
        2fr 1fr 1fr 1.5fr;

    gap: 45px;

    width: 100%;
    box-sizing: border-box;
}

/* Footer headings */
.footer-box h2 {
    margin-bottom: 15px;
    color: var(--primary);
}

.footer-box h3 {
    margin-bottom: 16px;
    font-size: 17px;
}

/* Footer text */
.footer-box p {
    margin-bottom: 10px;
    color: #CCC;
    font-size: 14px;
    line-height: 1.8;
}

/* Footer lists */
.footer-box ul li {
    margin-bottom: 10px;
}

.footer-box ul li a {
    color: #CCC;
    font-size: 14px;

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

.footer-box ul li a:hover {
    padding-left: 5px;
    color: var(--primary);
}

/* Social icons */
.social-icons {
    display: flex;
    gap: 10px;
    margin-top: 20px;
}

.social-icons a {
    width: 40px;
    height: 40px;

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

    border-radius: 50%;

    background: #333;
    color: var(--white);

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

.social-icons a:hover {
    background: var(--primary);
    transform: translateY(-2px);
}

/* Divider */
.footer hr {
    margin: 40px 0 20px;

    border: none;
    height: 1px;

    background: #333;
}

/* Bottom section */
.footer-bottom {
    display: flex;

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

    gap: 20px;

    flex-wrap: wrap;

    width: 100%;
    box-sizing: border-box;
}

/* Payment icons */
.payment-icons {
    display: flex;

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

    gap: 15px;

    flex-wrap: wrap;
}

.payment-icons i {
    color: #DDD;
    font-size: 28px;
}


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

@media (max-width: 900px) {

    .footer-container {
        grid-template-columns: 1fr 1fr;
        gap: 35px;
    }

    .footer-bottom {
        justify-content: center;
        text-align: center;
    }

    .payment-icons {
        justify-content: center;
    }
}


@media (max-width: 600px) {

    .footer {
        padding: 50px 0 20px;
    }

    .footer>.footer-inner {
        width: 92%;
    }

    .footer-container {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .footer-bottom {
        flex-direction: column;
        justify-content: center;

        text-align: center;
    }

    .payment-icons {
        justify-content: center;
    }
}


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

@media (max-width: 1100px) {

    .header>.container {

        gap: 20px;

    }


    .search-box {

        width: 42%;

    }


    .nav-menu>li>a {

        padding:
            17px 14px;

    }


    .product-grid,
    .best-grid {

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

    }


    .why-container {

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

    }


    .footer-container {

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

    }

}


/* =========================================================
   TABLET / SMALL LAPTOP
========================================================= */

@media (max-width: 992px) {

    .header {

        min-height: 82px;

    }


    .logo span {

        font-size: 30px;

    }


    .logo small {

        font-size: 10px;

        letter-spacing: 5px;

    }


    .search-box {

        width: 40%;

        height: 46px;

    }


    .header-icons {

        gap: 10px;

    }


    .header-icons a {

        width: 38px;

        height: 38px;

    }


    .nav-menu {

        justify-content: flex-start;

        overflow-x: auto;

    }


    .nav-menu>li>a {

        white-space: nowrap;

        padding:
            16px 13px;

        font-size: 13px;

    }


    .slider {

        height: 560px;

    }


    .category-container {

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

    }


    .offers {

        grid-template-columns: 1fr;

    }


    .testimonial-container {

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

    }

}


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

@media (max-width: 768px) {

    .top-bar {

        display: none;

    }


    .header {

        min-height: 75px;

        position: sticky;

    }


    .header>.container {

        width: 92%;

        gap: 10px;

    }


    .logo span {

        font-size: 25px;

        letter-spacing: 3px;

    }


    .logo small {

        font-size: 9px;

        letter-spacing: 4px;

    }


    .header .search-box,
    .header-icons {

        display: none;

    }


    .mobile-icons {

        display: flex;

        align-items: center;

        gap: 8px;

    }


    .mobile-icons a,
    .menu-toggle {

        width: 40px;

        height: 40px;

        display: flex;

        align-items: center;

        justify-content: center;

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

        border-radius: 50%;

        background: var(--white);

        color: var(--dark);

        position: relative;

    }


    .mobile-icons a {

        text-decoration: none;

    }


    .mobile-icons i {

        font-size: 16px;

    }


    .mobile-search {

        display: block;

        padding:
            10px 0;

        background: var(--white);

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

    }


    .mobile-search>.search-box {

        width: 92%;

        height: 46px;

        margin:
            0 auto;

        display: flex;

        align-items: center;

    }


    .mobile-search .search-input {

        flex: 1;

        padding:
            0 15px;

    }


    .mobile-search .search-input input {

        width: 100%;

        border: none;

        outline: none;

        font-size: 14px;

    }


    .mobile-search .search-btn {

        width: 90px;

        height: 100%;

        padding: 0;

        border-radius:
            0 30px 30px 0;

    }


    /* Mobile navbar */

    .navbar {

        position: fixed;

        top: 75px;

        left: -100%;

        width: 290px;

        height:
            calc(100vh - 75px);

        overflow-y: auto;

        background: var(--white);

        box-shadow:
            5px 0 25px rgba(0, 0, 0, 0.12);

        transition:
            left 0.3s ease;

        z-index: 9999;

    }


    .navbar.active {

        left: 0;

    }


    .navbar>.container {

        width: 100%;

    }


    .nav-menu {

        width: 100%;

        display: flex;

        flex-direction: column;

        align-items: stretch;

        gap: 0;

        overflow: visible;

    }


    .nav-menu>li {

        width: 100%;

    }


    .nav-menu>li>a {

        width: 100%;

        padding:
            16px 22px;

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

        color: var(--dark);

        font-size: 15px;

    }


    .nav-menu>li>a:hover {

        background: var(--light);

        color: var(--primary);

    }


    .mega-menu {

        position: static;

        width: 100%;

        transform: none;

        display: none;

        flex-direction: column;

        gap: 15px;

        padding:
            15px 20px;

        border-radius: 0;

        box-shadow: none;

        background: #FAFAFA;

        opacity: 1;

        visibility: visible;

    }


    .mega-parent:hover .mega-menu {

        transform: none;

    }


    .mega-parent.active .mega-menu {

        display: flex;

    }


    .mega-column {

        width: 100%;

    }


    .mega-column h4 {

        font-size: 15px;

    }


    .mega-banner {

        display: none;

    }


    /* Hero */

    .slider {

        height: 500px;

    }


    .hero-content {

        left: 6%;

        right: 6%;

        max-width: 90%;

    }


    .hero-content h4 {

        font-size: 16px;

    }


    .hero-content h1 {

        font-size: 38px;

    }


    .hero-content p {

        font-size: 14px;

    }


    .prev,
    .next {

        width: 40px;

        height: 40px;

        font-size: 16px;

    }


    .prev {

        left: 12px;

    }


    .next {

        right: 12px;

    }


    /* Sections */

    .category,
    .products,
    .best-sellers,
    .why-choose,
    .testimonials {

        padding:
            60px 0;

    }


    .category-container {

        grid-template-columns: 1fr;

    }


    .category-card,
    .category-card img {

        min-height: 280px;

        height: 280px;

    }


    .product-grid,
    .best-grid {

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

        gap: 18px;

    }


    .product-image img,
    .product-card>img {

        height: 230px;

    }


    .product-info {

        padding: 16px;

    }


    .product-info h3 {

        font-size: 15px;

        min-height: 45px;

    }


    .current-price {

        font-size: 18px;

    }


    .offers {

        width: 92%;

        margin:
            60px auto;

    }


    .offer-box {

        height: 300px;

    }


    .offer-content {

        left: 25px;

        right: 20px;

    }


    .offer-content h2 {

        font-size: 27px;

    }


    .offer-content p {

        font-size: 14px;

    }


    .why-container {

        grid-template-columns: 1fr;

    }


    .testimonial-container {

        grid-template-columns: 1fr;

    }


    .newsletter {

        padding:
            65px 0;

    }


    .newsletter form {

        flex-direction: column;

    }


    .newsletter input,
    .newsletter button {

        width: 100%;

        min-height: 52px;

    }


    .footer {

        padding:
            55px 0 20px;

    }


    .footer-container {

        grid-template-columns: 1fr;

        gap: 30px;

    }


    .footer-bottom {

        flex-direction: column;

        text-align: center;

    }

}


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

@media (max-width: 480px) {

    .container {

        width: 92%;

    }


    .logo span {

        font-size: 22px;

    }


    .logo small {

        font-size: 8px;

        letter-spacing: 3px;

    }


    .mobile-icons {

        gap: 5px;

    }


    .mobile-icons a,
    .menu-toggle {

        width: 37px;

        height: 37px;

    }


    .slider {

        height: 450px;

    }


    .hero-content h1 {

        font-size: 32px;

    }


    .hero-content p {

        font-size: 13px;

    }


    .hero-btn {

        padding:
            12px 25px;

        font-size: 13px;

    }


    .product-grid,
    .best-grid {

        grid-template-columns: 1fr;

    }


    .product-image img,
    .product-card>img {

        height: 260px;

    }


    .section-title {

        margin-bottom: 32px;

    }


    .section-title h2 {

        font-size: 29px;

    }


    .category-info h3 {

        font-size: 23px;

    }


    .offer-content h2 {

        font-size: 24px;

    }

}


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

button:focus-visible,
a:focus-visible,
input:focus-visible,
select:focus-visible {

    outline:
        2px solid var(--gold);

    outline-offset: 3px;

}

/* =========================================================
   ROYAL STAY QUICK VIEW - CLICKABLE + BEDROOM/LIVING STYLE
========================================================= */
.quick-view {
    cursor: pointer !important;
    pointer-events: auto !important;
    user-select: none;
}

.royal-quick-modal {
    position: fixed;
    inset: 0;
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    opacity: 0;
    visibility: hidden;
    transition: opacity .2s ease, visibility .2s ease;
}

.royal-quick-modal.is-open {
    opacity: 1;
    visibility: visible;
}

.royal-quick-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, .62);
}

.royal-quick-dialog {
    position: relative;
    z-index: 2;
    width: min(820px, 96vw);
    max-height: 90vh;
    overflow: auto;
    display: grid;
    grid-template-columns: minmax(280px, 1fr) minmax(300px, 1fr);
    background: #fff;
    border-radius: 18px;
    box-shadow: 0 25px 70px rgba(0, 0, 0, .28);
}

.royal-quick-image-wrap {
    min-height: 420px;
    background: #f4f4f4;
}

.royal-quick-image-wrap img {
    width: 100%;
    height: 100%;
    min-height: 420px;
    object-fit: cover;
    display: block;
}

.royal-quick-content {
    padding: 42px 36px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.royal-quick-close {
    position: absolute;
    top: 12px;
    right: 12px;
    z-index: 5;
    width: 38px;
    height: 38px;
    border: 0;
    border-radius: 50%;
    background: #fff;
    color: #222;
    font-size: 27px;
    line-height: 1;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(0, 0, 0, .15);
}

.royal-quick-category {
    margin: 0 0 8px;
    color: #a97142;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.royal-quick-content h2 {
    margin: 0 0 16px;
    color: #222;
    font-size: 28px;
    line-height: 1.3;
}

.royal-quick-rating {
    color: #777;
    font-size: 14px;
    margin-bottom: 18px;
}

.royal-quick-rating span {
    color: #f4b400;
    letter-spacing: 1px;
}

.royal-quick-rating b {
    color: #333;
    margin-left: 7px;
}

.royal-quick-rating small {
    margin-left: 4px;
}

.royal-quick-price {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 18px;
}

.royal-quick-price strong {
    color: #222;
    font-size: 23px;
}

.royal-quick-price del {
    color: #999;
    font-size: 14px;
}

.royal-quick-description {
    color: #666;
    line-height: 1.7;
    margin-bottom: 24px;
}

.royal-quick-cart {
    width: 100%;
    border: 0;
    border-radius: 28px;
    padding: 14px 18px;
    background: #222;
    color: #fff;
    font-weight: 600;
    cursor: pointer;
    font-size: 15px;
}

.royal-quick-cart:hover {
    background: #8b5e3c;
}

body.quick-view-open {
    overflow: hidden;
}

@media (max-width: 700px) {
    .royal-quick-dialog {
        grid-template-columns: 1fr;
        max-height: 92vh;
    }

    .royal-quick-image-wrap,
    .royal-quick-image-wrap img {
        min-height: 280px;
        height: 280px;
    }

    .royal-quick-content {
        padding: 28px 22px;
    }

    .royal-quick-content h2 {
        font-size: 22px;
    }
}

/* =========================================================
   GLOBAL SEARCH SUGGESTIONS
========================================================= */
.search-box {
    position: relative;
    z-index: 1000;
}

.search-suggestions {
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    right: 0;
    display: none;
    background: #fff;
    border: 1px solid #e4e4e4;
    border-radius: 12px;
    box-shadow: 0 14px 35px rgba(0, 0, 0, .14);
    overflow: hidden;
    z-index: 9999;
    max-height: 430px;
    overflow-y: auto;
}

.search-suggestions.show {
    display: block;
}

.search-suggestion {
    display: grid;
    grid-template-columns: 58px 1fr auto;
    align-items: center;
    gap: 12px;
    min-height: 70px;
    padding: 9px 13px;
    color: inherit;
    text-decoration: none;
    border-bottom: 1px solid #f0f0f0;
    background: #fff;
    transition: background .18s ease;
}

.search-suggestion:hover {
    background: #faf7f3;
}

.search-suggestion img {
    width: 58px;
    height: 58px;
    object-fit: cover;
    border-radius: 7px;
    background: #f5f5f5;
}

.search-suggestion-info {
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.search-suggestion-info strong {
    font-size: 13px;
    color: #222;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.search-suggestion-info small {
    color: #888;
    font-size: 11px;
}

.search-suggestion-price {
    color: var(--primary, #b27743);
    font-size: 13px;
    font-weight: 700;
    white-space: nowrap;
}

.search-view-all {
    width: 100%;
    border: 0;
    background: #1c1c1c;
    color: #fff;
    padding: 13px 15px;
    cursor: pointer;
    font-size: 13px;
    font-weight: 600;
}

.search-view-all i {
    margin-left: 6px;
}

.search-no-results {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 20px;
    color: #777;
    font-size: 13px;
}

@media (max-width: 700px) {
    .search-suggestions {
        left: -10px;
        right: -10px;
        width: auto;
    }

    .search-suggestion-price {
        display: none;
    }
}

/* Search dropdown must be allowed to extend below the rounded search bar. */
.search-box.royal-search-active {
    overflow: visible;
}


/* Quick View removed globally */
.quick-view {
    display: none !important;
}

/* Product images open Product Details */
.product-card>img,
.product-card .product-image img,
.category-product-card img,
.best-card img,
.category-card img {
    cursor: pointer;
}


/* =========================================================
   LOGIN / ACCOUNT SYSTEM
========================================================= */

.header-icons>.login-link {
    position: relative;
}

.account-menu {
    position: absolute;
    top: calc(100% + 12px);
    right: -10px;
    z-index: 9999;
    width: 245px;
    padding: 10px;
    background: #fff;
    border: 1px solid #eee5dc;
    border-radius: 14px;
    box-shadow: 0 16px 35px rgba(0, 0, 0, .13);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-5px);
    transition: opacity .18s ease, transform .18s ease, visibility .18s ease;
}

.account-menu.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.account-menu-head {
    display: flex;
    align-items: center;
    gap: 11px;
    padding: 10px;
    margin-bottom: 5px;
    border-bottom: 1px solid #eee;
}

.account-avatar {
    width: 38px;
    height: 38px;
    flex: 0 0 38px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f5ede5;
    color: var(--primary, #a97142);
}

.account-menu-head strong,
.account-menu-head span {
    display: block;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.account-menu-head strong {
    color: #333;
    font-size: 13px;
}

.account-menu-head span {
    max-width: 165px;
    margin-top: 2px;
    color: #888;
    font-size: 11px;
}

.account-menu>a,
.account-menu>button {
    width: 100%;
    min-height: 40px;
    padding: 0 10px;
    display: flex;
    align-items: center;
    gap: 10px;
    border: 0;
    border-radius: 8px;
    background: transparent;
    color: #444;
    font-family: inherit;
    font-size: 13px;
    text-decoration: none;
    text-align: left;
    cursor: pointer;
}

.account-menu>a:hover,
.account-menu>button:hover {
    background: #faf5ef;
    color: var(--primary, #a97142);
}

.account-menu>button {
    border-top: 1px solid #eee;
    margin-top: 5px;
    border-radius: 0 0 8px 8px;
}

.account-menu i {
    width: 18px;
    text-align: center;
}


/* Orders icon */
.orders-link {
    position: relative;
}

.orders-link i {
    transition: transform .2s ease, color .2s ease;
}

.orders-link:hover i {
    transform: translateY(-1px);
}


/* =========================================================
   ROYAL STAY - MOBILE REDESIGN OVERRIDES
   Desktop layout is intentionally unchanged.
========================================================= */
html,
body,
.page-shell {
    max-width: 100%;
    overflow-x: hidden;
}

@media (max-width:768px) {
    body {
        width: 100%;
        min-width: 0;
        background: #faf8f5
    }

    .container {
        width: 92%;
        max-width: none
    }

    .header {
        min-height: 72px;
        height: 72px;
        position: sticky;
        top: 0;
        z-index: 10010
    }

    .header>.container {
        width: 92%;
        max-width: none;
        min-height: 72px;
        gap: 8px;
        justify-content: space-between
    }

    .logo span {
        font-size: 23px;
        line-height: 1;
        letter-spacing: 3px
    }

    .logo small {
        margin-top: 3px;
        font-size: 8px;
        letter-spacing: 4px
    }

    .header .search-box,
    .header-icons {
        display: none !important
    }

    .mobile-icons {
        display: flex !important;
        align-items: center;
        justify-content: flex-end;
        gap: 7px;
        margin-left: auto
    }

    .mobile-icons a,
    .mobile-icons .menu-toggle,
    .menu-toggle {
        flex: 0 0 38px;
        width: 38px;
        height: 38px;
        display: flex;
        align-items: center;
        justify-content: center;
        border: 1px solid #e8e1da;
        border-radius: 50%;
        background: #fff;
        color: #232323;
        position: relative;
        padding: 0;
        box-shadow: 0 2px 8px rgba(0, 0, 0, .04)
    }

    .mobile-icons i {
        font-size: 15px
    }

    .mobile-icons small {
        top: -4px;
        right: -4px;
        min-width: 17px;
        height: 17px;
        font-size: 9px
    }

    .menu-toggle {
        cursor: pointer;
        font-size: 16px
    }

    .mobile-search {
        display: block !important;
        width: 100%;
        padding: 9px 0 10px;
        background: #fff;
        border-bottom: 1px solid #ece7e2;
        position: relative;
        z-index: 10000
    }

    .mobile-search>.container {
        width: 92%;
        max-width: none;
        padding: 0
    }

    .mobile-search .search-box,
    .mobile-search>.search-box {
        width: 100% !important;
        max-width: none !important;
        height: 44px;
        margin: 0;
        display: flex;
        border-radius: 24px;
        overflow: visible !important;
    }

    .mobile-search .search-input {
        min-width: 0;
        padding: 0 12px
    }

    .mobile-search .search-input i {
        margin-right: 8px;
        font-size: 13px
    }

    .mobile-search .search-input input {
        min-width: 0;
        font-size: 13px
    }

    .mobile-search .search-btn {
        flex: 0 0 78px;
        width: 78px;
        padding: 0;
        font-size: 12px;
        border-radius: 0 24px 24px 0
    }

    .navbar {
        position: fixed;
        top: 126px;
        left: -100%;
        width: min(320px, 88vw);
        height: calc(100vh - 126px);
        overflow-y: auto;
        overflow-x: hidden;
        background: #fff;
        box-shadow: 8px 0 30px rgba(0, 0, 0, .15);
        transition: left .28s ease;
        z-index: 10020
    }

    .navbar.active {
        left: 0
    }

    .navbar>.container,
    .navbar>.container.nav-container {
        width: 100% !important;
        max-width: none !important;
        padding: 0;
        margin: 0
    }

    .nav-menu {
        width: 100%;
        max-width: none;
        min-height: 0;
        display: flex;
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        padding: 8px 0 20px
    }

    .nav-menu>li {
        width: 100%;
        margin: 0
    }

    .nav-menu>li>a {
        width: 100%;
        min-height: 52px;
        padding: 14px 20px !important;
        display: flex;
        align-items: center;
        justify-content: space-between;
        border-bottom: 1px solid #eee7e1;
        background: #fff;
        color: #333 !important;
        font-size: 14px !important
    }

    .nav-menu>li>a:hover,
    .nav-menu>li.active>a {
        background: #faf5ef;
        color: #a97142 !important
    }

    .mega-menu {
        position: static !important;
        width: 100% !important;
        max-width: none !important;
        transform: none !important;
        display: none;
        padding: 14px 20px 18px !important;
        gap: 16px !important;
        background: #faf8f5 !important;
        border-radius: 0 !important;
        box-shadow: none !important;
        opacity: 1 !important;
        visibility: visible !important
    }

    .mega-parent.active .mega-menu {
        display: flex !important
    }

    .mega-column {
        width: 100% !important
    }

    .mega-column h4 {
        margin-bottom: 7px;
        font-size: 13px
    }

    .mega-column a {
        padding: 5px 0;
        font-size: 12px
    }

    .mega-banner {
        display: none !important
    }

    .slider {
        width: 100%;
        height: 430px
    }

    .hero-content {
        left: 7%;
        right: 7%;
        max-width: 86%;
        bottom: 42px
    }

    .hero-content h4 {
        margin-bottom: 8px;
        font-size: 14px
    }

    .hero-content h1 {
        max-width: 360px;
        margin-bottom: 10px;
        font-size: 34px;
        line-height: 1.12
    }

    .hero-content p {
        max-width: 360px;
        margin-bottom: 18px;
        font-size: 13px;
        line-height: 1.55
    }

    .hero-btn {
        padding: 11px 23px;
        font-size: 12px
    }

    .section-title {
        width: 92%;
        margin-left: auto;
        margin-right: auto;
        margin-bottom: 28px
    }

    .section-title h2 {
        font-size: 27px
    }

    .section-title p {
        font-size: 13px
    }

    .category-container,
    .product-grid,
    .best-grid,
    .why-container,
    .testimonial-container,
    .offers {
        width: 92%;
        margin-left: auto;
        margin-right: auto
    }

    .category-container,
    .product-grid,
    .best-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
        gap: 12px
    }

    .category-card img,
    .category-click-image {
        min-height: 190px;
        height: 190px
    }

    .category-info {
        padding: 12px
    }

    .category-info h3 {
        font-size: 14px
    }

    .category-info a {
        font-size: 12px
    }

    .product-card>img,
    .product-image img,
    .best-card img {
        height: 190px
    }

    .product-info,
    .best-info {
        padding: 12px
    }

    .product-info h3,
    .best-info h3 {
        font-size: 13px;
        line-height: 1.35
    }

    .product-info button,
    .best-info button {
        min-height: 40px;
        padding: 9px 8px;
        font-size: 11px
    }

    .offers {
        grid-template-columns: 1fr !important
    }

    .why-container,
    .testimonial-container {
        grid-template-columns: 1fr !important;
        gap: 14px
    }

    .footer {
        padding: 45px 0 18px
    }

    .footer>.footer-inner,
    .footer-container {
        width: 92%;
        margin-left: auto;
        margin-right: auto
    }

    .footer-container {
        grid-template-columns: 1fr !important;
        gap: 25px
    }

    .footer-column h3 {
        font-size: 16px
    }

    .footer-column p,
    .footer-column a {
        font-size: 12px
    }

    .footer-bottom {
        width: 92%;
        margin: 25px auto 0;
        padding: 16px 0 0
    }
}

@media(max-width:480px) {

    .header,
    .header>.container {
        min-height: 68px;
        height: 68px
    }

    .logo span {
        font-size: 21px;
        letter-spacing: 2.5px
    }

    .mobile-icons {
        gap: 5px
    }

    .mobile-icons a,
    .mobile-icons .menu-toggle,
    .menu-toggle {
        flex-basis: 36px;
        width: 36px;
        height: 36px
    }

    .mobile-icons i {
        font-size: 14px
    }

    .mobile-search {
        padding: 8px 0 9px
    }

    .mobile-search .search-box,
    .mobile-search>.search-box {
        height: 42px
    }

    .mobile-search .search-btn {
        flex-basis: 72px;
        width: 72px;
        font-size: 11px
    }

    .navbar {
        top: 119px;
        height: calc(100vh - 119px)
    }

    .slider {
        height: 390px
    }

    .hero-content {
        bottom: 30px
    }

    .hero-content h1 {
        font-size: 29px
    }

    .hero-content p {
        font-size: 12px
    }

    .category-container,
    .product-grid,
    .best-grid {
        gap: 10px
    }

    .category-card img,
    .category-click-image,
    .product-card>img,
    .product-image img,
    .best-card img {
        height: 170px;
        min-height: 170px
    }

    .category-info,
    .product-info,
    .best-info {
        padding: 10px
    }

    .category-info h3,
    .product-info h3,
    .best-info h3 {
        font-size: 12px
    }
}