:root {
    --primary: #5D4037;
    --secondary: #8B4513;
    --accent: #D4AF37;
    --light: #F5E9D2;
    --dark: #3E2723;
    --gold: #D4AF37;
    --gold-light: #FFD700;
    --white: #FFFFFF;
    --shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    --transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: #FFF8F0;
    color: #333;
    overflow-x: hidden;
    font-family: 'Poppins', sans-serif;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif;
    font-weight: 600;
}

/* Premium Header */
header {
    background: linear-gradient(rgba(62, 39, 35, 0.85), rgba(62, 39, 35, 0.9)), url('../images/hero-bg.png') no-repeat center center/cover;
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.top-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 5%;
    background: rgba(62, 39, 35, 0.8);
    backdrop-filter: blur(10px);
    position: relative;
    z-index: 100;
}

.logo {
    font-size: 32px;
    font-weight: 700;
    display: flex;
    align-items: center;
    letter-spacing: 1px;
}

.logo i {
    margin-right: 12px;
    color: var(--gold);
    text-shadow: 0 0 10px rgba(212, 175, 55, 0.5);
}

.logo span {
    background: linear-gradient(to right, var(--gold), var(--gold-light));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

nav ul {
    display: flex;
    list-style: none;
}

nav ul li {
    margin: 0 15px;
}

nav ul li a {
    color: var(--white);
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition);
    padding: 10px 15px;
    border-radius: 30px;
    position: relative;
    overflow: hidden;
}

nav ul li a:hover {
    color: var(--gold);
    background: rgba(255, 255, 255, 0.1);
}

nav ul li a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--gold);
    transition: var(--transition);
    transform: translateX(-50%);
}

nav ul li a:hover::after {
    width: 70%;
}

.hero {
    text-align: center;
    padding: 50px 10%;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;
    z-index: 2;
}

.hero h1 {
    font-size: 4.5rem;
    margin-bottom: 25px;
    text-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    letter-spacing: 1px;
    background: linear-gradient(to right, var(--white), var(--gold-light));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    animation: fadeInUp 1s ease;
}

.hero p {
    font-size: 1.4rem;
    max-width: 800px;
    margin-bottom: 40px;
    line-height: 1.7;
    color: var(--light);
    animation: fadeInUp 1s ease 0.2s both;
}

.btn {
    display: inline-block;
    background: linear-gradient(45deg, var(--gold), var(--gold-light));
    color: var(--dark);
    padding: 18px 40px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.2rem;
    transition: var(--transition);
    border: none;
    cursor: pointer;
    box-shadow: 0 10px 25px rgba(212, 175, 55, 0.3);
    position: relative;
    overflow: hidden;
    animation: fadeInUp 1s ease 0.4s both;
}

.btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(212, 175, 55, 0.5);
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: 0.5s;
}

.btn:hover::before {
    left: 100%;
}

.btn-outline {
    background: transparent;
    margin-left: 20px;
    color: var(--white);
    border: 2px solid var(--gold);
}

.btn-outline:hover {
    background: linear-gradient(45deg, var(--gold), var(--gold-light));
    color: var(--dark);
}

section {
    padding: 100px 5%;
    position: relative;
}

.section-title {
    text-align: center;
    margin-bottom: 70px;
    position: relative;
}

.section-title h2 {
    font-size: 3rem;
    color: var(--dark);
    position: relative;
    display: inline-block;
    padding-bottom: 20px;
}

.section-title h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 120px;
    height: 4px;
    background: linear-gradient(to right, transparent, var(--gold), transparent);
    border-radius: 2px;
}

.section-title h2::before {
    content: '✦';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    color: var(--gold);
    font-size: 1.5rem;
}

.products {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 40px;
    margin-top: 30px;
}

.product-card {
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    position: relative;
    transform: translateY(0);
}

.product-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.product-img {
    height: 280px;
    background: linear-gradient(45deg, var(--light), #f0e6d2);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 5rem;
    color: var(--secondary);
    position: relative;
    overflow: hidden;
}

.product-img::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(212, 175, 55, 0.1), transparent);
    transform: rotate(45deg);
    transition: var(--transition);
}

.product-card:hover .product-img::before {
    transform: rotate(45deg) translate(20%, 20%);
}

.product-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: linear-gradient(45deg, var(--gold), var(--gold-light));
    color: var(--dark);
    padding: 8px 15px;
    border-radius: 30px;
    font-weight: 600;
    font-size: 0.9rem;
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.3);
    z-index: 2;
}

.product-info {
    padding: 30px;
    text-align: center;
}

.product-info h3 {
    font-size: 1.8rem;
    margin-bottom: 15px;
    color: var(--dark);
}

.product-info p {
    color: #666;
    margin-bottom: 20px;
    line-height: 1.7;
}

.price {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--secondary);
    margin-bottom: 20px;
    position: relative;
    display: inline-block;
}

.price::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 3px;
    background: var(--gold);
}

.order-btn {
    width: 100%;
    padding: 15px;
    background: linear-gradient(45deg, var(--secondary), var(--primary));
    color: var(--white);
    border: none;
    border-radius: 10px;
    font-weight: 600;
    font-size: 1.1rem;
    cursor: pointer;
    transition: var(--transition);
    box-shadow: 0 5px 15px rgba(139, 69, 19, 0.3);
}

.order-btn:hover {
    background: linear-gradient(45deg, var(--primary), var(--dark));
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(139, 69, 19, 0.4);
}

.about {
    background: linear-gradient(135deg, var(--light), #f9f1e7);
    position: relative;
    overflow: hidden;
}

.about::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('https://www.transparenttextures.com/patterns/cubes.png');
    opacity: 0.05;
}

.about-content {
    display: flex;
    align-items: center;
    gap: 70px;
    position: relative;
    z-index: 2;
}

.about-text {
    flex: 1;
}

.about-text h2 {
    font-size: 3rem;
    color: var(--dark);
    margin-bottom: 30px;
}

.about-text p {
    margin-bottom: 25px;
    line-height: 1.9;
    font-size: 1.2rem;
    color: #444;
}

.features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
    margin-top: 50px;
}

.feature {
    text-align: center;
    padding: 40px 25px;
    background: var(--white);
    border-radius: 20px;
    box-shadow: var(--shadow);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.feature:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.feature::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(to right, var(--gold), var(--gold-light));
}

.feature i {
    font-size: 3.5rem;
    color: var(--gold);
    margin-bottom: 25px;
    text-shadow: 0 5px 15px rgba(212, 175, 55, 0.3);
}

.feature h3 {
    margin-bottom: 20px;
    color: var(--dark);
    font-size: 1.6rem;
}

.feature p {
    color: #666;
    line-height: 1.7;
}

.custom-order {
    background: linear-gradient(rgba(62, 39, 35, 0.95), rgba(62, 39, 35, 0.95)), url('../images/custom-bg.png') no-repeat center center/cover;
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.custom-order::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, transparent 20%, rgba(62, 39, 35, 0.95) 90%);
}

.custom-order h2 {
    color: var(--white);
}

.order-form {
    max-width: 900px;
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.1);
    padding: 50px;
    border-radius: 20px;
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
    position: relative;
    z-index: 2;
}

.form-group {
    margin-bottom: 30px;
}

.form-group label {
    display: block;
    margin-bottom: 12px;
    font-weight: 500;
    font-size: 1.2rem;
    color: var(--light);
}

.form-control {
    width: 100%;
    padding: 18px 20px;
    border-radius: 12px;
    border: 2px solid rgba(255, 255, 255, 0.2);
    background: rgba(255, 255, 255, 0.1);
    font-size: 1.1rem;
    color: var(--white);
    transition: var(--transition);
}

.form-control:focus {
    outline: none;
    border-color: var(--gold);
    background: rgba(255, 255, 255, 0.15);
    box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.3);
}

.form-control::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

textarea.form-control {
    min-height: 180px;
    resize: vertical;
}

.form-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

footer {
    background: var(--dark);
    color: var(--white);
    padding: 70px 5% 30px;
    position: relative;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 50px;
    margin-bottom: 50px;
}

.footer-column h3 {
    font-size: 1.8rem;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 15px;
    color: var(--gold);
}

.footer-column h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background: var(--gold);
}

.footer-column p, .footer-column li {
    margin-bottom: 20px;
    line-height: 1.8;
    color: #ddd;
}

.footer-column ul {
    list-style: none;
}

.footer-column ul li a {
    color: #ddd;
    text-decoration: none;
    transition: var(--transition);
    display: flex;
    align-items: center;
}

.footer-column ul li a i {
    margin-right: 10px;
    color: var(--gold);
    width: 20px;
}

.footer-column ul li a:hover {
    color: var(--gold);
    padding-left: 8px;
}

.social-links {
    display: flex;
    gap: 20px;
    margin-top: 25px;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: var(--white);
    transition: var(--transition);
    font-size: 1.3rem;
}

.social-links a:hover {
    background: var(--gold);
    transform: translateY(-5px) rotate(10deg);
    box-shadow: 0 10px 20px rgba(212, 175, 55, 0.3);
}

.copyright {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: #aaa;
    font-size: 1.1rem;
}

.copyright i {
    color: var(--gold);
}

/* Premium Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes float {
    0% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-20px);
    }
    100% {
        transform: translateY(0px);
    }
}

.floating {
    animation: float 6s ease-in-out infinite;
}

.animate {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.animate.appear {
    opacity: 1;
    transform: translateY(0);
}

.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }
.delay-4 { transition-delay: 0.4s; }

/* Glowing Effects */
.glow {
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.4);
}

.product-card:hover {
    box-shadow: 0 0 30px rgba(212, 175, 55, 0.3);
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 12px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(var(--gold), var(--secondary));
    border-radius: 6px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--primary);
}

/* Responsive Design */
@media (max-width: 1200px) {
    .hero h1 {
        font-size: 3.5rem;
    }
}

@media (max-width: 992px) {
    .about-content {
        flex-direction: column;
    }
    
    .hero h1 {
        font-size: 3rem;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .top-bar {
        flex-direction: column;
        gap: 20px;
        padding: 15px;
    }
    
    nav ul {
        flex-wrap: wrap;
        justify-content: center;
    }
    
    nav ul li {
        margin: 5px 10px;
    }
    
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .hero p {
        font-size: 1.1rem;
    }
    
    .btn {
        padding: 15px 30px;
        font-size: 1.1rem;
    }
    
    section {
        padding: 70px 5%;
    }
    
    .section-title h2 {
        font-size: 2.5rem;
    }
}

@media (max-width: 576px) {
    .hero h1 {
        font-size: 2rem;
    }
    
    .hero p {
        font-size: 1rem;
    }
    
    .btn {
        padding: 12px 25px;
        font-size: 1rem;
        margin: 10px 0;
    }
    
    .btn-outline {
        margin-left: 0;
    }
    
    .order-form {
        padding: 30px 20px;
    }
}

/* Premium Particles Effect */
.particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    overflow: hidden;
}

.particle {
    position: absolute;
    border-radius: 50%;
    background: rgba(212, 175, 55, 0.5);
    opacity: 0;
}

/* Testimonials Section */
.testimonials {
    background: linear-gradient(135deg, var(--primary), var(--dark));
    color: var(--white);
    text-align: center;
}

.testimonial-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 50px 0;
}

.testimonial {
    padding: 30px;
    margin: 20px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.testimonial-text {
    font-size: 1.3rem;
    font-style: italic;
    margin-bottom: 20px;
    line-height: 1.8;
}

.testimonial-author {
    font-weight: 600;
    color: var(--gold);
    font-size: 1.2rem;
}

.rating {
    color: var(--gold);
    font-size: 1.5rem;
    margin: 20px 0;
}