scintillafragrance

asdgasdfgsdfbadfgasdfgasdfvg

/* ================================
   SCINTILLA FRAGRANCE
   Premium Perfume Store Styling
================================ */

:root {
    --sf-black: #0b0b0b;
    --sf-dark: #151515;
    --sf-gold: #c9a45c;
    --sf-light-gold: #e4c985;
    --sf-white: #ffffff;
    --sf-gray: #b7b7b7;
}

/* Body */
body {
    background: #0b0b0b;
    color: #ffffff;
    font-family: "Poppins", sans-serif;
}

/* Headings */
h1, h2, h3, h4, h5, h6 {
    font-family: "Playfair Display", serif;
    color: #ffffff;
}

/* Main headings */
.sf-title {
    font-family: "Playfair Display", serif;
    font-size: 48px;
    font-weight: 600;
    letter-spacing: 1px;
    color: #ffffff;
}

.sf-gold {
    color: #c9a45c;
}

/* Buttons */
.sf-button,
button,
.button,
.woocommerce a.button,
.woocommerce button.button,
.woocommerce input.button {
    background: linear-gradient(
        135deg,
        #c9a45c,
        #e4c985
    ) !important;

    color: #080808 !important;
    border: none !important;
    border-radius: 2px !important;
    padding: 13px 28px !important;
    font-weight: 600 !important;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
}

.sf-button:hover,
button:hover,
.button:hover {
    background: #ffffff !important;
    color: #000000 !important;
    transform: translateY(-2px);
}

/* Product cards */
.woocommerce ul.products li.product {
    background: #121212;
    border: 1px solid rgba(201,164,92,0.15);
    padding: 15px;
    transition: all 0.35s ease;
}

.woocommerce ul.products li.product:hover {
    transform: translateY(-7px);
    border-color: rgba(201,164,92,0.6);
    box-shadow: 0 15px 40px rgba(0,0,0,0.5);
}

/* Product title */
.woocommerce-loop-product__title {
    color: #ffffff !important;
    font-family: "Playfair Display", serif;
}

/* Product price */
.woocommerce-Price-amount {
    color: #c9a45c !important;
    font-weight: 600;
}

/* Sale price */
.woocommerce ul.products li.product .price del {
    color: #777777 !important;
}

.woocommerce ul.products li.product .price ins {
    color: #e4c985 !important;
}

/* Sale badge */
.onsale {
    background: #c9a45c !important;
    color: #000000 !important;
    font-weight: 700;
}

/* Navigation */
.main-nav a {
    color: #ffffff;
    transition: color 0.3s ease;
}

.main-nav a:hover {
    color: #c9a45c;
}

/* Section */
.sf-section {
    padding: 80px 20px;
    background: #0b0b0b;
}

/* Luxury divider */
.sf-divider {
    width: 70px;
    height: 2px;
    background: #c9a45c;
    margin: 20px auto;
}

/* Hero section */
.sf-hero {
    min-height: 650px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;

    background:
        linear-gradient(
            rgba(0,0,0,0.55),
            rgba(0,0,0,0.75)
        ),
        url("YOUR-HERO-IMAGE-URL-HERE");

    background-size: cover;
    background-position: center;
}

/* Hero title */
.sf-hero h1 {
    font-size: clamp(45px, 7vw, 90px);
    margin-bottom: 15px;
}

/* Hero subtitle */
.sf-hero p {
    color: #dddddd;
    font-size: 18px;
    max-width: 650px;
    margin: 0 auto 30px;
}

/* Category cards */
.sf-category {
    position: relative;
    overflow: hidden;
    background: #151515;
    border: 1px solid rgba(201,164,92,0.2);
}

.sf-category img {
    width: 100%;
    display: block;
    transition: transform 0.5s ease;
}

.sf-category:hover img {
    transform: scale(1.06);
}

.sf-category-content {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 30px 20px;
    background: linear-gradient(
        transparent,
        rgba(0,0,0,0.9)
    );
}

.sf-category-content h3 {
    color: #ffffff;
    margin: 0 0 10px;
}

.sf-category-content a {
    color: #c9a45c;
    text-decoration: none;
}

/* Newsletter */
.sf-newsletter {
    text-align: center;
    background: #151515;
    padding: 70px 20px;
    border-top: 1px solid rgba(201,164,92,0.2);
    border-bottom: 1px solid rgba(201,164,92,0.2);
}

.sf-newsletter input {
    background: #0b0b0b;
    border: 1px solid #444;
    color: #ffffff;
    padding: 14px 18px;
}

/* Mobile */
@media(max-width: 768px) {

    .sf-title {
        font-size: 34px;
    }

    .sf-hero {
        min-height: 550px;
    }

    .sf-hero h1 {
        font-size: 48px;
    }

    .sf-section {
        padding: 55px 15px;
    }
}