    /* =========================
GOOGLE FONT
========================= */
    
    @import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@400;500;600;700&family=Inter:wght@300;400;500;600&display=swap');
    /* =========================
GLOBAL
========================= */
    
    * {
        margin: 0;
        padding: 0;
        box-sizing: border-box;
    }
    
    body {
        font-family: 'Inter', sans-serif;
        background: #111111e9;
        color: #F5F1EA;
        overflow-x: hidden;
    }
    
    h1,
    h2,
    h3,
    h4,
    h5,
    h6 {
        font-family: 'Cormorant Garamond', serif;
    }
    
    section {
        padding: 100px 0;
    }
    /* =========================
SCROLLBAR
========================= */
    
     ::-webkit-scrollbar {
        width: 10px;
    }
    
     ::-webkit-scrollbar-track {
        background: #111111;
    }
    
     ::-webkit-scrollbar-thumb {
        background: #C6A769;
        border-radius: 50px;
    }
    /* =========================
UTILITIES
========================= */
    
    .hover-grow {
        transition: .5s ease-in-out !important;
    }
    
    .hover-grow:hover {
        transform: scale(1.08);
    }
    
    .btn {
        border-radius: 50px !important;
        padding: 13px 34px !important;
        transition: .45s !important;
        font-weight: 500 !important;
        letter-spacing: 1px;
        border: none !important;
    }
    
    .btn1 {
        border-radius: 50px !important;
        padding: 3px 10px !important;
        transition: .45s !important;
        font-weight: 500 !important;
        letter-spacing: 1px;
        border: none !important;
    }
    
    .btn:hover {
        transform: translateY(-6px);
    }
    /* =========================
ANIMATION
========================= */
    
    .hiddenn {
        opacity: 0;
        transform: translateY(80px);
        filter: blur(5px);
        transition: all 1s;
    }
    
    .show {
        opacity: 1;
        transform: translateY(0);
        filter: blur(0);
    }
    /* =========================
HEADER
========================= */
    
    .header {
        transition: .5s ease;
        padding: 18px 0;
        background: transparent;
    }
    
    .header-scrolled {
        background-color: #090909;
        backdrop-filter: blur(12px);
        box-shadow: 0 10px 40px rgba(0, 0, 0, .45);
        transition: .5s ease;
    }
    
    .navbar-brand {
        font-size: 25px !important;
        color: #F5F1EA !important;
        letter-spacing: 2px;
        font-family: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
    }
    
    .nav-link {
        color: #F5F1EA !important;
        margin: 0 12px;
        position: relative;
        transition: .4s;
        font-weight: 400;
    }
    
    .nav-link::after {
        content: "";
        position: absolute;
        left: 0;
        bottom: -4px;
        width: 0%;
        height: 1px;
        background: #C6A769;
        transition: .4s;
    }
    
    .nav-link:hover {
        color: #C6A769 !important;
    }
    
    .nav-link:hover::after {
        width: 100%;
    }
    /* dropdown */
    
    .dropdown-menu {
        background: #1E1A17 !important;
        border: 1px solid rgba(198, 167, 105, .15) !important;
        border-radius: 20px !important;
        padding: 14px !important;
        box-shadow: 0 20px 45px rgba(0, 0, 0, .35);
    }
    
    .dropdown-item {
        color: #F5F1EA !important;
        border-radius: 14px;
        padding: 10px 14px !important;
        transition: .35s;
    }
    
    .dropdown-item:hover {
        background: #C6A769 !important;
        color: #111111 !important;
    }
    /* search */
    
    .nav-search {
        background: rgba(255, 255, 255, .08) !important;
        border: 1px solid rgba(255, 255, 255, .08) !important;
        color: white !important;
        border-radius: 50px !important;
        padding: 10px 20px !important;
    }
    
    .nav-search::placeholder {
        color: rgba(255, 255, 255, .55);
    }
    /* =========================
INTRO
========================= */
    
    .intro {
        width: 100%;
        min-height: 100vh;
        background: linear-gradient( to right, #000000, #2F2F2F, #BFBFBF, #ffffff), url('photoes/photo_2026-05-12_10-17-38.jpg');
        background-position: center;
        background-size: cover;
        display: flex;
        align-items: center;
    }
    
    .intro h3 {
        font-size: 4rem;
        color: #F5F1EA;
        line-height: .95;
    }
    
    .intro h5 {
        color: rgba(245, 241, 234, .75);
        font-size: 1.15rem;
        line-height: 2;
        letter-spacing: 2px;
    }
    
    .intro img {
        animation: float 5s ease-in-out infinite;
        filter: drop-shadow(0 25px 50px rgba(0, 0, 0, .55));
    }
    
    @keyframes float {
        0% {
            transform: translateY(0);
        }
        50% {
            transform: translateY(-22px);
        }
        100% {
            transform: translateY(0);
        }
    }
    /* =========================
ABOUT
========================= */
    
    .intro1 {
        background: #111111;
    }
    
    .content {
        background: rgba(30, 26, 23, .85);
        backdrop-filter: blur(18px);
        border: 1px solid rgba(198, 167, 105, .12);
        padding: 45px;
        border-radius: 35px;
        box-shadow: 0 20px 50px rgba(0, 0, 0, .45);
    }
    
    .content h3 {
        color: #F5F1EA;
    }
    
    .content h5 {
        color: #C6A769;
    }
    
    .content p {
        line-height: 2;
        color: rgba(245, 241, 234, .72);
    }
    /* =========================
CARDS
========================= */
    
    .card,
    .fragrance-card,
    .contact-box,
    .info-box {
        background: #1E1A17 !important;
        border: 1px solid rgba(198, 167, 105, .10) !important;
        border-radius: 30px !important;
        overflow: hidden;
        transition: .55s;
    }
    
    .card {
        box-shadow: 0 15px 40px rgba(0, 0, 0, .35);
    }
    
    .card:hover,
    .fragrance-card:hover {
        transform: translateY(-14px);
        box-shadow: 0 25px 60px rgba(0, 0, 0, .55);
        border-color: rgba(198, 167, 105, .35) !important;
    }
    
    .card img {
        transition: .6s;
    }
    
    .card:hover img {
        transform: scale(1.08);
    }
    
    .card-title {
        color: #F5F1EA;
    }
    
    .card-text {
        color: rgba(245, 241, 234, .68);
    }
    /* =========================
COUNTS
========================= */
    
    .counts .shadow {
        background: #1E1A17 !important;
        border-radius: 28px;
        border: 1px solid rgba(198, 167, 105, .10);
        transition: .45s;
    }
    
    .counts .shadow:hover {
        transform: translateY(-12px);
    }
    
    .counts i {
        font-size: 48px;
        color: #C6A769;
    }
    
    .counts span {
        color: #F5F1EA;
        font-size: 2rem;
    }
    
    .counts p {
        color: rgba(245, 241, 234, .7);
    }
    /* =========================
FEATURES
========================= */
    
    .features {
        background: #111111;
    }
    
    .features i {
        font-size: 42px;
        color: #C6A769;
    }
    
    .features h5 {
        color: #F5F1EA;
    }
    
    .features p {
        color: rgba(245, 241, 234, .65);
        line-height: 1.8;
    }
    /* =========================
PERFUME CARDS
========================= */
    
    .perfume-card-1,
    .perfume-card-2,
    .perfume-card-3 {
        transition: .5s;
    }
    
    .perfume-card-1 {
        border-bottom: 2px solid #C6A769 !important;
    }
    
    .perfume-card-2 {
        border-bottom: 2px solid #d4b483 !important;
    }
    
    .perfume-card-3 {
        border-bottom: 2px solid #a8864f !important;
    }
    
    .perfume-card-1:hover,
    .perfume-card-2:hover,
    .perfume-card-3:hover {
        background: #111111 !important;
        transform: translateY(-12px);
    }
    
    .perfume-card-1:hover h3,
    .perfume-card-1:hover p,
    .perfume-card-1:hover a,
    .perfume-card-1:hover i,
    .perfume-card-2:hover h3,
    .perfume-card-2:hover p,
    .perfume-card-2:hover a,
    .perfume-card-2:hover i,
    .perfume-card-3:hover h3,
    .perfume-card-3:hover p,
    .perfume-card-3:hover a,
    .perfume-card-3:hover i {
        color: #F5F1EA !important;
    }
    /* =========================
FRAGRANCE SECTION
========================= */
    
    .fragrance-section {
        background: #151515;
    }
    
    .fragrance-card {
        background: #1E1A17 !important;
        position: relative;
        overflow: visible;
    }
    
    .fragrance-card:hover {
        transform: scale(1.07) translateY(-12px);
        z-index: 999;
    }
    
    .fragrance-card img {
        height: 150px;
        object-fit: contain;
    }
    
    .fragrance-card p {
        color: rgba(245, 241, 234, .65);
        line-height: 1.9;
    }
    
    .fragrance-btn {
        border: 1px solid #C6A769 !important;
        color: #C6A769 !important;
        background: transparent !important;
        transition: .35s;
    }
    
    .fragrance-btn:hover {
        background: #C6A769 !important;
        color: #111111 !important;
        transform: scale(1.08);
    }
    /* =========================
NOTE TITLES
========================= */
    
    .note-title-1,
    .note-title-2,
    .note-title-3,
    .note-title-4 {
        color: #C6A769;
        font-weight: bold;
        letter-spacing: 1px;
    }
    /* =========================
CONTACT
========================= */
    
    .contact-box,
    .info-box {
        background: #1E1A17 !important;
    }
    
    .info-box:hover {
        transform: translateY(-10px);
    }
    
    .info-box i {
        color: #C6A769;
    }
    
    .info-box h5 {
        color: #F5F1EA;
    }
    
    .info-box p {
        color: rgba(245, 241, 234, .65);
    }
    /* inputs */
    
    .custom-input {
        background: rgba(255, 255, 255, .04) !important;
        border: 1px solid rgba(255, 255, 255, .08) !important;
        color: #F5F1EA !important;
        padding: 14px !important;
        border-radius: 16px !important;
        transition: .35s;
        box-shadow: none !important;
    }
    
    .custom-input::placeholder {
        color: rgba(255, 255, 255, .4);
    }
    
    .custom-input:focus {
        border-color: #C6A769 !important;
        box-shadow: 0 0 0 3px rgba(198, 167, 105, .18) !important;
    }
    /* send btn */
    
    .send-btn {
        background: #C6A769 !important;
        color: #111111 !important;
        font-weight: 600 !important;
    }
    
    .send-btn:hover {
        background: #e0bf7f !important;
    }
    /* =========================
FOOTER
========================= */
    
    .footer {
        background: #0f0f0f;
        border-top: 1px solid rgba(198, 167, 105, .08);
    }
    
    .footer-logo {
        font-weight: 700;
        color: #F5F1EA;
    }
    
    .footer-text {
        color: rgba(245, 241, 234, .62);
        line-height: 2;
    }
    
    .footer-title {
        color: #F5F1EA;
        font-weight: 600;
        margin-bottom: 24px;
        position: relative;
        padding-bottom: 12px;
    }
    
    .footer-title::after {
        content: "";
        width: 60px;
        height: 2px;
        background: #C6A769;
        position: absolute;
        bottom: 0;
        left: 0;
    }
    
    .footer-links {
        padding: 0;
        list-style: none;
    }
    
    .footer-links li {
        margin-bottom: 14px;
    }
    
    .footer-links a {
        text-decoration: none;
        color: rgba(245, 241, 234, .62);
        transition: .35s;
    }
    
    .footer-links a:hover {
        color: #C6A769;
        padding-left: 6px;
    }
    
    .social-icons a {
        width: 40px;
        height: 40px;
        background: rgba(255, 255, 255, .05);
        display: inline-flex;
        align-items: center;
        justify-content: center;
        border-radius: 50%;
        margin-right: 8px;
        color: #C6A769;
        transition: .4s;
    }
    
    .social-icons a:hover {
        background: #C6A769;
        color: #111111;
        transform: translateY(-6px);
    }
    
    .footer-bottom {
        background: #090909;
        padding: 24px 0;
        margin-top: 50px;
    }
    
    .footer-bottom p {
        color: rgba(245, 241, 234, .55);
    }
    /* =========================
RESPONSIVE
========================= */
    
    @media(max-width:991px) {
        .header {
            background: rgba(17, 17, 17, .95);
        }
        .intro {
            text-align: center;
            padding: 150px 0 80px;
        }
        .intro h3 {
            font-size: 3.2rem;
        }
        .intro1 {
            padding-top: 40px;
        }
        .content {
            padding: 30px;
        }
        .fragrance-card:hover {
            transform: translateY(-10px);
        }
    }
    
    @media(max-width:768px) {
        section {
            padding: 70px 0;
        }
        .intro h3 {
            font-size: 2.5rem;
        }
        .navbar-brand {
            font-size: 1.5rem !important;
        }
    }