/*
Theme Name: Turabi Fragrance
Theme URI: https://turabifragrance.com
Author: Turabi
Author URI: https://turabifragrance.com
Description: A premium, glassmorphism-inspired WordPress theme for luxury perfumes.
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Tags: custom-background, custom-logo, custom-menu, featured-images, full-width-template, theme-options, translation-ready
Text Domain: turabi-fragrance
*/

:root {
    --primary-purple: #9b59b6;
    --light-purple: #f3e5f5;
    --dark-purple: #47216d;
    --accent-gold: #d4af37;
    --text-color: #000000;
    /* Dark black as requested */
    --white: #ffffff;
    --glass-bg: rgba(255, 255, 255, 0.1);
    --glass-border: rgba(255, 255, 255, 0.2);
}

html,
body {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    overflow-x: hidden;
    width: 100%;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    cursor: none;
}

body {
    font-family: 'Poppins', sans-serif;
    /* Poppins for descriptions */
    background-color: var(--light-purple);
    color: var(--text-color);
    overflow-x: hidden;
    line-height: 1.6;
}

h1,
h2,
h3,
h4 {
    font-family: 'Playfair Display', serif;
    /* Playfair for headings */
    font-weight: 700;
}

p {
    font-size: 1.1rem;
    /* Balanced size */
}

/* Custom Cursor */
#custom-cursor {
    width: 20px;
    height: 20px;
    background: var(--primary-purple);
    border: 2px solid var(--accent-gold);
    border-radius: 50%;
    position: fixed;
    pointer-events: none;
    z-index: 9999;
    transition: transform 0.1s ease;
}

.particle {
    position: fixed;
    pointer-events: none;
    z-index: 9998;
    font-size: 20px;
    animation: fall linear forwards;
}

@keyframes fall {
    to {
        transform: translateY(100vh) rotate(360deg);
        opacity: 0;
    }
}

/* Standardized Buttons */
.button-center-wrapper {
    display: flex;
    justify-content: center;
    width: 100%;
    margin-top: 20px;
}

.cta-button,
.secondary-button,
.add-to-cart,
.newsletter-form button {
    width: 200px;
    height: 50px;
    font-size: 1rem;
    font-weight: 600;
    font-family: 'Poppins', sans-serif;
    border-radius: 8px;
    cursor: none;
    transition: 0.4s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

/* Gold Hero Button with Purple Running Light Border */
.cta-button {
    position: relative;
    background: transparent !important;
    border: none !important;
    overflow: hidden;
    z-index: 1;
    color: var(--white);
}

/* The solid gold background (inset to show border animation) */
.cta-button::before {
    content: '';
    position: absolute;
    inset: 3px;
    /* Size of the border effect */
    background: var(--accent-gold);
    border-radius: 6px;
    z-index: -1;
    transition: 0.3s;
}

/* The rotating white light (behind the gold background) */
.cta-button::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: conic-gradient(transparent, var(--white), transparent);
    animation: rotate 4s linear infinite;
    z-index: -2;
    opacity: 1;
}

.cta-button:hover::before {
    background: #47216d;
}

.cta-button:hover::after {
    background: conic-gradient(transparent, var(--accent-gold), transparent);
}

/* Redefining add-to-cart separately */
.add-to-cart {
    background: #562b7a;
    color: var(--white);
    border: 2px solid #562b7a;
}

.add-to-cart::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: conic-gradient(transparent, var(--accent-gold), transparent);
    animation: rotate 3s linear infinite;
    z-index: -1;
    opacity: 0;
    transition: 0.3s;
}

.add-to-cart:hover::after {
    opacity: 1;
}

/* Gold Buttons (secondary-button, newsletter button) - Purple Running Light */
.secondary-button,
.newsletter-form button {
    background: var(--accent-gold);
    color: var(--white);
    border: 2px solid var(--accent-gold);
}

.secondary-button::after,
.newsletter-form button::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: conic-gradient(transparent, var(--dark-purple), transparent);
    animation: rotate 3s linear infinite;
    z-index: -1;
    opacity: 0;
    transition: 0.3s;
}

.secondary-button:hover::after,
.newsletter-form button:hover::after {
    opacity: 1;
}

/* Inner button look to keep color solid */
.cta-button,
.secondary-button,
.add-to-cart,
.newsletter-form button {
    box-shadow: inset 0 0 0 2px rgba(0, 0, 0, 0.1);
}

.cta-button:hover,
.secondary-button:hover,
.add-to-cart:hover,
.newsletter-form button:hover {
    transform: scale(1.05);
    border-color: transparent;
}

@keyframes rotate {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

/* Glassmorphism Utility */
.glass {
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    border-radius: 15px;
}

/* Section Common */
section {
    padding: 100px 5%;
    min-height: 80vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-header h2 {
    font-size: 3rem;
    color: var(--dark-purple);
    position: relative;
}

.section-header h2::after {
    content: '';
    width: 60px;
    height: 3px;
    background: var(--accent-gold);
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
}

/* 1. Hero Section */
.hero-section {
    height: 120vh;
    padding-top: 180px;
    /* Pushing content down */
    background: linear-gradient(rgba(74, 20, 140, 0.4), rgba(74, 20, 140, 0.4));
    background-size: cover;
    background-position: center 95%;
    /* Pushed image even lower to avoid overlap */
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    /* Positioning from top with padding */
    text-align: center;
    color: var(--white);
}

.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    padding: 20px 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
    transition: 0.3s;
    background: rgba(74, 20, 140, 0.2);
    backdrop-filter: blur(5px);
}

.nav-icons {
    display: flex;
    gap: 20px;
    align-items: center;
}

.nav-icons span {
    cursor: none;
    font-size: 1.4rem;
    transition: transform 0.3s ease;
}

.nav-icons span:hover {
    transform: scale(1.2);
}

#cart-count {
    position: absolute;
    top: -8px;
    right: -10px;
    background: var(--accent-gold);
    color: var(--dark-purple);
    font-size: 0.75rem;
    font-weight: 700;
    padding: 2px 6px;
    border-radius: 50%;
    border: 1px solid var(--white);
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

.toast {
    background: var(--dark-purple);
    color: var(--white);
    padding: 15px 25px;
    border-radius: 12px;
    margin-top: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    border-left: 5px solid var(--accent-gold);
    animation: slideInRight 0.5s ease forwards;
    display: flex;
    align-items: center;
    gap: 15px;
}

@keyframes slideInRight {
    from {
        transform: translateX(100%);
        opacity: 0;
    }

    to {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes fadeOutDown {
    from {
        transform: translateY(0);
        opacity: 1;
    }

    to {
        transform: translateY(20px);
        opacity: 0;
    }
}

.toast.removing {
    animation: fadeOutDown 0.5s ease forwards;
}

.logo {
    display: flex;
    align-items: center;
    gap: 15px;
}

.logo img {
    max-height: 60px;
    /* Balanced medium size */
    width: auto;
}

.logo-text {
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: 2px;
    color: var(--white);
    font-family: 'Playfair Display', serif;
    white-space: nowrap;
}

.nav-links {
    display: flex;
    list-style: none;
}

.nav-links li {
    margin: 0 20px;
}

.nav-links a {
    text-decoration: none;
    color: var(--white);
    font-weight: 400;
    transition: 0.3s;
}

.nav-links a:hover {
    color: var(--accent-gold);
}

.hero-content {
    background: rgba(74, 20, 140, 0.05);
    /* Translucent purple */
    backdrop-filter: blur(2px);
    -webkit-backdrop-filter: blur(2px);
    padding: 40px 60px 10px 60px;
    border-radius: 30px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    max-width: fit-content;
    margin: 0 auto 15px auto;
}

.hero-content h1 {
    font-size: 3.2rem;
    letter-spacing: 12px;
    margin-bottom: 25px;
}

.hero-content p {
    margin-bottom: 30px;
    max-width: fit-content;
    margin-left: auto;
    margin-right: auto;
}

.button-center-wrapper {
    display: flex;
    justify-content: center;
    width: 100%;
    margin-top: 20px;
}

/* 2. Featured Slider */
.slider-container {
    width: 100%;
    max-width: 1000px;
    margin: 0 auto;
    position: relative;
    overflow: hidden;
    border-radius: 20px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
    background-color: #0f4c4c;
    /* Matching the dark teal from the featured image */
}

.slide img {
    width: 100%;
    height: 480px;
    /* Reduced height to avoid massive empty space on taller screens */
    object-fit: contain;
    /* Changed to contain to show both the perfume and its box without cropping */
    display: block;
}

.slide-info {
    position: absolute;
    bottom: 40px;
    left: 40px;
    color: var(--white);
    background: rgba(74, 14, 110, 0.3);
    /* Subtle brand-colored glass effect */
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    padding: 25px 35px;
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.slide-info h3 {
    font-size: 2rem;
    margin-bottom: 5px;
    color: var(--accent-gold);
}

.slide-info p {
    font-size: 1.1rem;
    opacity: 0.9;
}

/* 3. About Section */
.about-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.about-text h2 {
    font-size: 3rem;
    margin-bottom: 20px;
    color: var(--dark-purple);
}

.about-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    text-align: justify;
    color: #444;
    /* Slightly softer than pure black */
}

/* Redefining Secondary Button with Pretty Color & Border Effect */
.secondary-button {
    position: relative;
    background: transparent !important;
    border: none !important;
    overflow: hidden;
    z-index: 1;
    color: var(--white) !important;
    margin-top: 30px;
    /* Added spacing from text */
}

.secondary-button::before {
    content: '';
    position: absolute;
    inset: 3px;
    background: linear-gradient(135deg, var(--dark-purple), var(--primary-purple));
    border-radius: 6px;
    z-index: -1;
    transition: 0.3s;
}

.secondary-button::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: conic-gradient(transparent, var(--accent-gold), transparent);
    animation: rotate 4s linear infinite;
    z-index: -2;
    opacity: 1;
}

.secondary-button:hover::before {
    background: var(--accent-gold);
}

.secondary-button:hover {
    color: var(--dark-purple) !important;
}

.about-image img {
    width: 100%;
    max-height: 450px;
    /* Limit height for better screen fit */
    object-fit: contain;
    /* Ensure no cropping */
    filter: drop-shadow(0 15px 30px rgba(74, 20, 140, 0.2));
    transition: 0.5s ease;
}

.about-image img:hover {
    transform: scale(1.02);
}

/* 4. Categories */
.category-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.category-card {
    height: 400px;
    background-size: cover;
    background-position: center;
    border-radius: 15px;
    position: relative;
    overflow: hidden;
    cursor: pointer;
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.2);
    /* Tighter, cleaner shadow */
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.category-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.25);
    /* Focused elevation on hover */
}

.card-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: flex-end;
    justify-content: flex-start;
    padding: 30px;
    background: linear-gradient(transparent, rgba(255, 255, 255, 0.2));
    transition: 0.4s;
}

.card-overlay h3 {
    color: var(--dark-purple);
    background: rgba(255, 255, 255, 0.7);
    padding: 10px 20px;
    border-radius: 8px;
    backdrop-filter: blur(5px);
    font-size: 1.5rem;
    font-weight: 700;
}

.category-card:hover .card-overlay {
    background: linear-gradient(transparent, rgba(74, 20, 140, 0.2));
}

.category-card:hover .card-overlay h3 {
    background: var(--accent-gold);
    color: var(--dark-purple);
}

/* 5. Best Sellers */
.product-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.product-card {
    text-align: center;
    padding: 20px;
    background: var(--white);
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: 0.3s;
    position: relative;
}

.sale-tag {
    position: absolute;
    top: 25px;
    right: 15px;
    background: #562b7a;
    color: var(--white);
    padding: 2px 8px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
    z-index: 2;
}

.price-container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
}

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

.sale-price {
    font-weight: 700;
    color: #111;
}

.product-card:hover {
    transform: translateY(-10px);
}

.product-image-container {
    width: 180px;
    height: 180px;
    background-color: rgba(212, 175, 55, 0.15);
    /* Soft golden background matching the theme */
    border-radius: 50%;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.product-card img {
    width: 80%;
    height: auto;
    object-fit: contain;
}

.add-to-cart {
    margin-top: 15px;
    padding: 10px 20px;
    background: #562b7a;
    color: var(--white);
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

.craft-section {
    background-size: cover;
    background-origin: content-box;
    background-position: center bottom;
    /* Moves the image up relative to viewport */
    background-attachment: fixed;
    height: 70vh;
    /* Slightly more height for the image to show */
    display: flex;
    align-items: center;
    justify-content: center;
}

.craft-content {
    padding: 60px;
    max-width: 800px;
    text-align: center;
    background: rgba(255, 255, 255, 0.7);
    /* More opaque glass */
    backdrop-filter: blur(15px);
    border-radius: 20px;
    border: 1px solid var(--accent-gold);
    /* Golden border for elegance */
}

.craft-content h2 {
    color: var(--dark-purple);
    font-size: 3rem;
    margin-bottom: 15px;
}

.craft-content p {
    color: #222;
    font-size: 1.2rem;
    line-height: 1.8;
}

/* 7. Seasonal Picks */
/* 7. Seasonal Picks - Side-by-Side */
.seasonal-section {
    background: linear-gradient(rgba(155, 89, 182, 0.05), rgba(74, 20, 140, 0.1));
}

.seasonal-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.4);
    /* Translucent background */
    backdrop-filter: blur(15px);
    /* Glass effect */
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 40px;
    padding: 0;
    overflow: hidden;
    box-shadow: 0 25px 60px rgba(74, 20, 140, 0.1);
}

.seasonal-text {
    flex: 1;
    padding: 80px;
    text-align: left;
}

.seasonal-text h2 {
    font-size: 3rem;
    color: var(--dark-purple);
    margin-bottom: 25px;
    letter-spacing: 5px;
}

.seasonal-text p {
    font-size: 1.1rem;
    color: #444;
    /* Slightly darker for readability on translucent bg */
    margin-bottom: 40px;
    line-height: 1.8;
}

/* Specific Purple Running Light for Seasonal Section Button */
.seasonal-section .cta-button::after {
    background: conic-gradient(transparent, var(--dark-purple), transparent);
}

.button-left-wrapper {
    display: flex;
    justify-content: flex-start;
}

.seasonal-image {
    flex: 1;
    display: flex;
    justify-content: center;
    background: #fdfdfd;
    padding: 50px;
}

.seasonal-image img {
    max-width: 400px;
    height: auto;
    filter: drop-shadow(0 0 25px rgba(212, 175, 55, 0.4));
    transition: 0.5s ease;
}

.seasonal-image img:hover {
    transform: scale(1.05) rotate(5deg);
    filter: drop-shadow(0 0 35px rgba(212, 175, 55, 0.6));
}

/* Small Sale Marquee (Max 1 inch height) */
.marquee-section-small {
    background-color: #562b7a;
    color: var(--white);
    padding: 8px 0;
    overflow: hidden;
    white-space: nowrap;
    display: flex;
    align-items: center;
    width: 100%;
}

.marquee-content-small {
    display: flex;
    animation: marquee-small 25s linear infinite;
}

.marquee-content-small span {
    font-size: 0.9rem;
    font-weight: 600;
    font-family: 'Poppins', sans-serif;
    letter-spacing: 1px;
    margin-right: 40px;
}

@keyframes marquee-small {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

/* 8. Testimonials - Grid Layout */
.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.testimonial-card {
    padding: 30px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 350px;
    text-align: left;
    transition: 0.4s ease;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.testimonial-card:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.15);
    border-color: var(--accent-gold);
}

.quote-mark {
    font-size: 5rem;
    font-family: 'Playfair Display', serif;
    color: var(--accent-gold);
    line-height: 1;
    margin-bottom: -20px;
    opacity: 0.5;
}

.testimonial-card p {
    font-style: normal;
    /* No more italics */
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    margin-bottom: 30px;
    color: #333;
    line-height: 1.6;
}

.section-subtitle {
    margin-top: 10px;
    font-size: 1.1rem;
    color: #666;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.testimonial-card {
    padding: 30px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 320px;
    text-align: left;
    transition: 0.4s ease;
    background: rgba(255, 255, 255, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.6);
}

.testimonial-card:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.8);
    border-color: var(--accent-gold);
}

@media (max-width: 1200px) {
    .testimonial-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .testimonial-grid {
        grid-template-columns: 1fr;
    }
}

/* 9. Newsletter */
.newsletter-section {
    text-align: center;
}

.newsletter-content {
    padding: 50px 30px;
    background: #D4BB9C;
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid var(--accent-gold);
    border-radius: 30px;
    max-width: 800px;
    width: 95%;
    margin: 0 auto;
    color: var(--dark-purple);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 20px;
}

.newsletter-image {
    display: flex;
    justify-content: center;
    width: 100%;
}

.newsletter-image img {
    max-width: 200px;
    height: auto;
    filter: drop-shadow(0 15px 25px rgba(0, 0, 0, 0.15));
}

.newsletter-text {
    width: 100%;
    text-align: center;
}

.newsletter-content h2 {
    color: var(--dark-purple);
}

.newsletter-content p {
    color: #111;
    /* Dark black */
}

.newsletter-form {
    margin-top: 30px;
    display: flex;
    justify-content: center;
    gap: 10px;
}

.newsletter-form input {
    padding: 15px;
    width: 300px;
    border: 1px solid rgba(74, 20, 140, 0.2);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.5);
    outline: none;
    color: #111;
}

.newsletter-form input::placeholder {
    color: #555;
    /* Lighter black for placeholder text */
}

.newsletter-form button {
    position: relative;
    background: transparent !important;
    border: none !important;
    overflow: hidden;
    z-index: 1;
    color: var(--white) !important;
    border-radius: 8px;
    padding: 15px 30px;
    font-weight: 600;
}

.newsletter-form button::before {
    content: '';
    position: absolute;
    inset: 3px;
    background: linear-gradient(135deg, var(--dark-purple), var(--primary-purple));
    border-radius: 6px;
    z-index: -1;
    transition: 0.3s;
}

.newsletter-form button::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: conic-gradient(transparent, var(--white), transparent);
    animation: rotate 4s linear infinite;
    z-index: -2;
    opacity: 1;
}

.newsletter-form button:hover::before {
    background: var(--accent-gold);
}

.newsletter-form button:hover::after {
    background: conic-gradient(transparent, var(--dark-purple), transparent);
}

/* 10. Footer */
.footer {
    background: #562b7a;
    color: var(--white);
    padding: 80px 5% 20px;
    position: relative;
    overflow: hidden;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    max-width: 1400px;
    /* Increase width slightly */
    margin: 0 auto 50px auto;
    justify-items: center;
    /* Center each column contents */
    padding-left: 15%;
    /* Move the whole container to the right */
}

.footer-logo {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 15px;
    margin-bottom: 15px;
}

.footer-logo img {
    max-height: 50px;
    width: auto;
}

.footer-logo .logo-text {
    font-size: 1.2rem;
    font-weight: 700;
    letter-spacing: 2px;
    color: var(--white);
    font-family: 'Playfair Display', serif;
    white-space: nowrap;
}

.footer-about,
.footer-links,
.footer-social {
    width: 100%;
    max-width: 320px;
    text-align: left;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.footer-about {
    transform: translateX(-5px);
}

.footer-links {
    transform: translateX(5px);
}

.footer-about p {
    text-align: left;
    letter-spacing: 0.5px;
    margin: 0;
}

.footer-links h4,
.footer-social h4 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    text-align: left;
}

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

.footer-links ul li {
    margin-bottom: 10px;
}

.footer-links ul li a {
    color: var(--white);
    text-decoration: none;
    transition: 0.3s;
}

.footer-links ul li a:hover {
    color: var(--accent-gold);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 20px;
    text-align: center;
    font-size: 0.8rem;
    color: var(--accent-gold);
}

.social-icons {
    display: flex;
    gap: 15px;
}

.social-icons a {
    color: var(--accent-gold);
    font-size: 1.5rem;
    transition: 0.3s;
    text-decoration: none;
}

.social-icons a:hover {
    color: var(--white);
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

/* Responsive */
@media (max-width: 768px) {
    section {
        padding: 60px 5% !important;
        min-height: auto !important;
    }

    .section-header h2 {
        font-size: 1.8rem !important;
        letter-spacing: 2px !important;
    }

    .hero-section {
        height: 100vh !important;
        padding-top: 100px !important;
        background-position: center bottom !important;
    }

    .hero-content {
        padding: 25px 15px !important;
        width: 90% !important;
        margin: 0 auto !important;
    }

    .hero-content h1 {
        font-size: 1.8rem !important;
        letter-spacing: 4px !important;
        line-height: 1.2 !important;
    }

    .hero-content p {
        font-size: 0.95rem !important;
        max-width: 100% !important;
    }

    .about-container,
    .category-grid,
    .product-grid,
    .seasonal-container {
        grid-template-columns: 1fr !important;
        flex-direction: column !important;
        gap: 30px !important;
    }

    .about-text h2,
    .about-container h2,
    .seasonal-text h2,
    .craft-content h2 {
        font-size: 1.8rem !important;
        letter-spacing: 2px !important;
    }

    .about-image img {
        max-width: 80% !important;
        margin: 0 auto !important;
        display: block !important;
    }

    .seasonal-text {
        padding: 40px 20px !important;
        text-align: center !important;
    }

    .button-left-wrapper {
        justify-content: center !important;
    }

    .seasonal-image {
        padding: 20px !important;
    }

    .seasonal-image img {
        max-width: 250px !important;
    }

    .craft-section {
        height: 50vh !important;
    }

    .craft-content {
        padding: 30px !important;
    }

    .craft-content p {
        font-size: 1rem !important;
    }

    .nav-links {
        display: none !important;
    }

    .logo img {
        max-height: 45px !important;
    }

    .logo-text {
        font-size: 0.8rem !important;
    }

    .footer-centered {
        padding: 60px 5% 40px !important;
    }

    .centered-desc {
        font-size: 0.9rem !important;
        width: 100% !important;
        padding: 0 10px !important;
        margin-left: auto !important;
        margin-right: auto !important;
    }

    .category-card {
        height: 250px !important;
    }

    .slide img {
        height: 250px !important;
        /* Reduced significantly for mobile to fit landscape image without huge empty container gaps */
        object-fit: contain !important;
        background: #0f4c4c;
        /* Matching background */
    }

    .slide-info {
        display: none !important;
    }

    .about-image img {
        max-height: 350px !important;
    }

    .testimonial-card {
        min-height: auto !important;
        padding: 20px !important;
    }

    .testimonial-grid {
        gap: 20px !important;
    }

    .product-image-container {
        width: 140px !important;
        height: 140px !important;
    }

    .newsletter-content {
        padding: 40px 20px !important;
    }

    .newsletter-form {
        flex-direction: column !important;
        width: 100% !important;
    }

    .newsletter-form input {
        width: 100% !important;
    }

    .newsletter-form button {
        width: 100% !important;
    }
}

/* 11. Stylish Alternative Footer */
.footer-stylish {
    position: relative;
    background: #47216d;
    /* Dark purple base */
    color: var(--white);
    padding: 100px 5% 30px;
    overflow: hidden;
}

.footer-top-wave {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 40px;
    background: url('data:image/svg+xml;utf8,<svg viewBox="0 0 1200 120" xmlns="http://www.w3.org/2000/svg" preserveAspectRatio="none"><path d="M0,0V46.29c47.79,22.2,103.59,32.17,158,28,70.36-5.37,136.33-33.31,206.8-37.5C438.64,32.43,512.34,53.67,583,72.05c69.27,18,138.3,24.88,209.4,13.08,36.15-6,69.85-17.84,104.45-29.34C989.49,25,1113-14.29,1200,52.47V0Z" opacity=".25" fill="%23d4af37"/><path d="M0,0V15.81C13,36.92,27.64,56.86,47.69,72.05,99.41,111.27,165,111,224.58,91.58c31.15-10.15,60.09-26.07,89.67-39.8,40.92-19,84.73-46,130.83-49.67,36.26-2.85,70.9,9.42,98.6,31.56,31.77,25.39,62.32,62,103.63,73,40.44,10.79,81.35-6.69,119.13-24.28s75.16-39,116.92-43.05c59.73-5.85,113.28,22.88,168.9,38.84,30.2,8.66,59,6.17,87.09-7.5,22.43-10.89,48-26.93,60.65-49.24V0Z" opacity=".5" fill="%23562b7a"/><path d="M0,0V5.63C149.93,59,314.09,71.32,475.83,42.57c43-7.64,84.23-20.12,127.61-26.46,59-8.63,112.48,12.24,165.56,35.4C827.93,77.22,886,95.24,951.2,90c86.53-7,172.46-45.71,248.8-84.81V0Z" fill="%23f3e5f5"/></svg>') no-repeat center top;
    background-size: cover;
}

.footer-grid-stylish {
    display: grid;
    grid-template-columns: 2fr 1.5fr 1.5fr;
    gap: 60px;
    max-width: 1200px;
    margin: 0 auto 50px auto;
}

.footer-brand-section {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    transform: translateX(-10%);
}

.footer-logo-stylish {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.footer-logo-stylish img {
    max-height: 60px;
    border: 2px solid var(--accent-gold);
    border-radius: 50%;
    padding: 5px;
    background: rgba(255, 255, 255, 0.1);
}

.logo-text-group {
    display: flex;
    flex-direction: column;
}

.logo-text-main {
    font-size: 1.6rem;
    font-weight: 700;
    letter-spacing: 4px;
    font-family: 'Playfair Display', serif;
    color: var(--accent-gold);
    line-height: 1;
}

.logo-text-sub {
    font-size: 0.9rem;
    letter-spacing: 2px;
    color: var(--white);
    font-weight: 300;
}

.brand-desc {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 30px;
    max-width: 350px;
}

.social-icons-stylish {
    display: flex;
    gap: 15px;
}

.social-circle {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(212, 175, 55, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.2rem;
    transition: 0.4s ease;
    text-decoration: none;
}

.social-circle:hover {
    background: var(--accent-gold);
    color: var(--dark-purple);
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(212, 175, 55, 0.2);
}

.footer-links-multi {
    display: flex;
    justify-content: space-between;
    gap: 30px;
}

.link-group h4,
.footer-contact-section h4 {
    color: var(--accent-gold);
    font-size: 1.3rem;
    margin-bottom: 25px;
    font-family: 'Playfair Display', serif;
    position: relative;
    display: inline-block;
}

.link-group h4::after,
.footer-contact-section h4::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 30px;
    height: 2px;
    background: var(--accent-gold);
    transition: 0.3s;
}

.link-group:hover h4::after {
    width: 100%;
}

.link-group ul {
    list-style: none;
}

.link-group ul li {
    margin-bottom: 12px;
}

.link-group ul li a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: 0.3s;
    display: flex;
    align-items: center;
}

.link-group ul li a::before {
    content: '→';
    margin-right: 8px;
    color: var(--accent-gold);
    opacity: 0;
    transform: translateX(-10px);
    transition: 0.3s;
}

.link-group ul li a:hover {
    color: var(--white);
    padding-left: 5px;
}

.link-group ul li a:hover::before {
    opacity: 1;
    transform: translateX(0);
}

.contact-info {
    color: rgba(255, 255, 255, 0.8);
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.contact-info i {
    color: var(--accent-gold);
    font-size: 1.2rem;
    width: 20px;
    text-align: center;
}

.footer-bottom-stylish {
    border-top: 1px solid rgba(212, 175, 55, 0.2);
    padding-top: 25px;
}

.bottom-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
}

.bottom-links {
    display: flex;
    align-items: center;
    gap: 15px;
}

.bottom-links a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    transition: 0.3s;
}

.bottom-links a:hover {
    color: var(--accent-gold);
}

.divider {
    color: var(--accent-gold);
}

@media (max-width: 992px) {
    .footer-grid-stylish {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .footer-links-multi {
        justify-content: flex-start;
        gap: 60px;
    }

    .bottom-content {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
}

/* 12. Centered Footer Layout */
.footer-centered {
    background: #47216d;
    color: var(--white);
    padding: 60px 5% 20px;
    font-family: 'Poppins', sans-serif;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.footer-centered-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 800px;
    margin: 0 auto 40px auto;
    gap: 15px;
}

.centered-logo {
    height: 60px;
    width: auto;
    border-radius: 5px;
    margin-bottom: 5px;
}

.centered-brand-name {
    font-size: 1.2rem;
    letter-spacing: 2px;
    color: var(--white);
    font-family: 'Playfair Display', serif;
    margin-bottom: 5px;
}

.centered-desc {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    margin-bottom: 20px;
}

.centered-social-links {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.centered-social-links h4 {
    font-size: 1.2rem;
    color: var(--white);
    font-family: 'Playfair Display', serif;
}

.centered-social-links .social-icons {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.centered-social-links .social-icons a {
    color: var(--white);
    font-size: 1.5rem;
    transition: 0.3s;
    text-decoration: none;
}

.centered-social-links .social-icons a:hover {
    color: var(--accent-gold);
}

.footer-centered-bottom {
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding-top: 20px;
}

.footer-centered-bottom p {
    color: var(--accent-gold);
    font-size: 0.9rem;
    letter-spacing: 1px;
}

/* Flower Accumulation Styles */
.footer-pile-container {
    position: absolute;
    bottom: 0;
    width: 25%;
    height: 150px;
    pointer-events: none;
    z-index: 1;
}

.footer-pile-container.left {
    left: 0;
}

.footer-pile-container.right {
    right: 0;
}

.settled-flower {
    position: absolute;
    opacity: 0.4;
    transition: opacity 1s ease-in;
    pointer-events: none;
    filter: blur(0.5px);
    z-index: 1;
}

@media (max-width: 768px) {
    .footer-pile-container {
        width: 15%;
        height: 100px;
    }
}