:root {
    --luxury-dark: #0f0f0f;
    --luxury-black: #050505;
    --luxury-gold: #01949a;
    --luxury-soft-gold: #01949a;
    --luxury-white: #ffffff;
    --luxury-muted: #b8b8b8;
}

body {
    margin: 0;
    font-family: 'Poppins', Arial, sans-serif;
    background: #fafafa;
    color: #111;
}

.luxury-navbar {
    background: rgba(5, 5, 5, 0.92);
    backdrop-filter: blur(14px);
    padding: 16px 0;
    position: sticky;
    top: 0;
    z-index: 999;
    border-bottom: 1px solid rgba(201, 162, 77, 0.25);
}

.luxury-logo {
    color: var(--luxury-gold);
    font-weight: 800;
    letter-spacing: 1px;
    text-decoration: none;
    font-size: 24px;
}

.luxury-nav-link {
    color: #01949a;
    text-decoration: none;
    margin-left: 22px;
    font-size: 16px;
    font-weight: 500;
    transition: 0.3s;
}

.luxury-nav-link:hover {
    color: #c21e56;
}

.luxury-hero {
    min-height: 88vh;
    background:
        linear-gradient(110deg, rgba(0,0,0,0.92), rgba(0,0,0,0.60), rgba(0,0,0,0.25)),
        url('../../assets/images/luxury-hero.jpg');
    background-size: cover;
    background-position: center;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
}

.luxury-hero::before {
    content: "";
    position: absolute;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(201,162,77,0.28), transparent 70%);
    top: -120px;
    right: -100px;
    animation: luxuryGlow 6s ease-in-out infinite alternate;
}

.luxury-hero::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(201,162,77,0.10), transparent, rgba(255,255,255,0.04));
    animation: heroShine 5s linear infinite;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 720px;
    animation: fadeUp 1.2s ease forwards;
}

.hero-badge {
    display: inline-block;
    padding: 9px 18px;
    border: 1px solid rgba(201,162,77,0.55);
    color: #01949a;
    border-radius: 40px;
    font-size: 13px;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 22px;
    background: rgba(255,255,255,0.05);
    backdrop-filter: blur(8px);
}

.hero-title {
    font-size: 64px;
    line-height: 1.08;
    font-weight: 900;
    color: #fff;
    margin-bottom: 22px;
    text-shadow: 0 12px 40px rgba(0,0,0,0.55);
}

.hero-title span {
    color: var(--luxury-gold);
    position: relative;
}

.hero-text {
    font-size: 18px;
    color: #ddd;
    max-width: 590px;
    margin-bottom: 35px;
    line-height: 1.8;
}

.luxury-btn {
    background: linear-gradient(135deg, #01949a, #01949a, #b88928);
    color: #111;
    padding: 14px 34px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    border: none;
    display: inline-block;
    transition: 0.35s;
    box-shadow: 0 15px 35px rgba(201,162,77,0.35);
}

.luxury-btn:hover {
    transform: translateY(-4px);
    box-shadow: 0 22px 55px rgba(201,162,77,0.55);
    color: #c21e56;
}

.luxury-outline-btn {
    border: 1px solid rgba(255,255,255,0.45);
    background-color: #01949a;
    color: var(--luxury-black);
    padding: 14px 30px;
    border-radius: 50px;
    text-decoration: none;
    margin-left: 12px;
    transition: 0.35s;
}

.luxury-outline-btn:hover {
    border-color: var(--luxury-gold);
    color: #c21e56;
}

.floating-card {
    position: absolute;
    right: 8%;
    bottom: 12%;
    width: 260px;
    padding: 22px;
    border-radius: 22px;
    background: #28282B;
    border: 1px solid rgba(255,255,255,0.18);
    backdrop-filter: blur(18px);
    z-index: 3;
    color: #c21e56;
    animation: floatCard 4s ease-in-out infinite;
}

.floating-card h5 {
    color: var(--luxury-gold);
    font-weight: 800;
}

.luxury-section {
    padding: 80px 0;
}

.section-title {
    font-weight: 900;
    font-size: 38px;
    margin-bottom: 12px;
}

.section-subtitle {
    color: #777;
    margin-bottom: 40px;
}

.luxury-product-card {
    border: 0;
    border-radius: 22px;
    overflow: hidden;
    background: #fff;
    box-shadow: 0 7px 15px #c21e56;
    transition: 0.4s;
}

.luxury-product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 25px 55px rgba(0,0,0,0.15);
}

.luxury-product-card img {
    height: 250px;
    width: 100%;
    object-fit: cover;
    transition: 0.5s;
}

.luxury-product-card:hover img {
    transform: scale(1.08);
}

.price-gold {
    color: var(--luxury-gold);
    font-weight: 900;
}

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

@keyframes luxuryGlow {
    from {
        transform: scale(1);
        opacity: 0.45;
    }
    to {
        transform: scale(1.25);
        opacity: 0.9;
    }
}

@keyframes heroShine {
    0% {
        transform: translateX(-100%);
    }
    100% {
        transform: translateX(100%);
    }
}

@keyframes floatCard {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-18px);
    }
}

@media(max-width: 768px) {
    .hero-title {
        font-size: 38px;
    }

    .luxury-hero {
        min-height: 78vh;
        text-align: center;
    }

    .floating-card {
        display: none;
    }

    .luxury-outline-btn {
        display: inline-block;
        margin-left: 0;
        margin-top: 12px;
    }
}

.store-name{
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-size: 24px;
    font-weight: 800;
    letter-spacing: 1px;
    color: #ffffff;
    line-height: 1;
    transition: 0.3s;
}

.store-tagline{
    color: #c21e56;
    font-size: 11px;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-weight: 600;
}

.luxury-logo:hover .store-name{
    color: #c21e56;
}

.luxury-logo img{
    border-radius: 10px;
}

.store-name{
    font-family: 'Cormorant Garamond', serif;
    font-size: 30px;
    font-weight: 700;
    letter-spacing: 1px;
}

.announcement-bar {
    background: linear-gradient(90deg, --luxury-white, #161616, #050505);
    color: #01949a;
    font-size: 13px;
    padding: 8px 0;
    border-bottom: 1px solid rgba(201,162,77,0.25);
}

.luxury-navbar {
    background: #28282B;
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    padding: 14px 0;
    position: sticky;
    top: 0;
    z-index: 999;
    border-bottom: 1px solid rgba(201,162,77,0.22);
    box-shadow: 0 12px 35px rgba(0,0,0,0.22);
}

.store-name {
    font-family: 'Cormorant Garamond', serif;
    font-size: 30px;
    font-weight: 700;
    letter-spacing: 1px;
    color: #ffffff;
    line-height: 1;
}

.store-tagline {
    color: #c21e56;
    font-size: 11px;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-weight: 600;
}

.luxury-logo:hover .store-name {
    color: #01949a;
}

.luxury-logo img {
    border-radius: 20px;
    object-fit: contain;
}

.luxury-menu {
    gap: 8px;
}


.luxury-dropdown {
    background: rgba(10,10,10,0.96);
    border: 1px solid rgba(201,162,77,0.25);
    border-radius: 16px;
    padding: 12px;
    box-shadow: 0 20px 45px rgba(0,0,0,0.35);
}

.luxury-dropdown .dropdown-item {
    color: #fff;
    border-radius: 10px;
    padding: 9px 14px;
    font-size: 14px;
}

.luxury-dropdown .dropdown-item:hover {
    background: var(--luxury-black);
    color: #01949a;
}

.luxury-search {
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(201,162,77,0.25);
    border-radius: 40px;
    overflow: hidden;
    height: 42px;
}

.luxury-search input {
    background: transparent;
    border: none;
    outline: none;
    color: #fff;
    padding: 0 14px;
    width: 230px;
    font-size: 13px;
}

.luxury-search input::placeholder {
    color: #aaa;
}

.luxury-search button {
    border: none;
    background: linear-gradient(135deg, #01949a, #01949a);
    color: #111;
    width: 44px;
}

.luxury-icon-btn {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(201,162,77,0.25);
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: 0.3s;
}

.luxury-icon-btn:hover {
    background: #01949a;
    color: #111;
    transform: translateY(-3px);
}

.cart-count {
    position: absolute;
    top: -5px;
    right: -5px;
    background: #01949a;
    color: #111;
    font-size: 11px;
    font-weight: 800;
    min-width: 19px;
    height: 19px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.whatsapp-floating {
    position: fixed;
    right: 22px;
    bottom: 24px;
    width: 58px;
    height: 58px;
    border-radius: 50%;
    background: #25D366;
    color: #fff;
    font-size: 30px;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    box-shadow: 0 14px 35px rgba(37,211,102,0.45);
    animation: whatsappPulse 2s infinite;
}

@keyframes whatsappPulse {
    0% {
        box-shadow: 0 0 0 0 rgba(37,211,102,0.55);
    }
    70% {
        box-shadow: 0 0 0 18px rgba(37,211,102,0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(37,211,102,0);
    }
}

@media(max-width: 768px) {
    .announcement-bar {
        font-size: 11px;
        text-align: center;
    }

    .announcement-bar .container {
        flex-direction: column;
        gap: 4px;
    }

    .store-name {
        font-size: 24px;
    }

    .store-tagline {
        font-size: 9px;
    }
}

.product-btn{
    min-width:220px;
    height:62px;

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

    border-radius:40px;

    font-size:18px;
    font-weight:700;

    transition:0.35s;
}

.luxury-btn-outline{

    background:#fff;

    border:2px solid #01949a;

    color:#111;

    text-decoration:none;

    min-width:220px;
    height:62px;

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

    border-radius:40px;

    font-size:18px;
    font-weight:700;

    transition:0.35s;
}

.luxury-btn-outline:hover{

    background:#01949a;

    color:#111;

    transform:translateY(-3px);

    text-decoration:none;

    box-shadow:0 18px 40px rgba(201,162,77,0.35);
}

.product-gallery-box {
    border-radius: 28px;
    overflow: visible;
    background: #fff;
    cursor: zoom-in;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 520px;
    padding: 15px;
}

.main-product-image {
    width: 100%;
    height: auto;
    max-height: 650px;
    object-fit: contain;
    background: #fff;
    transition: 0.5s;
}

.main-product-image:hover {
    transform: none;
}

@media(max-width: 768px) {
    .product-gallery-box {
        min-height: auto;
    }

    .main-product-image {
        max-height: 420px;
    }
}

.thumbnail-row {
    display: flex;
    gap: 12px;
    overflow-x: auto;
    padding-bottom: 8px;
}

.product-thumb {
    width: 90px;
    height: 90px;
    object-fit: contain;
    background: #fff;
    border-radius: 16px;
    cursor: pointer;
    border: 2px solid transparent;
    transition: 0.3s;
    opacity: 0.75;
}

.product-thumb:hover,
.active-thumb {
    border-color: #01949a;
    opacity: 1;
    transform: translateY(-4px);
}

.image-zoom-modal {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.92);
    z-index: 9999;
    align-items: center;
    justify-content: center;
    padding: 30px;
}

.image-zoom-modal img {
    max-width: 90%;
    max-height: 90vh;
    border-radius: 18px;
    box-shadow: 0 25px 80px rgba(0,0,0,0.5);
}

.zoom-close {
    position: absolute;
    top: 25px;
    right: 35px;
    color: #fff;
    font-size: 45px;
    cursor: pointer;
}

@media(max-width: 768px) {
    .main-product-image {
        height: 360px;
    }

    .product-thumb {
        width: 70px;
        height: 70px;
    }
}

.product-gallery-box {
    width: 100%;
    min-height: 520px;
    height: auto;
    padding: 18px;
    background: #fff;
    border-radius: 28px;
    overflow: visible !important;
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-gallery-box .main-product-image {
    width: 100% !important;
    height: auto !important;
    max-height: 520px !important;
    object-fit: contain !important;
    object-position: center center !important;
    background: #fff;
    padding: 0;
    border-radius: 18px;
    transform: none !important;
}

.product-gallery-box:hover .main-product-image {
    transform: none !important;
}

.luxury-product-card.product-gallery-box img {
    height: auto !important;
    object-fit: contain !important;
    transform: none !important;
}

.product-thumb {
    object-fit: contain !important;
    background: #fff;
    padding: 4px;
}

.trust-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.trust-badges span {
    background: #fff;
    border: 1px solid rgba(201,162,77,0.35);
    color: #111;
    padding: 9px 14px;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 600;
}

.review-box {
    background: #fff;
    border: 1px solid rgba(201,162,77,0.25);
    border-radius: 16px;
    padding: 16px;
}

.discount-badge {
    display: inline-block;
    background: linear-gradient(135deg, #01949a, #01949a);
    color: #111;
    padding: 8px 16px;
    border-radius: 30px;
    font-weight: 800;
    margin-bottom: 12px;
}

.stock-alert {
    color: #b45309;
    background: #fff7ed;
    border: 1px solid #fed7aa;
    padding: 10px 14px;
    border-radius: 14px;
    font-weight: 700;
    margin-bottom: 18px;
    display: inline-block;
}

.stock-available {
    color: #166534;
    background: #f0fdf4;
    border: 1px solid #bbf7d0;
    padding: 10px 14px;
    border-radius: 14px;
    font-weight: 700;
    margin-bottom: 18px;
    display: inline-block;
}

.stock-out {
    color: #991b1b;
    background: #fef2f2;
    border: 1px solid #fecaca;
    padding: 10px 14px;
    border-radius: 14px;
    font-weight: 700;
    margin-bottom: 18px;
    display: inline-block;
}

.tracking-timeline {
    position: relative;
    padding-left: 20px;
}

.tracking-step {
    display: flex;
    gap: 15px;
    padding: 18px 0;
    position: relative;
    opacity: 0.45;
}

.tracking-step::before {
    content: "";
    position: absolute;
    left: 9px;
    top: 35px;
    width: 2px;
    height: 100%;
    background: #ddd;
}

.tracking-step:last-child::before {
    display: none;
}

.tracking-dot {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: #ccc;
    border: 4px solid #fff;
    box-shadow: 0 0 0 2px #ccc;
    margin-top: 2px;
}

.tracking-step.active {
    opacity: 1;
}

.tracking-step.active .tracking-dot {
    background: #01949a;
    box-shadow: 0 0 0 2px #01949a;
}

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

footer {
    background: linear-gradient(135deg,#0f0f0f,#1b1b1b);
    color: #fff;
    position: relative;
    overflow: hidden;
}

footer::before{
    content:'';
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:3px;
    background:linear-gradient(90deg,#01949a,#f5d77a,#01949a);
}

footer h4,
footer h5{
    color:#01949a;
    font-family:'Cormorant Garamond',serif;
    font-weight:700;
    margin-bottom:18px;
}

footer p{
    color:#cfcfcf;
    line-height:1.8;
}

footer ul{
    padding-left:0;
}

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

footer ul li a{
    color:#d8d8d8;
    text-decoration:none;
    transition:.3s;
    position:relative;
}

footer ul li a:hover{
    color:#01949a;
    padding-left:6px;
}

footer ul li a::before{
    content:'›';
    margin-right:8px;
    color:#01949a;
}

footer hr{
    border-color:rgba(255,255,255,.15);
}

footer small{
    color:#bdbdbd;
    letter-spacing:.5px;
}

/* Footer Hover Cards */

footer .col-md-2,
footer .col-md-3,
footer .col-md-4{
    transition:.3s;
}

footer .col-md-2:hover,
footer .col-md-3:hover,
footer .col-md-4:hover{
    transform:translateY(-3px);
}

/* Mobile */

@media(max-width:768px){

    footer{
        text-align:center;
    }

    footer ul li a:hover{
        padding-left:0;
    }
}

.newsletter-luxury-section{
    padding:100px 0;
    background:linear-gradient(135deg,#0f1115,#1b1f27);
}

.newsletter-box{
    max-width:900px;
    margin:auto;
    text-align:center;
    padding:70px;
    border-radius:25px;
    background:rgba(255,255,255,0.03);
    border:1px solid rgba(212,175,55,.20);
    backdrop-filter:blur(10px);
}

.newsletter-badge{
    display:inline-block;
    padding:8px 18px;
    background:#01949a;
    color:var(--luxury-black);
    font-weight:600;
    border-radius:30px;
    margin-bottom:20px;
}

.newsletter-box h2{
    color:#fff;
    font-size:52px;
    font-weight:700;
    margin-bottom:15px;
}

.newsletter-box p{
    color:#cfcfcf;
    font-size:18px;
    margin-bottom:35px;
}

.newsletter-form{
    display:flex;
    gap:15px;
    justify-content:center;
    flex-wrap:wrap;
}

.newsletter-form input{
    width:550px;
    max-width:100%;
    height:65px;
    border:none;
    border-radius:50px;
    padding:0 25px;
    font-size:18px;
}

.newsletter-form button{
    height:65px;
    padding:0 40px;
    border:none;
    border-radius:50px;
    background:#01949a;
    color:01949a;
    font-weight:700;
    transition:.3s;
}

.newsletter-form button:hover{
    transform:translateY(-3px);
    box-shadow:0 10px 30px rgba(212,175,55,.4);
}

@media(max-width:768px){

.newsletter-box{
    padding:40px 25px;
}

.newsletter-box h2{
    font-size:34px;
}

.newsletter-form{
    flex-direction:column;
}

.newsletter-form input,
.newsletter-form button{
    width:100%;
}
}

.marquee-track:hover{
    animation-play-state: paused;
}