@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@400;500;600;700&family=Montserrat:wght@300;400;500;600&display=swap');

:root {
    --primary-color: #4a7c72;
    --accent-color: #d4af37;
    --bg-creamy: #f7f1e3;
    --bg-light: #ffffff;
    --text-main: #2d3436;
    --text-muted: #636e72;
    --font-heading: 'Cormorant Garamond', serif;
    --font-body: 'Montserrat', sans-serif;
    --border-color: #e2e8f0;
}

body {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Base Styles */
.premium-nav .menu li a {
    font-family: var(--font-body);
    font-size: 13px !important;
    text-transform: uppercase !important;
    letter-spacing: 1px;
    font-weight: 500 !important;
    color: #333 !important;
}

/* Luxury v10 Section Header */
.v10-subtitle {
    display: block !important;
    text-transform: uppercase !important;
    letter-spacing: 4px !important;
    font-size: 12px !important;
    color: #666 !important;
    margin-bottom: 10px !important;
    font-family: var(--font-body) !important;
}

.v10-title {
    font-family: var(--font-heading) !important;
    font-size: 48px !important;
    font-weight: 500 !important;
    color: #1a1a1a !important;
    margin-bottom: 40px !important;
}

.text-teal {
    color: var(--primary-color) !important;
    font-style: italic;
}

/* Category Card Design */
.luxury-card {
    position: relative;
    border-radius: 25px !important;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    background: linear-gradient(135deg, #f5f7fa 0%, #ffffff 100%);
    border: 1px solid rgba(0,0,0,0.03) !important;
    height: 100%;
}

.luxury-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.08);
}

.luxury-card img {
    width: 60% !important;
    margin: 40px auto 20px !important;
    display: block !important;
    transition: transform 0.6s ease;
}

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

.luxury-card .content-label {
    background: var(--primary-color) !important;
    padding: 20px !important;
    text-align: center;
}

.luxury-card .content-label .name {
    color: #fff !important;
    font-family: var(--font-heading) !important;
    font-size: 20px !important;
    margin: 0 !important;
    letter-spacing: 1px;
}

.luxury-card .content-label .items {
    color: rgba(255,255,255,0.7) !important;
    font-size: 11px !important;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.nav-arrow {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 45px;
    height: 45px;
    background: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #333;
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
}

.luxury-card:hover .nav-arrow {
    background: var(--primary-color);
    color: #fff;
}

/* Popular Products Section */
.popular-subtitle {
    display: block !important;
    text-transform: uppercase !important;
    letter-spacing: 5px !important;
    font-size: 13px !important;
    color: #666 !important;
    margin-bottom: 12px !important;
    font-family: var(--font-body) !important;
}

.popular-title {
    font-family: var(--font-heading) !important;
    font-size: 52px !important;
    font-weight: 500 !important;
    color: #1a1a1a !important;
    margin-bottom: 50px !important;
}

.popular-card {
    border-radius: 0 !important;
    overflow: hidden;
    transition: all 0.5s ease;
    border: none !important;
    height: 100%;
}

.popular-img-area {
    height: 500px; /* Tall cards */
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 50px;
    position: relative;
    transition: all 0.5s ease;
}

.popular-img-area img {
    max-width: 90%;
    max-height: 90%;
    object-fit: contain;
    transition: transform 0.8s ease;
}

.popular-card:hover .popular-img-area img {
    transform: scale(1.1);
}

.popular-img-area.bg-1 { background-color: #f7f3ef; }
.popular-img-area.bg-2 { background-color: #e9eef2; }
.popular-img-area.bg-3 { background-color: #f2e9e9; }
.popular-img-area.bg-4 { background-color: #edf2ed; }
.popular-img-area.bg-5 { background-color: #fdfaf2; }
.popular-img-area.bg-6 { background-color: #f2f2f2; }
.popular-img-area.bg-7 { background-color: #eef2f1; }
.popular-img-area.bg-8 { background-color: #f9f6f2; }

.popular-info {
    background: var(--primary-color);
    padding: 30px 20px;
    text-align: center;
}

.popular-cat {
    display: block;
    color: rgba(255,255,255,0.6);
    text-transform: uppercase;
    font-size: 10px;
    letter-spacing: 3px;
    margin-bottom: 10px;
}

.popular-name {
    font-size: 18px !important;
    font-weight: 700 !important;
    margin-bottom: 15px !important;
    color: #fff !important;
    height: 48px !important;
    overflow: hidden !important;
    display: -webkit-box !important;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical !important;
    font-family: var(--font-heading) !important;
}

.popular-price {
    color: var(--accent-color) !important;
    font-weight: 600 !important;
    font-size: 20px !important;
}

.popular-card:hover .popular-info {
    background: #3e6a61;
}

/* Badge Styles */
.popular-badge {
    position: absolute;
    top: 20px;
    left: 20px;
    background: #000;
    color: #fff;
    padding: 5px 15px;
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

/* Footer Improvements */
.footer {
    background: #1a1a1a !important;
    padding: 100px 0 0 !important;
}

.footer .title {
    font-family: var(--font-heading) !important;
    color: #fff !important;
    font-size: 24px !important;
    margin-bottom: 30px !important;
}

.footer .link-list li a, .footer .contact-list li {
    color: rgba(255,255,255,0.6) !important;
    font-size: 14px !important;
    margin-bottom: 12px !important;
    display: block;
    transition: color 0.3s ease;
}

.footer .link-list li a:hover {
    color: var(--accent-color) !important;
    padding-left: 5px;
}

.footer-desc p {
    color: rgba(255,255,255,0.5) !important;
    line-height: 1.8;
}

.social-link {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255,255,255,0.05);
    color: #fff !important;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: var(--primary-color);
    transform: translateY(-3px);
}

.copy-bg {
    border-top: 1px solid rgba(255,255,255,0.05);
    padding: 30px 0;
}

.copyright-text {
    color: rgba(255,255,255,0.3) !important;
    font-size: 12px;
}
