:root {
    --main-gray: #555;
    --top-bar-gray: #1a1a1a;
    --gold: #93908b !important;
    --maroon: #632424;
    --white: #ffffff;
}

.top-bar {
    background-color: var(--top-bar-gray) !important;
    border-bottom: 1px solid rgba(197, 160, 89, 0.2);
}

.main-header {
    background-color: var(--main-gray) !important;
    padding: 12px 0;
    box-shadow: 0 4px 20px rgba(0,0,0,0.3);
    border-bottom: 1px solid var(--white); 
}



.hero-overlay {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(
        to bottom, 
        rgba(44, 44, 44, 0.9) 0%,  
        rgba(26, 26, 26, 0.6) 50%,  
        rgba(0, 0, 0, 0.85) 100%    
    );
    z-index: 2;
}

.legal-name {
    color: var(--gold) !important;
    opacity: 0.9;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Cairo', sans-serif;
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: auto;
}

[lang="en"] .lang-ar {
    display: none;
}

[lang="ar"] .lang-en {
    display: none;
}

[lang="en"] {
    direction: ltr;
    text-align: left;
}

.top-bar {
    background: #fff;
    color: #fff;
    padding: 10px 0;
    font-size: 14px;
}

.flex-between {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.top-social a {
    color: var(--gold);
    margin-inline-end: 15px;
    transition: 0.3s;
    /* font-size: 20px; */
}

.top-social a:hover {
    color: var(--white);
}

.top-contact a {
    color: var(--gold);
    text-decoration: none;
    font-weight: bold;
}

.main-header {
    background: #555;
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
    color: #fff;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-area {
    display: flex;
    align-items: center;
    gap: 15px;
    cursor: pointer;
}

.nav-logo {
    height: 67px;
}

.brand-name h1 {
    font-size: 20px;
    line-height: 1;
    color: var(--white);
    font-weight: 900;
}

.brand-name span {
    font-size: 10px;
    letter-spacing: 2px;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 20px;
}

.nav-links a {
    text-decoration: none;
    color: #fff;
    font-weight: 600;
    font-size: 14px;
}

.nav-links a:hover {
    color: var(--gold);
}

.dropdown {
    position: relative;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    right: 0;
    background: #fff;
    list-style: none;
    width: 180px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    display: none;
    padding: 10px 0;
    border-radius: 5px;
}

.dropdown:hover .dropdown-menu {
    display: block;
}

.dropdown-menu li a {
    color: #000;
    padding: 10px 20px;
    display: block;
    border-bottom: 1px solid #f5f5f5;
}

.hero {
    height: 85vh;
    position: relative;
    display: flex;
    align-items: center;
    color: #fff;
    text-align: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('https://images.unsplash.com/photo-1592945403244-b3fbafd7f539?q=80&w=2000') center/cover;
    animation: kenburns 20s infinite alternate;
}

@keyframes kenburns {
    from {
        transform: scale(1);
    }

    to {
        transform: scale(1.1);
    }
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
}

.hero-content {
    position: relative;
    z-index: 10;
    width: 100%;
}

.hero-content h2 {
    font-size: 3.5rem;
    font-weight: 900;
}

.btn-gold {
    background: var(--gold);
    color: #fff;
    padding: 12px 30px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    margin: 10px;
    display: inline-block;
}

.btn-outline {
    border: 2px solid #fff;
    color: #fff;
    padding: 10px 30px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    margin: 10px;
    display: inline-block;
}

.section-padding {
    padding: 100px 0;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.about-img img {
    width: 100%;
    border-radius: 20px;
    box-shadow: 20px 20px 0 var(--gold);
}

.grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.cat-card {
    background: #fff;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.cat-card img {
    width: 100%;
    height: 300px;
    object-fit: cover;
}

.cat-info {
    padding: 20px;
    text-align: center;
}

.order-btn {
    background: #25d366;
    color: #fff;
    text-decoration: none;
    padding: 10px;
    display: block;
    border-radius: 5px;
    font-weight: bold;
    margin-top: 15px;
}

.footer {
    background: #111;
    color: #fff;
    padding: 80px 0 20px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 50px;
    padding-bottom: 50px;
}

.footer-logo {
    height: 60px;
    margin-bottom: 20px;
}

.social-icons a {
    color: var(--gold);
    font-size: 20px;
    margin-inline-end: 15px;
}

.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: 1s all ease;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

@media (max-width: 768px) {

    .grid-3,
    .about-grid,
    .footer-grid {
        grid-template-columns: 1fr;
    }

    .hero-content h2 {
        font-size: 2.2rem;
    }

    .nav-links {
        display: none;
    }
}

.menu-toggle {
    display: none;
    cursor: pointer;
    font-size: 24px;
    color: var(--gold);
}

.lang-btn {
    background-color: var(--gold) !important;
    color: #fff !important;
    padding: 10px 25px !important;
    border: none !important;
    border-radius: 5px !important;
    font-family: 'Cairo', sans-serif;
    font-weight: 700;
    cursor: pointer;
    transition: 0.3s;
    display: flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.lang-btn:hover {
    background-color: #848280 !important;
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
}

@media (max-width: 992px) {
    .menu-toggle {
        display: block !important;
        z-index: 3000;
        cursor: pointer;
        position: relative;
    }

    .nav-links {
        position: fixed !important;
        top: 0;
        right: -100%; 
        width: 100% !important; 
        height: 100vh !important;
        background: #000000 !important; 
        display: flex !important;
        flex-direction: column !important;
        justify-content: center !important;
        align-items: center !important;
        gap: 20px !important;
        transition: 0.5s ease-in-out;
        z-index: 2500; 
        padding: 0;
        margin: 0;
        list-style: none;
    }

    .nav-links.active {
        right: 0 !important; 
    }

    .nav-links li {
        width: 100%;
        text-align: center;
    }

    .nav-links li a {
        font-size: 24px !important;
        font-weight: 700 !important;
        text-decoration: none;
        display: block;
        padding: 10px 0;
    }

    .nav-links li a:hover {
        color: var(--gold) !important;
    }

    .lang-btn-nav {
        margin-top: 20px;
        background: var(--gold);
        color: #000;
        border: none;
        padding: 12px 30px;
        border-radius: 50px;
        font-weight: bold;
    }
}
@keyframes pulse-gold {
    0% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(197, 160, 89, 0.7);
    }

    70% {
        transform: scale(1.05);
        box-shadow: 0 0 0 10px rgba(197, 160, 89, 0);
    }

    100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(197, 160, 89, 0);
    }
}

.lang-btn {
    animation: pulse-gold 2s infinite;
    transition: 0.3s;
    background-color: var(--gold) !important;
    color: #fff !important;
    border: none;
    font-weight: bold;
    cursor: pointer;
}

.lang-btn:hover {
    animation: none;
    transform: scale(1.1);
    background-color: #848280 !important;
}


.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.section-tag {
    background-color: #93908b;
    color: #fff;
    padding: 6px 25px;
    border-radius: 50px;
    display: inline-block;
    font-size: 14px;
    font-weight: bold;
    margin-bottom: 20px;
    letter-spacing: 1px;
}

.about-text-side h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    font-weight: 900;
}

.about-text-side p {
    font-size: 1.1rem;
    line-height: 1.9;
    color: #555;
    text-align: justify;
}

.about-img-wrapper {
    position: relative;
    z-index: 1;
}

.about-img-wrapper img {
    width: 100%;
    border-radius: 20px;
    display: block;
    position: relative;
    z-index: 2;
}

.about-img-wrapper::after {
    content: '';
    position: absolute;
    top: 20px;
    right: -20px;
    width: 100%;
    height: 100%;
    background-color: var(--gold);
    border-radius: 20px;
    z-index: 1;
    opacity: 0.3;
}

[lang="en"] .about-img-wrapper::after {
    right: auto;
    left: -20px;
}

@media (max-width: 768px) {
    .about-grid {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 40px;
    }

    .about-img-wrapper::after {
        right: -10px;
        top: 10px;
    }

    .about-text-side h2 {
        font-size: 1.8rem;
    }
}

.categories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.cat-pro-card {
    background: #fff;
    border-radius: 25px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border-bottom: 5px solid var(--gold);
}

.cat-pro-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 20px 40px rgba(197, 160, 89, 0.2);
}

.cat-img {
    height: 280px;
    overflow: hidden;
}

.cat-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.5s;
}

.cat-pro-card:hover .cat-img img {
    transform: scale(1.1);
}

.cat-content {
    padding: 30px;
    text-align: center;
}

.cat-list {
    list-style: none;
    padding: 0;
    margin: 15px 0;
    color: #777;
    font-size: 14px;
}

.cat-list li {
    margin-bottom: 8px;
}

.btn-shop {
    display: inline-block;
    background: var(--primary);
    color: var(--gold);
    padding: 10px 25px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    border: 1px solid var(--gold);
    transition: 0.3s;
}

.btn-shop:hover {
    background: var(--gold);
    color: #fff;
}


.stars-main {
    color: var(--gold);
    margin-top: 10px;
    font-size: 18px;
}

.testi-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-top: 50px;
}

.testi-card {
    background: #fff;
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    position: relative;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    border: 1px solid #f0f0f0;
    transition: 0.3s;
}

.testi-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(197, 160, 89, 0.2);
}

.quote-icon {
    font-size: 30px;
    color: var(--gold);
    opacity: 0.3;
    margin-bottom: 20px;
}

.testi-card p {
    font-style: italic;
    font-size: 1.1rem;
    line-height: 1.8;
    color: #444;
    margin-bottom: 20px;
}

.user-info h5 {
    color: var(--primary);
    font-weight: 900;
    font-size: 1.1rem;
    position: relative;
    display: inline-block;
}

.user-info h5::after {
    content: '';
    display: block;
    width: 30px;
    height: 2px;
    background: var(--gold);
    margin: 8px auto 0;
}

@media (max-width: 768px) {
    .testi-grid {
        grid-template-columns: 1fr;
    }

    .testi-card {
        padding: 30px 20px;
    }
}

.location-flex {
    display: flex;
    align-items: center;
    gap: 50px;
}

.location-info {
    flex: 1;
}

.map-box {
    flex: 1.5;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    border-radius: 20px;
}

.info-item {
    margin: 20px 0;
    font-size: 18px;
    font-weight: bold;
}

.info-item i {
    color: var(--gold);
    margin-left: 10px;
}

.map-link {
    color: var(--maroon);
    font-weight: 800;
    text-decoration: none;
    border-bottom: 2px solid var(--gold);
}

.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: all 1s ease;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

@media (max-width: 768px) {
    .location-flex {
        flex-direction: column;
        text-align: center;
    }

    .testi-grid {
        grid-template-columns: 1fr;
    }
}

.teaser-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.teaser-card {
    background: #fff;
    border-radius: 20px;
    padding: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: 0.3s;
}

.teaser-card img {
    width: 100%;
    object-fit: cover;
    border-radius: 15px;
    margin-bottom: 20px;
}

.teaser-card:hover {
    transform: translateY(-10px);
}

.link-gold {
    color: var(--gold);
    text-decoration: none;
    font-weight: bold;
    display: inline-block;
    margin-top: 10px;
}

.shop-hero {
    background: #111;
    color: #fff;
    padding: 60px 0;
    border-bottom: 2px solid var(--gold);
}


.shop-page-body {
    background-color: #fcfcfc;
}

.shop-hero {
    background: #111;
    color: #fff;
    padding: 60px 0;
    border-bottom: 3px solid var(--gold);
}

.category-filters {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 50px;
    flex-wrap: wrap;
}

.filter-btn {
    background: #fff;
    border: 1px solid #ddd;
    padding: 10px 25px;
    border-radius: 50px;
    cursor: pointer;
    font-weight: bold;
    transition: 0.3s;
}

.filter-btn.active,
.filter-btn:hover {
    background: var(--gold);
    color: #fff;
    border-color: var(--gold);
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 30px;
    width: 100%;
}

.product-card {
    background: #fff;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: 0.4s ease;
    border: 1px solid #f0f0f0;
    display: flex;
    flex-direction: column;
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(197, 160, 89, 0.2);
}

.pro-img {
    height: 300px;
    overflow: hidden;
    background: #f9f9f9;
}

.pro-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.5s;
}

.pro-info {
    padding: 20px;
    text-align: center;
}

.pro-info h3 {
    font-size: 18px;
    color: var(--primary);
    margin-bottom: 10px;
}

.pro-price {
    font-size: 20px;
    color: var(--gold);
    font-weight: 900;
    margin-bottom: 20px;
}

.add-to-cart-btn {
    background: #25d366;
    color: #fff;
    border: none;
    padding: 12px;
    width: 100%;
    border-radius: 8px;
    font-weight: bold;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: 0.3s;
}

.add-to-cart-btn:hover {
    background: #1da851;
}

@media (max-width: 768px) {
    .products-grid {
        grid-template-columns: 1fr;
    }
}

.pro-tag {
    position: absolute;
    top: 15px;
    left: 15px;
    background: var(--gold);
    color: #fff;
    padding: 5px 12px;
    border-radius: 5px;
    font-size: 12px;
    font-weight: bold;
    z-index: 5;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.pro-notes {
    font-size: 12px;
    color: #888;
    margin-bottom: 15px;
    font-style: italic;
}

.search-container {
    max-width: 500px;
    margin: 0 auto 40px;
    position: relative;
}

.search-input {
    width: 100%;
    padding: 15px 25px;
    border-radius: 50px;
    border: 1px solid #ddd;
    font-family: inherit;
    outline: none;
    transition: 0.3s;
}

.search-input:focus {
    border-color: var(--gold);
    box-shadow: 0 0 15px rgba(197, 160, 89, 0.2);
}

.pro-img {
    position: relative;
}

.pro-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: var(--gold);
    color: #fff;
    padding: 4px 12px;
    border-radius: 4px;
    font-size: 11px;
    font-weight: bold;
    z-index: 5;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.pro-notes {
    font-size: 13px;
    color: #888;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
}

.pro-notes i {
    color: var(--gold);
    font-size: 11px;
}

.search-container {
    max-width: 600px;
    margin: 0 auto 40px;
    position: relative;
}

.search-input {
    width: 100%;
    padding: 15px 50px 15px 20px;
    border-radius: 50px;
    border: 1px solid #ddd;
    font-family: inherit;
    outline: none;
    transition: 0.3s;
}

.search-icon {
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--gold);
}

.search-input:focus {
    border-color: var(--gold);
    box-shadow: 0 0 15px rgba(197, 160, 89, 0.2);
}


.page-hero-inner {
    height: 350px;
    width: 100%;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
    overflow: hidden;
    background-color: #111;
}

.page-hero-inner::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('https://images.unsplash.com/photo-1592945403244-b3fbafd7f539?q=80&w=2000');
    background-size: cover;
    background-position: center;
    z-index: 1;
    animation: slowZoom 20s infinite alternate;
}

@keyframes slowZoom {
    from {
        transform: scale(1);
    }

    to {
        transform: scale(1.1);
    }
}

.hero-overlay-dark {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom,
            rgba(0, 0, 0, 0.7) 0%,
            rgba(99, 36, 36, 0.4) 50%,
            #ffffff 100%
        );
    z-index: 2;
}


.hero-content-inner {
    position: relative;
    z-index: 10;
}

.hero-content-inner h1 {
    font-size: 3rem;
    font-weight: 900;
    text-shadow: 0 4px 15px rgba(0, 0, 0, 0.5);
    color: #fff !important;
}

.legal-card {
    background: #fff;
    padding: 60px;
    border-radius: 25px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.05);
    margin-top: -60px;
    position: relative;
    z-index: 20;
}

.legal-section {
    margin-bottom: 40px;
}

.legal-section h3 {
    color: var(--primary);
    font-size: 22px;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.legal-section h3 i {
    color: var(--gold);
    font-size: 24px;
}

.legal-section p {
    font-size: 16px;
    line-height: 2;
    color: #555;
    text-align: justify;
}

.divider-gold {
    height: 1px;
    background: linear-gradient(to left, transparent, var(--gold), transparent);
    margin: 30px 0;
    opacity: 0.3;
}

@media (max-width: 768px) {
    .legal-card {
        padding: 30px 20px;
        margin-top: -40px;
    }

    .legal-section h3 {
        font-size: 19px;
    }

    .legal-section p {
        font-size: 14px;
    }
}
:root {
    --primary: #111111;
    --gold: #93908b;
    --maroon: #632424;
    --white: #ffffff;
    --light-bg: #f9f9f9;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
    font-family: 'Cairo', sans-serif;
    background-color: var(--white);
    color: var(--primary);
    overflow-x: hidden;
}

.container { width: 85%; max-width: 1200px; margin: auto; }




.shop-hero {
    background: var(--primary);
    color: #fff;
    padding: 80px 0;
    text-align: center;
    position: relative;
}

.shop-controls { margin-bottom: 50px; }

.search-container {
    max-width: 500px;
    margin: 0 auto 30px;
    position: relative;
}

.search-input {
    width: 100%;
    padding: 15px 45px 15px 20px;
    border-radius: 50px;
    border: 1px solid #ddd;
    outline: none;
    font-family: inherit;
}

.search-icon { position: absolute; right: 20px; top: 50%; transform: translateY(-50%); color: var(--gold); }

.category-filters { display: flex; justify-content: center; gap: 10px; flex-wrap: wrap; }
.filter-btn {
    background: #fff; border: 1px solid #ddd; padding: 10px 20px;
    border-radius: 50px; cursor: pointer; font-weight: bold; transition: 0.3s;
}
.filter-btn.active { background: var(--gold); color: #fff; border-color: var(--gold); }

.products-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    padding: 20px 0;
}

.product-card {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    border: 1px solid #f0f0f0;
    transition: 0.4s;
    display: flex;
    flex-direction: column;
}

.product-card:hover { transform: translateY(-10px); }

.pro-img { height: 300px; width: 100%; background: #fdfdfd; position: relative; }
.pro-img img { width: 100%; height: 100%; object-fit: cover; }

.pro-badge {
    position: absolute; top: 15px; right: 15px;
    background: var(--gold); color: #fff; padding: 4px 12px;
    border-radius: 5px; font-size: 11px; font-weight: bold;
}

.pro-info { padding: 20px; text-align: center; flex-grow: 1; }
.pro-info h3 { font-size: 18px; margin-bottom: 10px; color: var(--primary); }
.pro-notes { font-size: 12px; color: #888; margin-bottom: 15px; }
.pro-price { font-size: 20px; font-weight: 900; color: var(--maroon); margin-bottom: 20px; }

.add-to-cart-btn {
    width: 100%; background: #25d366; color: #fff; border: none;
    padding: 12px; border-radius: 10px; cursor: pointer; font-weight: bold;
    display: flex; align-items: center; justify-content: center; gap: 10px;
}

.main-footer-dark {
    background: #000;
    color: #fff;
    padding: 60px 0 20px;
    margin-top: 80px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 50px;
    margin-bottom: 40px;
}

.footer-logo { height: 60px; margin-bottom: 20px; filter: brightness(0) invert(1); }

.footer-links { list-style: none; padding: 0; }
.footer-links li { margin-bottom: 10px; }
.footer-links a { color: #aaa; text-decoration: none; font-size: 14px; }
.footer-links a:hover { color: var(--gold); }

.footer-bottom-bar { border-top: 1px solid #222; padding-top: 20px; font-size: 13px; color: #555; }

@media (max-width: 992px) {
    .products-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
    .container { width: 92%; }
    .products-grid { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; text-align: center; }
    .nav-links { display: none; }
}
.product-details-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    margin-top: 40px;
}

.main-img-box {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    height: 500px;
}

.main-img-box img { width: 100%; height: 100%; object-fit: cover; }

.thumb-list { display: flex; gap: 15px; margin-top: 20px; }
.thumb-list img {
    width: 80px; height: 80px; border-radius: 10px;
    cursor: pointer; border: 2px solid transparent; transition: 0.3s;
}
.thumb-list img.active, .thumb-list img:hover { border-color: var(--gold); }

.pro-category { color: var(--gold); font-weight: bold; font-size: 14px; }
.pro-title { font-size: 2.5rem; margin: 10px 0; color: var(--primary); }
.pro-price-big { font-size: 30px; font-weight: 900; color: var(--maroon); margin: 20px 0; }

.scent-notes-box {
    background: #fdfaf3; padding: 20px; border-radius: 15px;
    border-right: 4px solid var(--gold); margin-bottom: 30px;
}
.note-item { font-size: 14px; margin-bottom: 8px; }

.size-btns { display: flex; gap: 10px; margin-top: 10px; }
.size-btns button {
    padding: 8px 25px; border-radius: 5px; border: 1px solid #ddd;
    background: #fff; cursor: pointer; font-weight: bold;
}
.size-btns button.active { background: var(--maroon); color: #fff; border-color: var(--maroon); }

.btn-order-now {
    display: flex; align-items: center; justify-content: center; gap: 15px;
    background: #25d366; color: #fff; padding: 18px; border-radius: 12px;
    text-decoration: none; font-size: 18px; font-weight: 800; transition: 0.3s;
}
.btn-order-now:hover { transform: scale(1.02); background: #1da851; }

@media (max-width: 768px) {
    .product-details-wrapper { grid-template-columns: 1fr; gap: 30px; }
    .main-img-box { height: 350px; }
}
.pro-title-link {
    text-decoration: none;
    color: inherit;
    transition: 0.3s;
}

.pro-title-link:hover h3 {
    color: var(--gold); 
}

.pro-buttons {
    display: flex;
    gap: 10px;
    align-items: center;
}

.btn-details-link {
    font-size: 12px;
    color: #888;
    text-decoration: underline;
    white-space: nowrap;
}

.btn-details-link:hover {
    color: var(--maroon);
}
.header-actions {
    display: flex;
    align-items: center;
    gap: 15px;
}

.cart-link {
    position: relative;
    color: var(--gold);
    font-size: 24px;
    text-decoration: none;
    transition: 0.3s;
    display: flex;
    align-items: center;
}

#cartCount {
    position: absolute;
    top: -8px;
    right: -10px;
    background: #ff3b30;
    color: white;
    font-size: 11px;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    border: 2px solid #000;
}

.cart-link:hover {
    transform: scale(1.1);
    color: #fff;
}
.shipping-info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.info-card {
    background: #fff;
    padding: 40px 20px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    border-bottom: 4px solid var(--gold);
}

.info-card i {
    font-size: 40px;
    color: var(--maroon);
    margin-bottom: 20px;
}

.info-card h4 {
    margin-bottom: 15px;
    font-weight: 800;
}

.tracking-box {
    background: #fff;
    padding: 50px;
    border-radius: 30px;
    text-align: center;
    box-shadow: 0 20px 50px rgba(0,0,0,0.05);
}

.courier-logos {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 30px;
    flex-wrap: wrap;
}

.courier-logos a {
    background: #f9f9f9;
    padding: 15px 30px;
    border-radius: 10px;
    text-decoration: none;
    color: #333;
    font-weight: bold;
    border: 1px solid #eee;
    transition: 0.3s;
}

.courier-logos a:hover {
    border-color: var(--gold);
    color: var(--gold);
}

.btn-wa-track {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #25d366;
    color: #fff;
    padding: 15px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    margin-top: 20px;
}
.main-footer-dark {
    background: #000; 
    color: #fff;
    padding: 80px 0 0;
    margin-top: 50px;
    border-top: 1px solid rgba(197, 160, 89, 0.2); 
}

.footer-grid-pro {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr; 
    gap: 50px;
    padding-bottom: 50px;
}

.footer-col h4.footer-title {
    color: var(--gold);
    font-size: 18px;
    margin-bottom: 25px;
    font-weight: 700;
}

.footer-links {
    list-style: none !important;
    padding: 0 !important;
    margin: 0 !important;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: #aaa;
    text-decoration: none;
    transition: 0.3s;
    font-size: 14px;
}

.footer-links a:hover {
    color: var(--gold);
    padding-inline-start: 5px;
}

.footer-logo-white {
    height: 100px;
    filter: brightness(0) invert(1); 
}

.footer-slogan {
    font-size: 14px;
    color: #888;
    margin-bottom: 20px;
    line-height: 1.6;
}

.footer-social {
    display: flex;
    gap: 15px;
}

.footer-social a {
    color: #fff;
    font-size: 18px;
    transition: 0.3s;
}

.footer-social a:hover {
    color: var(--gold);
    transform: translateY(-3px);
}

.footer-contact-details {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #fff;
    text-decoration: none;
    font-size: 14px;
}

.contact-item i {
    color: var(--gold);
    width: 20px;
}

.footer-copyright-bar {
    background: #0a0a0a;
    padding: 20px 0;
    border-top: 1px solid #1a1a1a;
    font-size: 12px;
    color: #555;
}

.flex-between-center {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.dev-credit a {
    color: var(--gold);
    text-decoration: none;
    font-weight: bold;
}

@media (max-width: 768px) {
    .footer-grid-pro {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .footer-social, .contact-item {
        justify-content: center;
    }
    .flex-between-center {
        flex-direction: column;
        gap: 10px;
    }
}

.mobile-only {
    display: none !important;
}

.desktop-only {
    display: flex !important;
    animation: pulse-gold 2s infinite; 
}

.lang-btn {
    background-color: var(--gold);
    color: #fff;
    padding: 8px 18px;
    border-radius: 50px;
    border: none;
    cursor: pointer;
    font-weight: bold;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
}

@media (max-width: 992px) {
    .desktop-only {
        display: none !important;
    }

    .mobile-only {
        display: block !important;
        width: 100%;
        margin-top: 20px;
    }

    .mobile-only .lang-btn {
        width: 94%;
        justify-content: center;
        padding: 12px;
        font-size: 16px;
        margin: auto;
    }
}
@media (max-width: 992px) {
    .dropdown-menu {
        position: static !important; 
        width: 100% !important;
        background: rgba(255, 255, 255, 0.05) !important; 
        box-shadow: none !important;
        display: none; 
        padding: 0 !important;
        border-radius: 0;
        border: none !important;
    }

    .dropdown-menu.show {
        display: block !important;
        margin: 10px 0;
    }

    .dropdown-menu li {
        margin: 0 !important;
        border-bottom: 1px solid rgba(255,255,255,0.02) !important;
    }

    .dropdown-menu li a {
        font-size: 16px !important; 
        color: #ccc !important;
        padding: 12px 0 !important;
        font-weight: 400 !important;
    }

    .dropdown > a i {
        transition: transform 0.3s;
    }
    .dropdown.open > a i {
        transform: rotate(180deg); 
    }
}
@keyframes pulse-gold {
    0% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(197, 160, 89, 0.7);
    }
    70% {
        transform: scale(1.05);
        box-shadow: 0 0 0 15px rgba(197, 160, 89, 0);
    }
    100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(197, 160, 89, 0);
    }
}

.hero-btns a {
    animation: pulse-gold 2s infinite ease-in-out;
}

.hero-btns .btn-outline {
    animation-delay: 0.5s;
}
.floating-actions {
    position: fixed;
    bottom: 30px;
    right: 30px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    z-index: 9999; 
}

[lang="en"] .floating-actions {
    right: auto;
    left: 30px;
}

.float-btn {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 30px;
    text-decoration: none;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.float-btn.whatsapp {
    background-color: #25d366;
    animation: pulse-whatsapp 2s infinite;
}

.float-btn.phone {
    background-color: var(--gold);
}

@keyframes pulse-whatsapp {
    0% { transform: scale(1); box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7); }
    70% { transform: scale(1.1); box-shadow: 0 0 0 15px rgba(37, 211, 102, 0); }
    100% { transform: scale(1); box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

.float-btn:hover {
    transform: scale(1.15) translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.4);
    color: #fff;
}

@media (max-width: 768px) {
    .floating-actions {
        bottom: 20px;
        right: 20px;
        gap: 10px;
    }
    
    .float-btn {
        width: 50px;
        height: 50px;
        font-size: 24px;
    }
}
.business-verification {
    margin-top: 20px;
    display: inline-block;
}

.business-verification img {
    width: 120px; 
    height: auto;
    background: #fff; 
    padding: 8px;
    border-radius: 10px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
}

.business-verification img:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 10px 20px rgba(197, 160, 89, 0.3); 
}

@media (max-width: 768px) {
    .business-verification {
        text-align: center;
        width: 100%;
        margin-bottom: 20px;
    }
}
.payment-methods-section {
    padding: 30px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    background: #0a0a0a;
}

.payment-methods-section h4 {
    color: var(--gold);
    font-size: 16px;
    margin-bottom: 20px;
    font-weight: 700;
}

.payment-icons-flex {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 25px;
    flex-wrap: wrap; 
}

.payment-icons-flex img {
    height: 25px;
    transition: 0.3s ease;
    opacity: 0.8;
}

.payment-icons-flex img:hover {
    filter: grayscale(0%) brightness(1); 
    opacity: 1;
    transform: translateY(-3px);
}

.cod-badge {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    color: #aaa;
    border: 1px dashed #444;
    padding: 5px 12px;
    border-radius: 5px;
}

.cod-badge i {
    color: var(--gold);
    font-size: 16px;
}

@media (max-width: 768px) {
    .payment-icons-flex {
        gap: 15px;
    }
    .payment-icons-flex img {
        height: 20px;
    }
}