/* ===== VARIABLES ===== */
:root {
    --primary-color: #000;
    --secondary-color: #d4af37;
    --text-color: #333;
    --light-bg: #f5f5f5;
    --white: #fff;
    --border-color: #e0e0e0;
    --shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    --transition: all 0.3s ease;
}

/* ===== RESET ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    color: var(--text-color);
    background-color: var(--white);
    line-height: 1.6;
}

/* ===== TYPOGRAPHY ===== */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    margin-bottom: 1rem;
}

h1 {
    font-size: 3rem;
}

h2 {
    font-size: 2.5rem;
}

h3 {
    font-size: 1.5rem;
}

p {
    margin-bottom: 1rem;
    line-height: 1.8;
}

a {
    text-decoration: none;
    color: var(--secondary-color);
    transition: var(--transition);
}

a:hover {
    color: var(--primary-color);
}

/* ===== CONTAINER ===== */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* ===== NAVBAR ===== */
.navbar {
    position: sticky;
    top: 0;
    background-color: var(--white);
    border-bottom: 1px solid var(--border-color);
    padding: 1rem 0;
    z-index: 1000;
    box-shadow: var(--shadow);
}

.navbar-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary-color);
    letter-spacing: 2px;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2rem;
    flex: 1;
    justify-content: center;
}

.nav-links a {
    color: var(--text-color);
    font-weight: 500;
    position: relative;
    transition: var(--transition);
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--secondary-color);
    transition: var(--transition);
}

.nav-links a:hover::after,
.nav-links a.active::after {
    width: 100%;
}

.social-icons {
    display: flex;
    gap: 1rem;
}

.social-icons .icon {
    display: inline-block;
    width: 32px;
    height: 32px;
    background-color: var(--light-bg);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.social-icons .icon:hover {
    background-color: var(--secondary-color);
}

.social-icons img {
    width: 16px;
    height: 16px;
}

/* ===== HERO SECTION ===== */
.hero {
    position: relative;
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--white);
    overflow: hidden;
}

.hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.7), rgba(212, 175, 55, 0.4));
    z-index: 1;
}

.hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    object-fit: cover;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 700px;
    animation: fadeInUp 1s ease;
}

.hero-title {
    font-size: 4rem;
    margin-bottom: 1rem;
    color: var(--secondary-color);
}

.hero-subtitle {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    color: var(--white);
    font-family: 'Poppins', sans-serif;
    font-weight: 300;
}

/* ===== BUTTONS ===== */
.cta-button {
    display: inline-block;
    padding: 1rem 2.5rem;
    background-color: var(--secondary-color);
    color: var(--primary-color);
    border: 2px solid var(--secondary-color);
    border-radius: 50px;
    font-weight: 600;
    transition: var(--transition);
    cursor: pointer;
    text-decoration: none;
}

.cta-button:hover {
    background-color: transparent;
    color: var(--secondary-color);
}

.cta-button.secondary {
    background-color: transparent;
    color: var(--secondary-color);
    border-color: var(--secondary-color);
}

.cta-button.secondary:hover {
    background-color: var(--secondary-color);
    color: var(--primary-color);
}

.order-btn {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    background-color: var(--secondary-color);
    color: var(--primary-color);
    border-radius: 25px;
    font-weight: 600;
    font-size: 0.9rem;
    transition: var(--transition);
}

.order-btn:hover {
    background-color: var(--primary-color);
    color: var(--secondary-color);
}

/* ===== BRAND TICKER ===== */
.brand-ticker-container {
    width: 100%;
    background-color: var(--primary-color);
    color: var(--secondary-color);
    padding: 12px 0;
    overflow: hidden;
    white-space: nowrap;
    border-top: 1px solid var(--secondary-color);
    border-bottom: 2px solid var(--secondary-color);
    position: relative;
    z-index: 10;
}

.brand-ticker {
    display: inline-block;
    white-space: nowrap;
    animation: ticker 15s linear infinite;
    font-family: 'Playfair Display', serif;
    font-size: 1.2rem;
    font-weight: 600;
    letter-spacing: 2px;
}

.brand-ticker span {
    display: inline-block;
}

.ticker-dot {
    color: var(--white);
    padding: 0 30px;
    font-size: 1rem;
    vertical-align: middle;
}

@keyframes ticker {
    0% {
        transform: translate3d(0, 0, 0);
    }
    100% {
        transform: translate3d(-50%, 0, 0);
    }
}


/* ===== FEATURED PRODUCTS ===== */
.featured-products {
    padding: 4rem 0;
    background-color: var(--white);
}

.section-title {
    text-align: center;
    margin-bottom: 3rem;
    font-size: 2.5rem;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.product-card {
    background-color: var(--white);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    overflow: hidden;
    transition: var(--transition);
    box-shadow: var(--shadow);
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.product-image {
    width: 100%;
    height: 300px;
    overflow: hidden;
    background-color: var(--light-bg);
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.product-card:hover .product-image img {
    transform: scale(1.05);
}

.product-info {
    padding: 1.5rem;
}

.product-info h3 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: var(--primary-color);
}

.product-info p {
    color: #666;
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.product-info .price {
    font-size: 1.3rem;
    color: var(--secondary-color);
    font-weight: 600;
}

/* ===== BANNER SECTION ===== */
.banner {
    background: linear-gradient(135deg, var(--primary-color), rgba(212, 175, 55, 0.3));
    color: var(--white);
    padding: 3rem 2rem;
    text-align: center;
}

.banner h2 {
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.banner p {
    font-size: 1.1rem;
}

/* ===== PAGE HEADER ===== */
.page-header {
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.8), rgba(212, 175, 55, 0.2));
    color: var(--white);
    padding: 4rem 2rem;
    text-align: center;
    margin-top: 60px;
}

.page-header h1 {
    font-size: 3rem;
    margin-bottom: 0.5rem;
}

.page-header p {
    font-size: 1.2rem;
    font-weight: 300;
}

/* ===== PRODUCTS SECTION ===== */
.products-section {
    padding: 4rem 0;
    background-color: var(--white);
}

/* ===== ABOUT SECTION ===== */
.about-section {
    padding: 4rem 0;
    background-color: var(--white);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.about-text h2 {
    margin-bottom: 1.5rem;
}

.about-text p {
    color: #666;
    margin-bottom: 1.5rem;
}

.about-image img {
    width: 100%;
    border-radius: 8px;
    box-shadow: var(--shadow);
}

/* ===== WHY CHOOSE ===== */
.why-choose {
    padding: 4rem 0;
    background-color: var(--light-bg);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.feature-card {
    background-color: var(--white);
    padding: 2rem;
    border-radius: 8px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.feature-icon {
    font-size: 2.5rem;
    color: var(--secondary-color);
    margin-bottom: 1rem;
}

.feature-card h3 {
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.feature-card p {
    color: #666;
    font-size: 0.95rem;
}

/* ===== VALUES SECTION ===== */
.values-section {
    padding: 4rem 0;
    background-color: var(--white);
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.value-item {
    padding: 2rem;
    border-left: 4px solid var(--secondary-color);
    transition: var(--transition);
}

.value-item:hover {
    background-color: var(--light-bg);
    padding-left: 2.5rem;
}

.value-item h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.value-item p {
    color: #666;
}

/* ===== CTA SECTION ===== */
.cta-section {
    background: linear-gradient(135deg, var(--primary-color), rgba(212, 175, 55, 0.3));
    color: var(--white);
    padding: 4rem 2rem;
    text-align: center;
}

.cta-section h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.cta-section p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* ===== CONTACT SECTION ===== */
.contact-section {
    padding: 4rem 0;
    background-color: var(--white);
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
}

.contact-form {
    background-color: var(--light-bg);
    padding: 2rem;
    border-radius: 8px;
}

.contact-form h2 {
    margin-bottom: 2rem;
}

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

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: var(--primary-color);
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid var(--border-color);
    border-radius: 4px;
    font-family: 'Poppins', sans-serif;
    font-size: 0.95rem;
    transition: var(--transition);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--secondary-color);
    box-shadow: 0 0 5px rgba(212, 175, 55, 0.2);
}

.submit-btn {
    padding: 1rem;
    background-color: var(--secondary-color);
    color: var(--primary-color);
    border: none;
    border-radius: 4px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: var(--transition);
}

.submit-btn:hover {
    background-color: var(--primary-color);
    color: var(--secondary-color);
}

.form-message {
    margin-top: 1rem;
    padding: 1rem;
    border-radius: 4px;
    text-align: center;
    display: none;
}

.form-message.success {
    background-color: #d4edda;
    color: #155724;
    display: block;
}

.form-message.error {
    background-color: #f8d7da;
    color: #721c24;
    display: block;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-info h2 {
    margin-bottom: 1rem;
}

.info-item {
    padding: 1.5rem;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    transition: var(--transition);
}

.info-item:hover {
    border-color: var(--secondary-color);
    box-shadow: var(--shadow);
}

.info-item h3 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.info-item p {
    color: #666;
    font-size: 0.95rem;
}

.phone-number {
    font-size: 1.3rem;
    color: var(--secondary-color);
    font-weight: 600;
}

.contact-btn {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    background-color: var(--secondary-color);
    color: var(--primary-color);
    border-radius: 4px;
    font-weight: 600;
    margin-top: 1rem;
    transition: var(--transition);
}

.contact-btn:hover {
    background-color: var(--primary-color);
    color: var(--secondary-color);
}

.whatsapp-btn {
    background-color: #25d366;
    color: var(--white);
}

.whatsapp-btn:hover {
    background-color: #1e9c54;
}

.social-links-contact {
    display: flex;
    gap: 1rem;
}

.social-btn {
    flex: 1;
    padding: 0.75rem;
    background-color: var(--light-bg);
    color: var(--primary-color);
    text-align: center;
    border-radius: 4px;
    font-weight: 500;
    transition: var(--transition);
}

.social-btn:hover {
    background-color: var(--secondary-color);
    color: var(--primary-color);
}

/* ===== FAQ SECTION ===== */
.faq-section {
    padding: 4rem 0;
    background-color: var(--light-bg);
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.faq-item {
    background-color: var(--white);
    padding: 2rem;
    border-radius: 8px;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.faq-item:hover {
    transform: translateY(-5px);
}

.faq-item h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.faq-item p {
    color: #666;
    font-size: 0.95rem;
}

/* ===== FOOTER ===== */
.footer {
    background-color: var(--primary-color);
    color: var(--white);
    padding: 3rem 0 1rem;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h3,
.footer-section h4 {
    color: var(--secondary-color);
    margin-bottom: 1rem;
}

.footer-section p {
    color: #ccc;
    font-size: 0.95rem;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section a {
    color: #ccc;
    transition: var(--transition);
}

.footer-section a:hover {
    color: var(--secondary-color);
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    display: inline-block;
    padding: 0.5rem 1rem;
    background-color: rgba(212, 175, 55, 0.1);
    border-radius: 4px;
    color: var(--secondary-color);
    transition: var(--transition);
}

.social-links a:hover {
    background-color: var(--secondary-color);
    color: var(--primary-color);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(212, 175, 55, 0.2);
    color: #999;
}

/* ===== FLOATING WHATSAPP BUTTON ===== */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background-color: #25d366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
    animation: pulse 2s infinite;
    z-index: 999;
    transition: var(--transition);
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.whatsapp-icon {
    color: var(--white);
}

/* ===== ANIMATIONS ===== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes pulse {
    0% {
        transform: scale(1);
        box-shadow: 0 5px 20px rgba(37, 211, 102, 0.4);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 0 5px 25px rgba(37, 211, 102, 0.6);
    }
    100% {
        transform: scale(1);
        box-shadow: 0 5px 20px rgba(37, 211, 102, 0.4);
    }
}

/* ===== SINGLE PRODUCT PAGE STYLES ===== */
.breadcrumbs-container {
    background-color: var(--light-bg);
    padding: 1rem 0;
    margin-top: 60px; /* Offset for fixed navbar */
    border-bottom: 1px solid var(--border-color);
}

.breadcrumbs {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    list-style: none;
    display: flex;
    gap: 10px;
    font-size: 0.9rem;
}

.breadcrumbs li {
    display: flex;
    align-items: center;
    color: #666;
}

.breadcrumbs li::after {
    content: '/';
    margin-left: 10px;
    color: #999;
}

.breadcrumbs li:last-child {
    color: var(--primary-color);
    font-weight: 500;
}

.breadcrumbs li:last-child::after {
    display: none;
}

.single-product-section {
    padding: 3rem 2rem;
}

.product-grid-layout {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    align-items: start;
}

@media (min-width: 992px) {
    .product-grid-layout {
        grid-template-columns: 0.8fr 1.2fr;
    }
}

.product-gallery {
    position: sticky;
    top: 100px;
}

.main-image-container {
    background-color: var(--light-bg);
    border-radius: 12px;
    padding: 2rem;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 380px;
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow);
}

.main-image-container img {
    max-height: 100%;
    max-width: 100%;
    object-fit: contain;
    filter: drop-shadow(0 15px 25px rgba(0,0,0,0.15));
    transition: transform 0.3s ease;
}

.main-image-container:hover img {
    transform: scale(1.05);
}

.product-purchase-details {
    display: flex;
    flex-direction: column;
}

.product-badge {
    background: var(--secondary-color);
    color: var(--primary-color);
    padding: 6px 15px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 700;
    display: inline-block;
    width: fit-content;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.product-main-title {
    font-size: 2.5rem;
    color: var(--primary-color);
    line-height: 1.2;
    margin-bottom: 0.5rem;
}

.product-sub-title {
    font-size: 1.2rem;
    color: #666;
    font-family: 'Playfair Display', serif;
    font-style: italic;
    margin-bottom: 2rem;
}

.product-price-box {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 1rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid var(--border-color);
}

.current-price {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
}

.original-price {
    font-size: 1.4rem;
    text-decoration: line-through;
    color: #999;
}

.discount-badge {
    background: #ffebee;
    color: #d32f2f;
    padding: 5px 10px;
    border-radius: 4px;
    font-weight: 600;
    font-size: 0.9rem;
    border: 1px solid rgba(211, 47, 47, 0.2);
}

.delivery-status {
    color: #2e7d32;
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
}

.product-highlight-box {
    background: linear-gradient(to right, #fbf7ec, var(--white));
    border-left: 4px solid var(--secondary-color);
    padding: 1.5rem;
    margin-bottom: 2rem;
    border-radius: 0 8px 8px 0;
}

.product-highlight-box p {
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: var(--primary-color);
    font-size: 1.05rem;
}

.product-highlight-box p:last-child {
    margin-bottom: 0;
}

.urgency-alert {
    background: #fff3cd;
    border: 1px solid #ffeeba;
    border-radius: 8px;
    padding: 1.2rem;
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 2rem;
}

.urgency-icon {
    font-size: 1.8rem;
}

.urgency-text strong {
    display: block;
    color: #856404;
    margin-bottom: 0.3rem;
    font-family: 'Poppins', sans-serif;
}

.urgency-text span {
    color: #856404;
    font-size: 0.95rem;
}

.action-buttons {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.btn {
    flex: 1;
    min-width: 250px;
    text-align: center;
    padding: 1.2rem;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1.1rem;
    letter-spacing: 1px;
    transition: var(--transition);
    cursor: pointer;
    text-transform: uppercase;
}

.buy-now {
    background: var(--primary-color);
    color: var(--secondary-color);
    border: 2px solid var(--primary-color);
}

.buy-now:hover {
    background: transparent;
    color: var(--primary-color);
}

.whatsapp-order {
    background: #25D366;
    color: var(--white);
    border: 2px solid #25D366;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.whatsapp-order:hover {
    background: #128C7E;
    border-color: #128C7E;
}

.guarantee-box-inline {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    padding-top: 2rem;
    border-top: 1px solid var(--border-color);
}

.g-item {
    font-weight: 500;
    color: #555;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
}

/* Detailed Info Sections */
.product-detailed-info {
    padding: 4rem 2rem;
    background-color: var(--light-bg);
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
}

.info-card {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: var(--shadow);
    border-top: 4px solid var(--secondary-color);
}

.info-card h3 {
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    padding-bottom: 0.8rem;
    border-bottom: 1px solid var(--border-color);
    font-size: 1.4rem;
}

/* Notes Pyramid layout */
.notes-pyramid {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 2rem;
}

.note-level {
    padding: 1rem;
    border-radius: 8px;
    background: #fdfbf7;
    border-left: 3px solid var(--secondary-color);
}

.note-level strong {
    color: var(--primary-color);
    font-family: 'Playfair Display', serif;
    display: block;
    margin-bottom: 0.3rem;
}

.note-level p {
    margin: 0;
    color: #555;
    font-size: 0.95rem;
}

.fragrance-family {
    background: var(--primary-color);
    color: var(--secondary-color);
    padding: 1.2rem;
    border-radius: 8px;
    text-align: center;
    font-weight: 500;
}

.detail-list, .tick-list {
    list-style: none;
    padding: 0;
}

.detail-list li {
    padding: 0.8rem 0;
    border-bottom: 1px solid var(--light-bg);
    display: flex;
    flex-wrap: wrap;
}

.detail-list li .label {
    font-weight: 600;
    color: var(--primary-color);
    width: 120px;
}

.tick-list li {
    padding: 0.6rem 0;
    position: relative;
    padding-left: 28px;
    color: #555;
}

.tick-list li::before {
    content: '✔';
    color: var(--secondary-color);
    position: absolute;
    left: 0;
    font-weight: bold;
    font-size: 1.1rem;
}

.tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 1rem;
    margin-bottom: 1.5rem;
}

.tags span {
    background: rgba(212, 175, 55, 0.15);
    color: var(--primary-color);
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 500;
}

.tags.outline span {
    background: transparent;
    border: 1px solid var(--primary-color);
}

.italic-conclusion {
    font-style: italic;
    color: var(--secondary-color);
    font-weight: 600;
    margin-top: 1rem;
}

/* Reviews section on product page */
.reviews-section {
    padding: 4rem 2rem;
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.customer-review {
    background: var(--light-bg);
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid var(--border-color);
}

.customer-review .stars {
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.customer-review p {
    font-style: italic;
    font-size: 1.05rem;
    margin-bottom: 1rem;
    color: #444;
}

.verified {
    font-size: 0.85rem;
    color: #2e7d32;
    font-weight: 600;
}

/* Related products */
.related-products-section {
    padding: 4rem 2rem 6rem;
    background-color: var(--light-bg);
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 768px) {
    h1 {
        font-size: 2rem;
    }

    h2 {
        font-size: 1.8rem;
    }

    h3 {
        font-size: 1.2rem;
    }

    .navbar-container {
        flex-wrap: wrap;
        gap: 1rem;
    }

    .logo {
        flex: 1;
    }

    .nav-links {
        flex-basis: 100%;
        gap: 1rem;
        order: 3;
        justify-content: space-around;
    }

    .social-icons {
        order: 2;
    }

    .hero-title {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1.2rem;
    }

    .hero {
        min-height: 50vh;
    }

    .products-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 1.5rem;
    }

    .contact-wrapper {
        grid-template-columns: 1fr;
    }

    .about-content {
        grid-template-columns: 1fr;
    }

    .cta-buttons {
        flex-direction: column;
    }

    .cta-button {
        width: 100%;
    }

    .footer-container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .whatsapp-float {
        bottom: 20px;
        right: 20px;
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }

    .page-header {
        margin-top: 0;
    }
}

@media (max-width: 480px) {
    h1 {
        font-size: 1.5rem;
    }

    h2 {
        font-size: 1.3rem;
    }

    .container {
        padding: 0 1rem;
    }

    .navbar-container {
        padding: 0 1rem;
    }

    .logo {
        font-size: 1.3rem;
    }

    .nav-links {
        gap: 0.5rem;
    }

    .nav-links a {
        font-size: 0.85rem;
    }

    .hero {
        min-height: 40vh;
    }

    .hero-title {
        font-size: 1.5rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .cta-button {
        padding: 0.75rem 1.5rem;
        font-size: 0.9rem;
    }

    .products-grid {
        grid-template-columns: 1fr;
    }

    .product-image {
        height: 250px;
    }

    .section-title {
        font-size: 1.8rem;
    }

    .form-group input,
    .form-group textarea {
        font-size: 16px;
    }

    .whatsapp-float {
        bottom: 15px;
        right: 15px;
        width: 45px;
        height: 45px;
        font-size: 1rem;
    }

    .footer-section h3,
    .footer-section h4 {
        font-size: 1.1rem;
    }

    .page-header h1 {
        font-size: 2rem;
    }

    .page-header p {
        font-size: 1rem;
    }
}

/* ===== LUXURY FILTER BUTTONS ===== */
.filter-container {
    text-align: center;
    margin-bottom: 3.5rem;
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 10px 30px;
    background: transparent;
    color: var(--secondary-color);
    border: 1px solid var(--secondary-color);
    border-radius: 40px;
    font-family: 'Playfair Display', serif;
    font-size: 1.1rem;
    font-weight: 500;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(232, 185, 35, 0.05); /* subtle gold shadow */
    text-transform: uppercase;
}

.filter-btn:hover,
.filter-btn.active {
    background-color: var(--secondary-color);
    color: var(--primary-color);
    box-shadow: 0 6px 20px rgba(232, 185, 35, 0.3);
    transform: translateY(-2px);
}

/* Hide products explicitly when filtering */
.product-card.hidden {
    display: none;
}
