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

@font-face {
    font-family: 'Birds of Paradise';
    src: url('../fonts/Birds_of_Paradise.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}


body {
    font-family: 'Montserrat', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #fff;
}

:root {
    --brand: #a67c52;
    --text: #333;
    --bg: #fff;
    --muted: #777;
    --card-bg: #ffffffcc;
    --shadow: 0 10px 30px rgba(0,0,0,0.08);
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', Georgia, 'Times New Roman', serif;
    font-weight: 600;
    margin-bottom: 0.5em;
}

a {
    text-decoration: none;
    color: #333;
    transition: all 0.3s ease;
}

ul, ol {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

.section-title {
    text-align: center;
    margin-bottom: 2rem;
    font-size: 2.2rem;
    position: relative;
    padding-bottom: 15px;
}

.section-title:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background-color: #a67c52;
}

.center {
    text-align: center;
    margin: 2rem 0;
}

/* ======= BUTTONS ======= */
.btn {
    display: inline-block;
    padding: 12px 30px;
    background-color: #a67c52;
    color: #fff;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    transition: all 0.3s ease;
}

.btn:hover {
    background-color: #8a6642;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.btn-small {
    padding: 8px 20px;
    font-size: 0.9rem;
}

/* ======= HEADER ======= */
header {
    background: linear-gradient(135deg, rgba(255,255,255,0.95) 0%, rgba(255,255,255,0.9) 100%);
    backdrop-filter: saturate(180%) blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: 0 8px 32px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border-bottom: 1px solid rgba(166, 124, 82, 0.1);
}

header:hover {
    box-shadow: 0 12px 40px rgba(0,0,0,0.15);
}

header .container {
    display: flex;
    flex-direction: column;
    padding: 20px 30px;
    max-width: 1400px;
}

.header-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.left-group {
    display: flex;
    align-items: center;
}

.header-social-icons {
    display: flex;
    gap: 15px;
    margin-right: 30px;
}

.si {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: linear-gradient(135deg, #fff 0%, #f8f8f8 100%);
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    color: var(--text);
    font-size: 18px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.si::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(166, 124, 82, 0.1) 0%, rgba(166, 124, 82, 0.05) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.si:hover::before {
    opacity: 1;
}

.si:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 8px 25px rgba(0,0,0,0.2);
}

.si-facebook { color: #1877f3; }
.si-instagram { color: #e4405f; }
.si-whatsapp { color: #25d366; }
.si-tiktok { color: #000; }

.logo h1 {
    font-family: 'Script MT', cursive;
    font-weight: bold;
    font-size: clamp(3em, 6vw, 4em);
    margin: 0;
    line-height: 1;
    white-space: nowrap;
    background: linear-gradient(135deg, #a67c52 0%, #8a6642 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 2px 4px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.logo:hover h1 {
    transform: scale(1.02);
}

.logo p {
    margin: 5px 0 0 0;
    font-size: clamp(1em, 1.5vw, 1.2em);
    font-family: 'Arial Black', Arial, sans-serif;
    white-space: nowrap;
    color: #666;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-weight: 600;
}

.logo p span {
    display: inline-block;
    margin-left: 6em;
    color: #a67c52;
    position: relative;
}

.logo p span::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, #a67c52, #8a6642);
    border-radius: 1px;
}

#main-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    margin-top: 20px;
    flex-wrap: nowrap;
}

#main-nav > ul {
    display: flex;
    align-items: center;
    margin: 0;
    padding: 0;
    list-style: none;
    flex-grow: 1;
    justify-content: center;
    gap: 40px;
}

#main-nav ul li a {
    padding: 15px 20px;
    text-transform: uppercase;
    font-weight: 600;
    font-size: 14px;
    position: relative;
    color: #333;
    white-space: nowrap;
    letter-spacing: 0.5px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 25px;
    position: relative;
    overflow: hidden;
}

#main-nav ul li a::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, rgba(166, 124, 82, 0.1) 0%, rgba(166, 124, 82, 0.2) 100%);
    transition: left 0.4s ease;
    z-index: -1;
}

#main-nav ul li a:hover::before,
#main-nav ul li a.active::before {
    left: 0;
}

#main-nav ul li a:hover,
#main-nav ul li a.active {
    color: #a67c52;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(166, 124, 82, 0.2);
}

.header-right-menu {
    display: flex;
    align-items: center;
    gap: 15px;
}

.hamburger {
    display: none;
    cursor: pointer;
    font-size: 24px;
    color: #333;
    transition: all 0.3s ease;
}

.hamburger:hover {
    color: #a67c52;
    transform: scale(1.1);
}

.close-menu {
    display: none;
    position: absolute;
    top: 20px;
    right: 20px;
    background: none;
    border: none;
    font-size: 24px;
    color: #333;
    cursor: pointer;
    z-index: 1001;
    transition: all 0.3s ease;
}

.close-menu:hover {
    color: #a67c52;
    transform: scale(1.1);
}

.home-mobile {
    display: none;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: #fff;
    box-shadow: 0 2px 6px rgba(0,0,0,0.1);
    color: #333;
    font-size: 16px;
    transition: all 0.3s ease;
    margin-right: 10px;
}

.home-mobile:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    color: #a67c52;
}

@media (max-width: 992px) {
    .header-social-icons {
        display: none;
    }
    .logo h1 {
        font-size: 2.5em;
    }
    .logo p {
        font-size: 0.8em;
    }
}

@media (max-width: 768px) {
    .hamburger {
        display: block;
    }

    #main-nav {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background-color: rgba(255,255,255,0.95);
        backdrop-filter: blur(10px);
        -webkit-backdrop-filter: blur(10px);
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        opacity: 0;
        visibility: hidden;
        transform: translateY(-20px);
        transition: all 0.3s ease;
        z-index: 1000;
    }

    #main-nav.active {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }

    #main-nav > ul {
        flex-direction: column;
        text-align: center;
        margin: 0;
        padding: 0;
    }

    #main-nav ul li {
        margin: 10px 0;
    }

    #main-nav ul li a {
        font-size: 18px;
        padding: 15px 20px;
        color: #333;
        text-decoration: none;
        transition: all 0.3s ease;
    }

    #main-nav ul li a:hover {
        color: #a67c52;
        transform: scale(1.05);
    }

    .close-menu {
        display: block;
    }

    .home-mobile {
        display: flex;
    }

    .header-right-menu {
        display: none;
    }
}



/* ======= HERO SECTION ======= */
.hero {
    background: linear-gradient(135deg, #a67c52 0%, #8a6642 50%, #6b5b47 100%);
    color: #fff;
    padding: 120px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
    margin-top: -1px; /* Remove gap from header border */
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(circle at 20% 80%, rgba(255,255,255,0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(255,255,255,0.1) 0%, transparent 50%),
        radial-gradient(circle at 40% 40%, rgba(255,255,255,0.05) 0%, transparent 50%);
    pointer-events: none;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 100px;
    background: linear-gradient(transparent, rgba(255,255,255,0.1));
    pointer-events: none;
}

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

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

.hero h2 {
    font-size: clamp(3rem, 6vw, 5rem);
    font-weight: 800;
    margin-bottom: 1.5rem;
    line-height: 1.1;
    text-shadow: 0 4px 8px rgba(0,0,0,0.3);
    letter-spacing: -1px;
}

.hero p {
    font-size: clamp(1.2rem, 2.5vw, 1.5rem);
    margin-bottom: 3rem;
    opacity: 0.95;
    line-height: 1.7;
    font-weight: 300;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    text-shadow: 0 2px 4px rgba(0,0,0,0.2);
}

.hero .btn {
    background: linear-gradient(135deg, #fff 0%, #f8f8f8 100%);
    color: #a67c52;
    padding: 18px 45px;
    font-size: 1.2rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 50px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.2);
    border: 2px solid rgba(255,255,255,0.2);
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.hero .btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(166, 124, 82, 0.2), transparent);
    transition: left 0.6s ease;
}

.hero .btn:hover::before {
    left: 100%;
}

.hero .btn:hover {
    background: linear-gradient(135deg, #f8f8f8 0%, #fff 100%);
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 15px 35px rgba(0,0,0,0.3);
    color: #8a6642;
}

/* ======= FEATURES SECTION ======= */
.features {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    position: relative;
}

.features::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(circle at 25% 25%, rgba(166, 124, 82, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 75% 75%, rgba(166, 124, 82, 0.03) 0%, transparent 50%);
    pointer-events: none;
}

.features .container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 50px;
    max-width: 1200px;
    position: relative;
    z-index: 1;
}

.feature-box {
    background: linear-gradient(135deg, #fff 0%, #fefefe 100%);
    padding: 50px 40px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 15px 35px rgba(0,0,0,0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(166, 124, 82, 0.1);
}

.feature-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 6px;
    background: linear-gradient(90deg, #a67c52 0%, #8a6642 50%, #6b5b47 100%);
    border-radius: 20px 20px 0 0;
}

.feature-box::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(166, 124, 82, 0.05) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
}

.feature-box:hover::after {
    opacity: 1;
}

.feature-box:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: 0 25px 50px rgba(0,0,0,0.15);
    border-color: rgba(166, 124, 82, 0.2);
}

.feature-box i {
    font-size: 4rem;
    color: #a67c52;
    margin-bottom: 2rem;
    display: block;
    transition: all 0.3s ease;
    position: relative;
    z-index: 1;
}

.feature-box:hover i {
    transform: scale(1.1) rotate(5deg);
    color: #8a6642;
}

.feature-box h3 {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    color: #333;
    font-weight: 700;
    position: relative;
    z-index: 1;
}

.feature-box p {
    color: #666;
    line-height: 1.8;
    font-size: 1.1rem;
    font-weight: 400;
    position: relative;
    z-index: 1;
}

/* ======= NEW ARRIVALS SECTION ======= */
.new-arrivals {
    padding: 100px 0;
    background: linear-gradient(135deg, #fff 0%, #fafafa 100%);
    position: relative;
}

.new-arrivals::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, #a67c52, #8a6642);
    border-radius: 2px;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 40px;
    margin-bottom: 50px;
    max-width: 1400px;
}

.product-card {
    background: linear-gradient(135deg, #fff 0%, #fefefe 100%);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0,0,0,0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    display: flex;
    flex-direction: column;
    height: 100%;
    border: 1px solid rgba(166, 124, 82, 0.1);
}

.product-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(166, 124, 82, 0.05) 0%, transparent 50%);
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
    z-index: 1;
}

.product-card:hover::before {
    opacity: 1;
}

.product-card:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: 0 25px 50px rgba(0,0,0,0.15);
    border-color: rgba(166, 124, 82, 0.2);
}

.product-image {
    position: relative;
    overflow: hidden;
    height: 280px;
    flex-shrink: 0;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.product-info {
    padding: 25px;
    text-align: center;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 140px;
}

.product-info h3 {
    font-size: 1.4rem;
    margin-bottom: 0.5rem;
    color: #333;
    font-weight: 700;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    transition: color 0.3s ease;
}

.product-card:hover .product-info h3 {
    color: #a67c52;
}

.price {
    font-size: 1.3rem;
    color: #a67c52;
    font-weight: 800;
    margin-bottom: 1.5rem;
    display: block;
    letter-spacing: 0.5px;
}

.btn-small {
    background: linear-gradient(135deg, #a67c52 0%, #8a6642 100%);
    color: #fff;
    padding: 12px 25px;
    border-radius: 30px;
    font-size: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    align-self: center;
    position: relative;
    overflow: hidden;
    border: 2px solid transparent;
    box-shadow: 0 4px 15px rgba(166, 124, 82, 0.3);
}

.btn-small::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.5s ease;
}

.btn-small:hover::before {
    left: 100%;
}

.btn-small:hover {
    background: linear-gradient(135deg, #8a6642 0%, #a67c52 100%);
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 8px 25px rgba(166, 124, 82, 0.4);
}

/* ======= NEWSLETTER SECTION ======= */
.newsletter {
    background: linear-gradient(135deg, #a67c52 0%, #8a6642 50%, #6b5b47 100%);
    color: #fff;
    padding: 100px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.newsletter::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(circle at 30% 70%, rgba(255,255,255,0.1) 0%, transparent 50%),
        radial-gradient(circle at 70% 30%, rgba(255,255,255,0.1) 0%, transparent 50%);
    pointer-events: none;
}

.newsletter-content {
    max-width: 700px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.newsletter h2 {
    font-size: clamp(2.8rem, 4vw, 4rem);
    margin-bottom: 1.5rem;
    font-weight: 800;
    text-shadow: 0 4px 8px rgba(0,0,0,0.3);
    letter-spacing: -1px;
}

.newsletter p {
    font-size: clamp(1.2rem, 2vw, 1.4rem);
    margin-bottom: 3rem;
    opacity: 0.95;
    line-height: 1.7;
    font-weight: 300;
    text-shadow: 0 2px 4px rgba(0,0,0,0.2);
}

.newsletter form {
    display: flex;
    flex-direction: column;
    gap: 20px;
    max-width: 500px;
    margin: 0 auto;
}

.newsletter input {
    padding: 18px 25px;
    border: none;
    border-radius: 50px;
    font-size: 1.1rem;
    background: rgba(255,255,255,0.95);
    color: #333;
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(10px);
}

.newsletter input::placeholder {
    color: #666;
    font-weight: 400;
}

.newsletter input:focus {
    outline: none;
    box-shadow: 0 12px 35px rgba(0,0,0,0.2);
    transform: translateY(-2px);
    background: #fff;
}

.newsletter .btn {
    background: linear-gradient(135deg, #fff 0%, #f8f8f8 100%);
    color: #a67c52;
    padding: 18px 40px;
    border-radius: 50px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.2);
    border: 2px solid rgba(255,255,255,0.2);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.newsletter .btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(166, 124, 82, 0.2), transparent);
    transition: left 0.6s ease;
}

.newsletter .btn:hover::before {
    left: 100%;
}

.newsletter .btn:hover {
    background: linear-gradient(135deg, #f8f8f8 0%, #fff 100%);
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 15px 35px rgba(0,0,0,0.3);
    color: #8a6642;
}

/* ======= RESPONSIVE DESIGN ======= */
@media (min-width: 1200px) {
    .container {
        max-width: 1400px;
    }

    .hero h2 {
        font-size: 5rem;
    }

    .features .container {
        grid-template-columns: repeat(3, 1fr);
        gap: 60px;
    }

    .product-grid {
        grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
        gap: 50px;
    }
}

/* ======= SCROLL TO TOP BUTTON ======= */
.scroll-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #a67c52 0%, #8a6642 100%);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1001;
    box-shadow: 0 8px 25px rgba(166, 124, 82, 0.3);
    border: 3px solid rgba(255,255,255,0.2);
}

.scroll-to-top:hover {
    transform: translateY(-5px) scale(1.1);
    box-shadow: 0 15px 35px rgba(166, 124, 82, 0.4);
    background: linear-gradient(135deg, #8a6642 0%, #a67c52 100%);
}

.scroll-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}


