/* ===============================
   HOUSE OF A
   Luxury Ecommerce Theme — Fully Responsive
================================ */

:root {
    --primary: #081321;
    --secondary: #C89B3C;
    --white: #ffffff;
    --light: #f7f7f7;
    --gray: #666666;
    --border: #e8e8e8;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    color: #222;
    background: #fff;
    overflow-x: hidden;
}

img {
    max-width: 100%;
    display: block;
}

a {
    text-decoration: none;
}

h1, h2, h3, h4, h5 {
    font-family: 'Playfair Display', serif;
}

section {
    padding: 80px 0;
}

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

.custom-navbar {
    background: var(--primary);
    padding: 10px 0;
    transition: .4s;
}

.logo {
    color: #fff;
    font-size: 28px;
    letter-spacing: 2px;
}

.logo span {
    color: var(--secondary);
}

.logo-img {
    height: 90px;
    width: auto;
    display: block;
    transition: transform 0.3s ease;
}

.logo-img:hover {
    transform: scale(1.05);
}

.logo-img-footer {
    height: 110px;
    width: auto;
    display: block;
}

.navbar-nav .nav-link {
    color: #fff;
    margin-left: 25px;
    font-weight: 500;
    font-size: 15px;
    position: relative;
    padding: 8px 0;
    transition: color 0.3s;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
    color: var(--secondary);
}

.navbar-nav .nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    left: 0;
    bottom: 0;
    background: var(--secondary);
    transition: .3s;
}

.navbar-nav .nav-link:hover::after,
.navbar-nav .nav-link.active::after {
    width: 100%;
}

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

.hero {
    background: #081321;
    color: #fff;
    min-height: 720px;
    display: flex;
    align-items: center;
    padding: 80px 0;
}

.hero h5 {
    color: var(--secondary);
    letter-spacing: 4px;
    margin-bottom: 20px;
}

.hero h1 {
    font-size: 64px;
    font-weight: 700;
    line-height: 1.15;
}

.hero h1 span {
    color: var(--secondary);
}

.hero-text {
    margin-top: 12px;
    color: #d8d8d8;
    line-height: 1.8;
    max-width: 540px;
}

.hero-image {
    animation: float 5s ease-in-out infinite;
    max-height: 520px;
    width: 100%;
    object-fit: contain;
}

@keyframes float {
    0%   { transform: translateY(0px); }
    50%  { transform: translateY(-15px); }
    100% { transform: translateY(0px); }
}

/* ===============================
        FEATURES / WHY US
================================ */

.feature-icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .08);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: auto;
    margin-bottom: 15px;
    transition: .4s;
}

.feature-icon i {
    color: var(--secondary);
    font-size: 28px;
}

.feature-icon:hover {
    background: var(--secondary);
}

.feature-icon:hover i {
    color: #fff;
}

/* ===============================
        PROMISE
================================ */

.promise {
    background: #fafafa;
}

.promise h2 {
    font-size: 40px;
    margin-bottom: 25px;
}

.promise p {
    width: 70%;
    margin: auto;
    color: #666;
    line-height: 1.8;
}

/* ===============================
        CATEGORIES
================================ */

.categories {
    background: #fff;
}

.categories h2 {
    font-size: 42px;
}

.category-card {
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    transition: .35s;
    box-shadow: 0 15px 35px rgba(0,0,0,.06);
    cursor: pointer;
}

.category-card img {
    width: 100%;
    height: 240px;
    object-fit: cover;
    display: block;
}

.category-card h3 {
    padding: 20px;
    text-align: center;
    font-size: 20px;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
}

.category-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 50px rgba(0,0,0,.12);
}

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

.btn-gold {
    background: var(--secondary);
    color: #fff;
    border: none;
    padding: 14px 34px;
    border-radius: 50px;
    font-weight: 600;
    transition: .3s;
    display: inline-block;
}

.btn-gold:hover {
    background: #b58628;
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(200,155,60,0.35);
}

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

footer {
    background: #081321;
    color: #fff;
    padding: 70px 0 40px;
}

footer h3 {
    color: #fff;
    margin-bottom: 20px;
}

footer h4 {
    color: var(--secondary);
    margin-bottom: 20px;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 16px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

footer ul {
    list-style: none;
    padding: 0;
}

footer ul li {
    margin-bottom: 10px;
}

footer ul li a {
    color: #b0c0d0;
    text-decoration: none;
    transition: .3s;
    font-size: 14px;
}

footer ul li a:hover {
    color: var(--secondary);
    padding-left: 4px;
}

footer p {
    color: #b0c0d0;
    line-height: 1.8;
    font-size: 14px;
}

/* ===============================
        ANIMATIONS
================================ */

.fade-up {
    animation: fadeUp 1s ease;
}

@keyframes fadeUp {
    from { opacity: 0; transform: translateY(40px); }
    to   { opacity: 1; transform: translateY(0); }
}

/* ===============================
        ABOUT US PAGE
================================ */

.hero-about {
    background: #081321;
    color: #fff;
    min-height: 500px;
    display: flex;
    align-items: center;
    padding: 80px 0;
}

.text-light-muted {
    color: #b0c0d0;
}

.section-title {
    font-size: 36px;
    font-weight: 700;
    color: var(--primary);
    position: relative;
    display: inline-block;
    margin-bottom: 25px;
}

.section-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background: var(--secondary);
    margin: 12px auto 0 auto;
}

.section-title.text-start::after {
    margin-left: 0;
}

.about-story {
    background: #fff;
}

.about-story img {
    border-radius: 16px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.08);
    transition: transform 0.5s ease;
    width: 100%;
}

.about-story img:hover {
    transform: scale(1.02);
}

.value-card {
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.04);
    transition: all 0.4s ease;
    border: 1px solid var(--border);
}

.value-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.08);
    border-color: var(--secondary);
}

.value-icon {
    width: 65px;
    height: 65px;
    border-radius: 50%;
    background: rgba(200, 155, 60, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
}

.value-icon i {
    color: var(--secondary);
    font-size: 26px;
}

.team-card {
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.04);
    transition: all 0.4s ease;
    border: 1px solid var(--border);
}

.team-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
    border-color: var(--secondary);
}

.team-img-container {
    height: 280px;
    overflow: hidden;
    position: relative;
}

.team-img-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.team-card:hover .team-img-container img {
    transform: scale(1.08);
}

.team-socials a {
    color: var(--gray);
    font-size: 18px;
    margin: 0 10px;
    transition: color 0.3s ease;
}

.team-socials a:hover {
    color: var(--secondary);
}

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

.product-filter-btn {
    border: 1px solid var(--border);
    background: transparent;
    color: var(--primary);
    padding: 8px 20px;
    border-radius: 30px;
    font-weight: 500;
    font-size: 14px;
    transition: all 0.3s ease;
    margin: 5px 3px;
    cursor: pointer;
}

.product-filter-btn:hover,
.product-filter-btn.active {
    background: var(--secondary);
    border-color: var(--secondary);
    color: #fff;
}

.product-card {
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.4s ease;
    border: 1px solid var(--border);
    box-shadow: 0 10px 30px rgba(0,0,0,0.02);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.product-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.08);
    border-color: var(--secondary);
}

.product-img-container {
    height: 240px;
    overflow: hidden;
    position: relative;
    background: #fdfdfd;
}

.product-img-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

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

.product-badge-group {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-bottom: 15px;
}

.product-badge {
    background: rgba(200, 155, 60, 0.08);
    color: var(--secondary);
    font-size: 11px;
    font-weight: 600;
    padding: 4px 10px;
    border-radius: 4px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.product-details {
    padding: 20px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.product-category {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--secondary);
    font-weight: 600;
    margin-bottom: 8px;
}

.product-title {
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 10px;
    line-height: 1.4;
}

.product-rating {
    color: #ffc107;
    font-size: 13px;
    margin-bottom: 12px;
}

.product-rating span {
    color: var(--gray);
    font-size: 12px;
    margin-left: 5px;
}

.product-price-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: auto;
    flex-wrap: wrap;
    gap: 10px;
}

.product-price {
    font-size: 20px;
    font-weight: 700;
    color: var(--primary);
    font-family: 'Poppins', sans-serif;
}

/* ===============================
        CONTACT PAGE
================================ */

.contact-info-card {
    background: #fff;
    border-radius: 16px;
    padding: 28px;
    border: 1px solid var(--border);
    box-shadow: 0 10px 30px rgba(0,0,0,0.02);
    height: 100%;
    transition: all 0.3s ease;
}

.contact-info-card:hover {
    border-color: var(--secondary);
    box-shadow: 0 15px 35px rgba(0,0,0,0.06);
}

.contact-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: rgba(200, 155, 60, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    flex-shrink: 0;
}

.contact-icon i {
    color: var(--secondary);
    font-size: 22px;
}

.contact-form-container {
    background: #fff;
    border-radius: 16px;
    padding: 40px;
    border: 1px solid var(--border);
    box-shadow: 0 15px 40px rgba(0,0,0,0.04);
}

.contact-form .form-control {
    border-radius: 8px;
    padding: 12px 16px;
    border: 1px solid var(--border);
    font-size: 14px;
    transition: all 0.3s ease;
    width: 100%;
}

.contact-form .form-control:focus {
    border-color: var(--secondary);
    box-shadow: 0 0 0 3px rgba(200, 155, 60, 0.15);
    outline: none;
}

.map-placeholder {
    height: 400px;
    border-radius: 16px;
    overflow: hidden;
    position: relative;
    border: 1px solid var(--border);
}

/* ===============================
        POLICY & FAQ PAGES
================================ */

.policy-card {
    background: #fff;
    border-radius: 16px;
    padding: 50px;
    border: 1px solid var(--border);
    box-shadow: 0 15px 40px rgba(0,0,0,0.03);
    line-height: 1.8;
}

.policy-card h2, .policy-card h3 {
    color: var(--primary);
    margin-top: 30px;
    margin-bottom: 15px;
    font-weight: 600;
    font-family: 'Poppins', sans-serif;
}

.policy-card p, .policy-card ul {
    color: var(--gray);
    margin-bottom: 20px;
}

.policy-card ul {
    padding-left: 20px;
}

.faq-accordion .accordion-item {
    border-radius: 12px !important;
    overflow: hidden;
    margin-bottom: 15px;
    border: 1px solid var(--border) !important;
    box-shadow: 0 5px 15px rgba(0,0,0,0.02);
}

.faq-accordion .accordion-button {
    font-weight: 600;
    color: var(--primary);
    padding: 20px 25px;
    font-family: 'Poppins', sans-serif;
    font-size: 15px;
    background: #fff;
}

.faq-accordion .accordion-button:not(.collapsed) {
    background-color: rgba(200, 155, 60, 0.05);
    color: var(--secondary);
    box-shadow: none;
}

.faq-accordion .accordion-button:focus {
    box-shadow: none;
    border-color: transparent;
}

.faq-accordion .accordion-button::after {
    filter: none;
}

.faq-accordion .accordion-button:not(.collapsed)::after {
    filter: brightness(0) saturate(100%) invert(63%) sepia(50%) saturate(600%) hue-rotate(5deg);
}

.faq-accordion .accordion-body {
    padding: 20px 25px 25px;
    color: var(--gray);
    line-height: 1.8;
    font-size: 15px;
    background: #fff;
}

/* ===============================
        RESPONSIVE — LARGE TABLETS (max 992px)
================================ */

@media (max-width: 992px) {

    /* Hero */
    .hero {
        min-height: auto;
        text-align: center;
        padding: 70px 0;
    }

    .hero h1 {
        font-size: 46px;
    }

    .hero-text {
        margin: 0 auto;
        max-width: 100%;
    }

    .hero-image {
        max-height: 380px;
        margin-top: 40px;
    }

    /* About Hero */
    .hero-about {
        padding: 70px 0;
        text-align: center;
    }

    .hero-about .col-lg-6:last-child img {
        margin-top: 40px;
    }

    /* Category card */
    .category-card img {
        height: 220px;
    }

    /* Promise */
    .promise p {
        width: 100%;
    }

    /* Section title alignment */
    .section-title {
        font-size: 32px;
    }

    /* Contact form */
    .contact-form-container {
        padding: 30px;
    }

    /* Policy card */
    .policy-card {
        padding: 35px;
    }

    /* Logo */
    .logo-img {
        height: 75px;
    }

    .logo-img-footer {
        height: 90px;
    }

}

/* ===============================
        RESPONSIVE — MOBILE (max 768px)
================================ */

@media (max-width: 768px) {

    /* General section padding */
    section {
        padding: 60px 0;
    }

    /* Navbar */
    .custom-navbar {
        padding: 8px 0;
    }

    .logo-img {
        height: 62px;
    }

    .logo-img-footer {
        height: 80px;
    }

    .navbar-nav {
        margin-top: 15px;
        padding-bottom: 10px;
    }

    .navbar-nav .nav-link {
        margin-left: 0;
        padding: 10px 0;
        border-bottom: 1px solid rgba(255,255,255,0.07);
    }

    .navbar-nav .nav-link:last-child {
        border-bottom: none;
    }

    /* Hero */
    .hero {
        padding: 60px 0;
        text-align: center;
    }

    .hero h1 {
        font-size: 36px;
    }

    .hero h5 {
        font-size: 13px;
    }

    .hero-text {
        font-size: 14px;
    }

    .hero-image {
        max-height: 280px;
        margin-top: 30px;
    }

    /* About Hero */
    .hero-about {
        padding: 60px 0;
        text-align: center;
        min-height: auto;
    }

    /* Buttons */
    .btn-gold {
        padding: 12px 26px;
        font-size: 14px;
    }

    /* Section title */
    .section-title {
        font-size: 28px;
    }

    /* Promise */
    .promise h2 {
        font-size: 28px;
    }

    .promise p {
        width: 100%;
        font-size: 14px;
    }

    /* Category cards */
    .category-card img {
        height: 200px;
    }

    .category-card h3 {
        font-size: 17px;
        padding: 16px;
    }

    /* Product cards */
    .product-img-container {
        height: 210px;
    }

    .product-title {
        font-size: 15px;
    }

    .product-price {
        font-size: 18px;
    }

    .product-filter-btn {
        font-size: 12px;
        padding: 7px 14px;
        margin: 3px;
    }

    /* Contact */
    .contact-info-card {
        padding: 20px;
    }

    .contact-form-container {
        padding: 24px;
    }

    .contact-icon {
        width: 48px;
        height: 48px;
    }

    .contact-icon i {
        font-size: 18px;
    }

    .map-placeholder {
        height: 300px;
    }

    /* Team */
    .team-img-container {
        height: 240px;
    }

    /* Footer */
    footer {
        padding: 50px 0 30px;
    }

    /* Policy */
    .policy-card {
        padding: 24px 20px;
    }

    /* FAQ */
    .faq-accordion .accordion-button {
        padding: 16px 20px;
        font-size: 14px;
    }

    .faq-accordion .accordion-body {
        padding: 16px 20px 20px;
        font-size: 14px;
    }

}

/* ===============================
        RESPONSIVE — SMALL MOBILE (max 576px)
================================ */

@media (max-width: 576px) {

    .hero h1 {
        font-size: 30px;
        line-height: 1.25;
    }

    .hero p.fw-semibold {
        font-size: 15px;
    }

    .hero .btn-outline-light,
    .hero .btn-gold {
        width: 100%;
        text-align: center;
        margin-bottom: 12px;
        margin-right: 0 !important;
    }

    .section-title {
        font-size: 24px;
    }

    .category-card img {
        height: 180px;
    }

    .product-price-row {
        flex-direction: column;
        align-items: flex-start;
    }

    .product-price-row .btn-gold {
        width: 100%;
        text-align: center;
    }

    .contact-form-container {
        padding: 18px;
    }

    .policy-card {
        padding: 20px 16px;
    }

    .logo-img {
        height: 55px;
    }

    .logo-img-footer {
        height: 70px;
    }

}

/* ==========================================
      CITY SELECTION MODAL & NAVBAR BADGE
============================================ */

.modal-backdrop.show {
    backdrop-filter: blur(12px) !important;
    background-color: rgba(8, 19, 33, 0.7) !important;
    opacity: 1 !important;
    transition: all 0.3s ease;
}

.city-modal-content {
    border: none !important;
    border-radius: 28px !important;
    box-shadow: 0 30px 70px rgba(0, 0, 0, 0.25) !important;
    background: #ffffff !important;
    overflow: hidden;
}

.modal-logo {
    height: 70px;
    width: auto;
    object-fit: contain;
}

.city-select-card-link {
    text-decoration: none !important;
    color: inherit !important;
    display: block;
}

.city-select-card {
    background: #ffffff;
    border: 2px solid var(--border);
    border-radius: 20px;
    padding: 35px 25px;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.city-select-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--secondary);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.city-select-card:hover {
    transform: translateY(-8px);
    border-color: var(--secondary);
    box-shadow: 0 20px 45px rgba(200, 155, 60, 0.15);
}

.city-select-card:hover::before {
    transform: scaleX(1);
}

.city-logo-container {
    height: 170px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    background: rgba(247, 247, 247, 0.8);
    border-radius: 16px;
    padding: 15px;
    transition: all 0.3s ease;
}

.city-select-card:hover .city-logo-container {
    background: rgba(200, 155, 60, 0.06);
}

.city-logo-img {
    max-height: 100%;
    max-width: 100%;
    object-fit: contain;
    transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.city-select-card:hover .city-logo-img {
    transform: scale(1.08);
}

.city-name {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    font-size: 24px;
    color: var(--primary);
    margin-bottom: 12px;
    transition: color 0.3s ease;
}

.city-select-card:hover .city-name {
    color: var(--secondary);
}

.city-action-btn {
    display: inline-block;
    padding: 8px 24px;
    background: var(--light);
    color: var(--gray);
    font-size: 14px;
    font-weight: 600;
    border-radius: 30px;
    transition: all 0.3s ease;
}

.city-select-card:hover .city-action-btn {
    background: var(--secondary);
    color: #ffffff;
    box-shadow: 0 6px 16px rgba(200, 155, 60, 0.35);
}

/* Navbar badge style */
.nav-city-badge {
    display: inline-flex;
    align-items: center;
    background: rgba(200, 155, 60, 0.12);
    color: var(--secondary);
    border: 1px solid rgba(200, 155, 60, 0.4);
    padding: 6px 14px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 600;
    transition: all 0.3s ease;
    cursor: pointer;
    margin-left: 20px;
    text-transform: capitalize;
}

.nav-city-badge:hover {
    background: var(--secondary);
    color: #ffffff;
    border-color: var(--secondary);
    transform: translateY(-1px);
}

.nav-city-badge i {
    margin-right: 6px;
    font-size: 14px;
}

/* Small adjustments for navbar badge inside collapse list on mobile */
@media (max-width: 991px) {
    .nav-city-badge {
        margin-left: 25px;
        margin-top: 10px;
        margin-bottom: 10px;
        align-self: flex-start;
    }
}