/* =========================
   RESET
========================= */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}


html {
    scroll-behavior: smooth;
}


body {
    font-family: Arial, sans-serif;
    background: #ffffff;
    color: #050505;
}


/* =========================
   HEADER
========================= */

header {
    height: 80px;
    background: #050505;
    border-bottom: 1px solid #b89545;

    display: flex;
    align-items: center;
    justify-content: space-between;

    padding: 0 7%;

    position: sticky;
    top: 0;
       z-index: 1000;
}

.logo {
    color: #d4af37;
    font-size: 25px;
    font-weight: bold;
    letter-spacing: 3px;
}
.logo img {
    height: 50px;
    width: 50px;
    border-radius: 50%;
    object-fit: cover;
}
.footer-logo-img {
    height: 60px;
    width: 60px;
    border-radius: 50%;
    object-fit: cover;
}

.logo span {
    color: #050505;
    font-size: 13px;
    letter-spacing: 3px;
}


nav {
    display: flex;
    gap: 30px;
}


nav a {
    color: #050505;
    text-decoration: none;
    font-size: 14px;
    transition: 0.3s;
}


nav a:hover {
    color: #d4af37;
}


/* =========================
   HERO
========================= */

.hero {
    display: flex;
    align-items: center;
    padding: 40px 7%;
    background-size: cover;
    background-position: center 75%;
    background-repeat: no-repeat;
}


.hero-overlay {
    position: absolute;

    top: 0;
    left: 0;

    width: 100%;
    height: 100%;

    
}


.hero-content {
    position: relative;
    z-index: 2;

    max-width: 650px;
}


.small-title {
    color: #d4af37;

    letter-spacing: 4px;

    font-size: 13px;

    margin-bottom: 20px;
}


.hero h1 {
    font-size: 65px;
    font-family: 'Playfair Display', serif;
    font-weight: 300;
    letter-spacing: 3px;
    line-height: 1.05;
    margin-bottom: 25px;
    color: #ffffff;
}

.hero h1 span,
h2 span {
    color: #d4af37;
}


.hero-description {
    color: #ddd;

    line-height: 1.7;

    margin-bottom: 35px;

    max-width: 550px;
}


/* =========================
   GOLD BUTTON
========================= */

.gold-button {
    display: inline-block;
    background: #d4af37;
    color: #ffffff;
    padding: 20px 50px;
    text-decoration: none;
    font-weight: bold;
    font-size: 18px;
    transition: 0.3s;
}

.whatsapp-button {
    background: #25D366;
}




.gold-button:hover {
    background: white;
}


/* =========================
   PRODUCTS SECTION
========================= */

.products-section {
    padding: 100px 7%;

    text-align: center;

    background: #ffffff;
}


h2 {
    font-size: 42px;
    font-weight: 300;
    font-family: 'Playfair Display', serif;
    margin-bottom: 35px;
}
.about h2 {
    color: #ffffff;
}
/* =========================
   FILTERS
========================= */

.filters {
    display: flex;

    justify-content: center;

    gap: 12px;

    margin-bottom: 50px;
}


.filters button {
    padding: 11px 25px;

    background: transparent;

    color: #050505;

    border: 1px solid #555;

    cursor: pointer;

    transition: 0.3s;
}


.filters button:hover {
    background: #d4af37;

    color: #ffffff;

    border-color: #d4af37;
}


/* =========================
   PRODUCT GRID
========================= */

.products {
    display: grid;

    grid-template-columns: repeat(3, 1fr);

    gap: 30px;

    text-align: left;
}


/* =========================
   PRODUCT CARD
========================= */

.product-card {
    background: #ffffff;

    border: 1px solid #292929;

    overflow: hidden;

    transition: 0.3s;
}



.product-card:hover {
    transform: translateY(-8px);

    border-color: #d4af37;
}


/* =========================
   PRODUCT IMAGE
========================= */

.product-image {
    height: 320px;
    background:
        linear-gradient(
            145deg,
            #191919,
            \#ffffff
        );

    display: flex;

    align-items: center;

    justify-content: center;

    overflow: hidden;
}


.product-image img {
    width: 100%;

    height: 100%;

    object-fit: contain;

    display: block;

    transition: 0.4s;
}



.product-card:hover .product-image img {
    transform: scale(1.05);
}


/* =========================
   PLACEHOLDER
========================= */

.perfume-placeholder {
    width: 150px;

    height: 220px;

    border: 2px solid #d4af37;

    display: flex;

    align-items: center;

    justify-content: center;

    text-align: center;

    color: #d4af37;

    font-size: 15px;

    letter-spacing: 2px;

    padding: 15px;
}


/* =========================
   PRODUCT INFO
========================= */

.product-info {
    padding: 25px;
}


.category {
    color: #d4af37;

    font-size: 11px;

    letter-spacing: 3px;

    margin-bottom: 10px;
}


.product-info h3 {
    font-size: 24px;

    margin-bottom: 12px;
}


.product-description {
    color: #000000;
    font-style: italic;
    line-height: 1.6;

    min-height: 50px;
}


/* =========================
   PRICE
========================= */

.price {
       color: #3a3a3c;

    font-size: 22px;

    font-weight: bold;

    margin: 20px 0;
}
.old-price {
    text-decoration: line-through;
    color: #999;
    font-size: 16px;
    margin-right: 8px;
}

.discount-badge {
    background: #d4af37;
    color: #ffffff;
    font-size: 12px;
    padding: 3px 8px;
    border-radius: 4px;
    margin-right: 8px;
    font-weight: bold;
}

.new-price {
    color: #d4af37;
    font-weight: bold;
}

/* =========================
   ORDER BUTTON
========================= */

.product-info button {
    width: 100%;

    padding: 13px;

      background: #3a3a3c;

    color: #ffffff;

    border: none;

    font-weight: bold;

    cursor: pointer;

    transition: 0.3s;
}


.product-info button:hover {
    background: white;
}


/* =========================
   ABOUT
========================= */

.about {
    padding: 100px 15%;
    text-align: center;
    background: #0d0d0d;
}






.about p,
.contact p {
    color: #999;

    line-height: 1.8;

    max-width: 700px;

    margin: auto;
}


/* =========================
   CONTACT
========================= */

.contact {
    background: \#ffffff;
    position: relative;
    overflow: hidden;
    min-height: 700px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 60px 15%;
}


   .contact-video-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 1;
    z-index: 1;
}

.contact-video-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
 transform: scale(1);
    z-index: 1;
    opacity: 0.85;
}.contact button {
    margin-top: 30px;

    background: #d4af37;

    color: #ffffff;

    border: none;

    font-weight: bold;

    cursor: pointer;

    transition: 0.3s;
}


@media (max-width: 800px) {
    header {
        padding: 0 5%;
    }

    nav {
        display: none;
    }

    .hero {
        min-height: 600px;
        padding: 60px 7%;
    }

    .contact-video-bg {
        background-position: center;
    }

    .hero h1 {
        font-size: 45px;
    }

    .products {
        grid-template-columns: 1fr;
    }

    .products-section {
        padding: 80px 6%;
    }

    h2 {
        font-size: 35px;
    }

    .about,
    .contact {
        padding: 80px 8%;
    }
}



#welcome-screen h1 {
    color: #ffffff;
    font-size: 45px;
    letter-spacing: 4px;
    text-align: center;
    font-family: 'Cinzel', serif;
    text-shadow: 0px 2px 10px rgba(0,0,0,0.7);
}

#welcome-screen.hide {
    opacity: 0;
    pointer-events: none;
}footer {
    text-align: center;
    padding: 40px 5%;
}

footer p {
    margin: 15px 0;
    color: #666;
}

.social-links {
    margin-top: 15px;
}

.social-links a {
    color: #d4af37;
    text-decoration: none;
}.header-actions {
    display: flex;
    align-items: center;
    gap: 15px;
}

.search-icon {
    background: none;
    border: none;
    font-size: 20px;
    cursor: pointer;
    color: #ffffff;
}
.instagram-icon {
    font-size: 20px;
    text-decoration: none;
    color: #ffffff;
}
.contact-btn {
    background: #d4af37;
    color: #050505;
    padding: 8px 20px;
    border-radius: 20px;
    text-decoration: none;
    font-weight: bold;
    font-size: 14px;
}

.contact-btn:hover {
    background: #ffffff;
}
.contact button.whatsapp-button {
    background: #25D366;
}
.hero {
    position: relative;
    overflow: hidden;
}

.hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
}
/* ===== WELCOME INTRO ===== */
body {
    overflow-x: hidden;
}

#welcome-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100%;
    background: #050505;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    overflow: hidden;
    transition: opacity 0.6s ease;
}

#welcome-screen.hide {
    opacity: 0;
    pointer-events: none;
}

.welcome-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.4;
}

.welcome-text {
    position: relative;
    z-index: 2;
    width: 100%;
    text-align: center;
    color: #ffffff;
    font-family: 'Italiana', serif;
    font-weight: 300;
}

.welcome-text h1 {
    font-size: 38px;
    letter-spacing: 3px;
    font-weight: 300;
    white-space: nowrap;
}

.welcome-text .w3,
.welcome-text .w4 {
    color: #d4af37;
}

.welcome-text span {
    opacity: 0;
    display: inline-block;
    animation: fadeWord 0.8s ease forwards;
}

.w1 { animation-delay: 0.2s; }
.w2 { animation-delay: 0.7s; }
.w3 { animation-delay: 1.2s; }
.w4 { animation-delay: 1.7s; }

@keyframes fadeWord {
    from {
        opacity: 0;
        transform: translateY(15px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
@media (max-width: 900px) {
    .welcome-text h1 {
        font-size: 14px;
        letter-spacing: 1px;
    }

    .hero h1 {
        font-size: 32px;
        line-height: 1.2;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 22px;
    }

    .small-title {
        font-size: 11px;
    }

    .hero-description {
        font-size: 14px;
    }

    .gold-button {
        padding: 14px 30px;
        font-size: 15px;
    }
}.contact {
  position: relative;
  overflow: hidden;
}

.contact-bg-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.contact .small-title,
.contact h2,
.contact p,
.contact button {
  position: relative;
  z-index: 1;
}.reviews {
  padding: 80px 20px;
  text-align: center;
  background-color: #fafafa;
}

.reviews-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 25px;
  margin-top: 40px;
}

.review-card {
  background-color: #fff;
  border: 1px solid #eee;
  border-radius: 10px;
  padding: 30px 25px;
  width: 300px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
  text-align: left;
}

.stars {
  color: #d4af37;
  font-size: 20px;
  margin-bottom: 10px;
}

.review-text {
  font-size: 15px;
  color: #555;
  line-height: 1.6;
  margin-bottom: 15px;
}

.review-name {
  font-weight: 600;
  color: #222;
}.review-submit-btn {
  display: inline-block;
  margin-top: 30px;
  padding: 14px 30px;
  background-color: #d4af37;
  color: #fff;
  text-decoration: none;
  border-radius: 5px;
  font-weight: 600;
  letter-spacing: 1px;
}

.review-submit-btn:hover {
  background-color: #b8952f;
}.no-reviews-text {
  font-size: 16px;
  color: #777;
  margin-top: 20px;
}
.product-slider {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-slider img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.image-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 5;

    width: 38px;
    height: 38px;

    border: none;
    border-radius: 50%;

    background: rgba(0, 0, 0, 0.65);
    color: white;

    font-size: 20px;
    cursor: pointer;
}

.image-arrow.left {
    left: 10px;
}

.image-arrow.right {
    right: 10px;
}

.image-arrow:hover {
    background: rgba(0, 0, 0, 0.85);
}
.opening-banner {
    background: #d4af37;
    color: #ffffff;
    text-align: center;
    padding: 10px 15px;
    font-size: 14px;
    font-weight: bold;
    letter-spacing: 1px;
}
/* =========================
   CART ICON
========================= */

.cart-icon {
    position: relative;
    font-size: 20px;
    cursor: pointer;
    color: #ffffff;
}

.cart-count {
    position: absolute;
    top: -8px;
    right: -10px;
    background: #d4af37;
    color: #ffffff;
    font-size: 11px;
    font-weight: bold;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    display: none;
    align-items: center;
    justify-content: center;
}


/* =========================
   QUANTITY SELECTOR (CARD)
========================= */

.quantity-selector {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 15px;
}

.quantity-selector button {
    width: 30px;
    height: 30px;
    border: 1px solid #292929;
    background: #ffffff;
    color: #050505;
    cursor: pointer;
    font-weight: bold;
}

.add-to-cart-btn {
    width: 100%;
    padding: 13px;
    background: #3a3a3c;
    color: #ffffff;
    border: none;
    font-weight: bold;
    cursor: pointer;
    transition: 0.3s;
}

.add-to-cart-btn:hover {
    background: #d4af37;
}


/* =========================
   CART SIDEBAR
========================= */

.cart-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
    z-index: 1998;
    display: none;
}

.cart-overlay.open {
    display: block;
}

.cart-sidebar {
    position: fixed;
    top: 0;
    right: -400px;
    width: 350px;
    max-width: 90%;
    height: 100%;
    background: #ffffff;
    z-index: 1999;
    padding: 25px;
    overflow-y: auto;
    transition: right 0.4s ease;
    box-shadow: -3px 0 15px rgba(0,0,0,0.2);
}

.cart-sidebar.open {
    right: 0;
}

.cart-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #eee;
    padding-bottom: 15px;
    margin-bottom: 15px;
}

.close-cart {
    font-size: 28px;
    cursor: pointer;
    line-height: 1;
}

.cart-empty-msg {
    color: #999;
    text-align: center;
    margin-top: 40px;
}

.cart-item {
    display: flex;
    gap: 12px;
    border-bottom: 1px solid #eee;
    padding: 15px 0;
}

.cart-item img {
    width: 60px;
    height: 60px;
    object-fit: cover;
}

.cart-item-info h4 {
    font-size: 15px;
    margin-bottom: 5px;
}

.cart-item-info p {
    font-size: 13px;
    color: #666;
    margin-bottom: 8px;
}

.cart-item-qty {
    display: flex;
    align-items: center;
    gap: 8px;
}

.cart-item-qty button {
    width: 24px;
    height: 24px;
    border: 1px solid #ccc;
    background: #fff;
    cursor: pointer;
}

.remove-btn {
    background: none;
    border: none;
    color: #c0392b;
    font-size: 12px;
    cursor: pointer;
    width: auto !important;
    margin-left: 10px;
}

.cart-total {
    margin-top: 20px;
    border-top: 1px solid #eee;
    padding-top: 15px;
}

.cart-total p {
    font-size: 14px;
    color: #555;
    margin-bottom: 5px;
}

.cart-total h3 {
    font-size: 20px;
    margin-top: 10px;
}

.checkout-btn {
    width: 100%;
    padding: 15px;
    background: #3a3a3c;
    color: #ffffff;
    border: none;
    font-weight: bold;
    cursor: pointer;
    margin-top: 20px;
    transition: 0.3s;
}

.checkout-btn:hover {
    background: #d4af37;
}
/* =========================
   CHECKOUT FORM PANEL
========================= */

.checkout-form-panel {
    position: fixed;
    top: 0;
    right: -400px;
    width: 380px;
    max-width: 90%;
    height: 100%;
    background: #ffffff;
    z-index: 1999;
    padding: 25px;
    overflow-y: auto;
    transition: right 0.4s ease;
    box-shadow: -3px 0 15px rgba(0,0,0,0.2);
}

.checkout-form-panel.open {
    right: 0;
}

.checkout-summary {
    background: #f8f8f8;
    padding: 15px;
    margin-bottom: 20px;
    font-size: 14px;
}

.checkout-summary h3 {
    margin-top: 10px;
    font-size: 18px;
}

.checkout-form-panel form {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.checkout-form-panel input {
    padding: 12px;
    border: 1px solid #ccc;
    font-size: 14px;
    font-family: Arial, sans-serif;
}

.checkout-form-panel input:focus {
    outline: none;
    border-color: #d4af37;
}
.payment-note {
    font-size: 13px;
    color: #666;
    margin-top: 10px;
}

.payment-warning {
    font-size: 13px;
    color: #c0392b;
    font-weight: bold;
    margin-top: 8px;
    background: #fdecea;
    padding: 8px;
    border-radius: 4px;
}