/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    background: linear-gradient(135deg, #fefefe 0%, #faf9f6 100%);
    color: #333;
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Cinzel', serif;
    font-weight: 600;
}

/* Top Bar */
.top-bar {
    background: linear-gradient(135deg, #d4af37 0%, #b8941f 100%);
    color: #fff;
    padding: 8px 0;
    font-size: 0.9rem;
}

.top-bar-content {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.top-bar-left {
    display: flex;
    gap: 30px;
}

.top-bar-left i,
.top-bar-right i {
    margin-right: 8px;
    font-size: 0.8rem;
}

/* Enhanced Navbar Styles */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
    backdrop-filter: blur(10px);
}

.navbar {
    padding: 0;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 5%;
    height: 90px;
    max-width: 1600px;
    margin: 0 auto;
    position: relative;
}

.logo {
    display: flex;
    align-items: center;
    color: #d4af37;
    text-decoration: none;
    transition: all 0.3s ease;
    gap: 15px;
}

.logo i {
    font-size: 2.5rem;
    animation: gentlePulse 4s infinite ease-in-out;
}

@keyframes gentlePulse {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.05); opacity: 0.9; }
}

.logo-text h1 {
    font-family: 'Cinzel', serif;
    font-size: 1.8rem;
    font-weight: 700;
    color: #333;
    line-height: 1.2;
    margin: 0;
}

.logo-text p {
    font-family: 'Inter', sans-serif;
    font-size: 0.9rem;
    color: #666;
    margin: 0;
    letter-spacing: 1px;
}

.logo:hover {
    transform: translateY(-2px);
}

/* Navigation Links */
.nav-links {
    display: flex;
    list-style: none;
    align-items: center;
    gap: 35px;
    margin: 0;
}

.nav-links li {
    position: relative;
}

.nav-links li a {
    color: #333;
    text-decoration: none;
    font-weight: 500;
    font-size: 1.05rem;
    padding: 15px 0;
    display: flex;
    align-items: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    font-family: 'Inter', sans-serif;
    letter-spacing: 0.3px;
}

.nav-links li a i {
    margin-right: 10px;
    font-size: 1.1rem;
    color: #d4af37;
}

.nav-links li a:hover {
    color: #d4af37;
}

.nav-links li a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #d4af37, #f5d76e);
    transition: width 0.3s ease;
}

.nav-links li a:hover::after {
    width: 100%;
}

/* Heart icon */
.heart-icon a {
    color: #ff6b8b;
    position: relative;
    padding: 15px 20px;
}

.like-count {
    position: absolute;
    top: 5px;
    right: 5px;
    background: #ff6b8b;
    color: white;
    border-radius: 50%;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    font-weight: 600;
    font-family: 'Inter', sans-serif;
}

/* Mobile Menu Button */
.mobile-menu-btn {
    display: none;
    color: #d4af37;
    font-size: 1.8rem;
    cursor: pointer;
    transition: all 0.3s ease;
    background: rgba(212, 175, 55, 0.1);
    padding: 10px 15px;
    border-radius: 8px;
}

.mobile-menu-btn:hover {
    background: rgba(212, 175, 55, 0.2);
    transform: scale(1.05);
}

/* Enhanced Dropdown Styles */
.dropdown {
    position: relative;
}

.dropdown-arrow {
    font-size: 0.8rem;
    margin-left: 5px;
    transition: transform 0.3s ease;
    color: #666;
}

.dropdown:hover .dropdown-arrow {
    transform: rotate(180deg);
    color: #d4af37;
}

.dropdown-content {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100vw;
    left: 50%;
    transform: translateX(-50%) translateY(10px);
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    display: none;
    padding: 40px 5%;
    border-top: 3px solid #d4af37;
    z-index: 1000;
    animation: dropdownFade 0.3s ease forwards;
    opacity: 0;
    min-height: 400px;
    border-radius: 0 0 20px 20px;
}

@keyframes dropdownFade {
    from {
        opacity: 0;
        transform: translateX(-50%) translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateX(-50%) translateY(0);
    }
}

.dropdown:hover .dropdown-content {
    display: block;
}

/* Gold and Silver specific dropdown styling */
.gold-dropdown {
    border-top-color: #d4af37;
}

.silver-dropdown {
    border-top-color: #c0c0c0;
}

.dropdown-header {
    text-align: center;
    margin-bottom: 40px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.dropdown-header h3 {
    font-family: 'Cinzel', serif;
    font-size: 2rem;
    color: #333;
    margin-bottom: 10px;
}

.dropdown-header h3 i {
    color: #d4af37;
    margin-right: 10px;
}

.dropdown-header p {
    color: #666;
    font-size: 1.1rem;
}

.dropdown-container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    max-width: 1400px;
    margin: 0 auto;
}

.dropdown-category {
    display: flex;
    flex-direction: column;
}

.dropdown-category h4 {
    font-family: 'Cinzel', serif;
    font-size: 1.2rem;
    color: #333;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid #d4af37;
}

.dropdown-content a {
    display: flex;
    align-items: center;
    padding: 12px 0;
    color: #555;
    text-decoration: none;
    transition: all 0.3s ease;
    border-radius: 8px;
    text-align: left;
    font-family: 'Inter', sans-serif;
}

.dropdown-content a img {
    width: 60px;
    height: 60px;
    object-fit: cover;
    border-radius: 8px;
    margin-right: 15px;
    border: 1px solid rgba(212, 175, 55, 0.3);
    transition: all 0.3s ease;
}

.dropdown-content a:hover {
    color: #d4af37;
    padding-left: 10px;
    background: rgba(212, 175, 55, 0.05);
}

.dropdown-content a:hover img {
    border-color: #d4af37;
    transform: scale(1.05);
}

.dropdown-footer {
    text-align: center;
    margin-top: 40px;
    padding-top: 30px;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.dropdown-view-all {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: #d4af37;
    font-weight: 600;
    font-size: 1.1rem;
    padding: 12px 30px;
    border: 2px solid #d4af37;
    border-radius: 30px;
    transition: all 0.3s ease;
    text-decoration: none;
    font-family: 'Inter', sans-serif;
}

.dropdown-view-all:hover {
    background: #d4af37;
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 5px 20px rgba(212, 175, 55, 0.3);
}

/* Responsive Design */
@media (max-width: 1400px) {
    .dropdown-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
    
    .nav-container {
        padding: 0 3%;
    }
}

@media (max-width: 1100px) {
    .nav-links {
        gap: 25px;
    }
    
    .nav-links li a {
        font-size: 1rem;
    }
    
    .logo-text h1 {
        font-size: 1.6rem;
    }
}

@media (max-width: 992px) {
    .nav-links {
        position: fixed;
        top: 90px;
        left: 0;
        width: 100%;
        background: rgba(255, 255, 255, 0.98);
        flex-direction: column;
        align-items: flex-start;
        padding: 30px;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        transform: translateY(-100%);
        opacity: 0;
        transition: all 0.4s ease;
        z-index: 999;
        gap: 0;
        max-height: 80vh;
        overflow-y: auto;
        backdrop-filter: blur(10px);
    }
    
    .nav-links.active {
        transform: translateY(0);
        opacity: 1;
    }
    
    .nav-links li {
        margin: 10px 0;
        width: 100%;
    }
    
    .nav-links li a {
        padding: 18px;
        font-size: 1.1rem;
        justify-content: space-between;
        border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    }
    
    .nav-links li a::after {
        display: none;
    }
    
    .dropdown-content {
        position: static;
        width: 100%;
        transform: none;
        display: none;
        background: rgba(255, 255, 255, 0.95);
        margin-top: 10px;
        padding: 20px;
        border-top: none;
        border-left: 3px solid #d4af37;
        animation: none;
        opacity: 1;
        min-height: auto;
        box-shadow: none;
        border-radius: 10px;
    }
    
    .dropdown.active .dropdown-content {
        display: block;
    }
    
    .dropdown-container {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .dropdown-category h4 {
        font-size: 1.1rem;
    }
    
    .dropdown-content a {
        padding: 10px 0;
    }
    
    .dropdown-content a img {
        width: 50px;
        height: 50px;
    }
    
    .dropdown-header {
        margin-bottom: 20px;
        padding-bottom: 15px;
    }
    
    .dropdown-header h3 {
        font-size: 1.5rem;
    }
    
    .dropdown-header p {
        font-size: 1rem;
    }
    
    .mobile-menu-btn {
        display: block;
    }
    
    .dropdown-view-all {
        font-size: 1rem;
        padding: 10px 20px;
    }
}

@media (max-width: 576px) {
    .logo {
        gap: 10px;
    }
    
    .logo i {
        font-size: 2rem;
    }
    
    .logo-text h1 {
        font-size: 1.3rem;
    }
    
    .logo-text p {
        font-size: 0.8rem;
    }
    
    .top-bar-content {
        flex-direction: column;
        gap: 5px;
        text-align: center;
    }
    
    .top-bar-left {
        flex-direction: column;
        gap: 5px;
    }
    
    .dropdown-content a {
        padding: 8px 0;
    }
    
    .dropdown-content a img {
        width: 40px;
        height: 40px;
    }
    
    .dropdown-view-all {
        font-size: 0.9rem;
        padding: 8px 16px;
    }
}

/* Rest of the page styles */
.slideshow-hero {
    margin-top: 90px;
    position: relative;
}

/* Slideshow styles */
.slideshow-container {
    position: relative;
    height: 85vh;
    overflow: hidden;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease-in-out;
    display: flex;
    align-items: center;
    justify-content: center;
}

.slide.active {
    opacity: 1;
}

.slide-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.6) 0%, rgba(0, 0, 0, 0.3) 100%);
}

.slide-content {
    position: relative;
    text-align: center;
    color: white;
    max-width: 800px;
    margin: 0 20px;
    z-index: 2;
}

.slide-subtitle {
    font-family: 'Cinzel', serif;
    font-size: 1.2rem;
    margin-bottom: 15px;
    letter-spacing: 3px;
    color: #f5d76e;
    text-transform: uppercase;
}

.slide-title {
    font-family: 'Cinzel', serif;
    font-size: 3.8rem;
    margin-bottom: 20px;
    line-height: 1.2;
}

.slide-title .highlight {
    color: #d4af37;
    position: relative;
}

.slide-title .highlight::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 0;
    width: 100%;
    height: 3px;
    background: #f5d76e;
    transform: skewX(-15deg);
}

.slide-description {
    font-family: 'Inter', sans-serif;
    font-size: 1.3rem;
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

.slide-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.slide-btn {
    padding: 16px 40px;
    font-size: 1.1rem;
    border-radius: 30px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-width: 200px;
}

.primary-btn {
    background: linear-gradient(135deg, #d4af37 0%, #b8941f 100%);
    color: white;
    box-shadow: 0 5px 20px rgba(212, 175, 55, 0.3);
}

.primary-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.4);
    background: linear-gradient(135deg, #e6c158 0%, #c9a428 100%);
}

.secondary-btn {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.secondary-btn:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-3px);
    border-color: #d4af37;
    color: #d4af37;
}

/* Slideshow controls */
.slideshow-controls {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    gap: 30px;
    z-index: 10;
}

.prev-slide,
.next-slide {
    background: rgba(255, 255, 255, 0.2);
    color: white;
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1.2rem;
    backdrop-filter: blur(5px);
}

.prev-slide:hover,
.next-slide:hover {
    background: rgba(212, 175, 55, 0.8);
    transform: scale(1.1);
}

.slide-indicators {
    display: flex;
    gap: 15px;
}

.indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
}

.indicator.active {
    background: #d4af37;
    transform: scale(1.2);
}

/* Hero stats */
.hero-stats {
    display: flex;
    justify-content: space-around;
    background: white;
    padding: 50px 20px;
    box-shadow: 0 -5px 20px rgba(0, 0, 0, 0.05);
}

.stat {
    text-align: center;
    padding: 0 20px;
}

.stat-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #f8f4e9 0%, #f2ecda 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: #d4af37;
    font-size: 2rem;
    border: 2px solid #f0e6cc;
    transition: all 0.3s ease;
}

.stat:hover .stat-icon {
    background: linear-gradient(135deg, #d4af37 0%, #b8941f 100%);
    color: white;
    transform: scale(1.1);
}

.stat h3 {
    font-family: 'Cinzel', serif;
    font-size: 1.5rem;
    color: #333;
    margin-bottom: 10px;
}

.stat p {
    color: #666;
    font-size: 1rem;
    font-family: 'Inter', sans-serif;
}

/* Featured Collections */
.featured {
    padding: 100px 5%;
    background: #faf9f6;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    font-family: 'Cinzel', serif;
    font-size: 2.8rem;
    color: #333;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.section-header h2 i {
    color: #d4af37;
}

.section-header p {
    color: #666;
    font-size: 1.2rem;
    font-family: 'Inter', sans-serif;
    max-width: 600px;
    margin: 0 auto;
}

.collections-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.collection-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
    position: relative;
}

.collection-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.collection-img {
    position: relative;
    height: 300px;
    overflow: hidden;
}

.collection-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.collection-card:hover .collection-img img {
    transform: scale(1.1);
}

.collection-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, transparent 50%, rgba(0, 0, 0, 0.4) 100%);
    display: flex;
    align-items: flex-start;
    justify-content: flex-end;
    padding: 25px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.collection-card:hover .collection-overlay {
    opacity: 1;
}

.like-btn {
    background: white;
    border: none;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: #ff6b8b;
    font-size: 1.3rem;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.like-btn:hover {
    background: #ff6b8b;
    color: white;
    transform: scale(1.1);
}

.collection-badge {
    position: absolute;
    top: 25px;
    left: 25px;
    background: #d4af37;
    color: white;
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    font-family: 'Inter', sans-serif;
}

.collection-content {
    padding: 30px;
}

.collection-content h3 {
    font-family: 'Cinzel', serif;
    font-size: 1.5rem;
    color: #333;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.collection-content h3 i {
    color: #d4af37;
}

.collection-content p {
    color: #666;
    margin-bottom: 20px;
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
}

.collection-tags {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-bottom: 25px;
}

.collection-tags span {
    background: #f8f4e9;
    padding: 6px 15px;
    border-radius: 20px;
    font-size: 0.9rem;
    color: #666;
    font-family: 'Inter', sans-serif;
    border: 1px solid #f0e6cc;
}

.view-btn {
    background: transparent;
    border: 2px solid #d4af37;
    color: #d4af37;
    padding: 12px 30px;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: 'Inter', sans-serif;
    width: 100%;
    justify-content: center;
}

.view-btn:hover {
    background: linear-gradient(135deg, #d4af37 0%, #b8941f 100%);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.2);
}

/* Trending Designs */
.trending {
    padding: 100px 5%;
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    color: white;
    position: relative;
    overflow: hidden;
}

.trending::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('https://www.transparenttextures.com/patterns/diamond-upholstery.png');
    opacity: 0.05;
}

.trending-content {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.trending-content .section-header {
    color: white;
}

.trending-content .section-header h2 {
    color: white;
}

.trending-content .section-header p {
    color: #ccc;
}

.trending-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.trending-item {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    overflow: hidden;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
}

.trending-item:hover {
    transform: translateY(-10px);
    border-color: #d4af37;
    background: rgba(212, 175, 55, 0.05);
    box-shadow: 0 15px 30px rgba(212, 175, 55, 0.1);
}

.trending-img {
    position: relative;
    height: 220px;
    overflow: hidden;
}

.trending-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.trending-item:hover .trending-img img {
    transform: scale(1.1);
}

.trending-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: #d4af37;
    color: #000;
    padding: 6px 15px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    font-family: 'Inter', sans-serif;
}

.trending-details {
    padding: 25px;
}

.trending-details h4 {
    font-family: 'Cinzel', serif;
    font-size: 1.3rem;
    margin-bottom: 8px;
    color: white;
}

.trending-price {
    color: #d4af37;
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
    margin-bottom: 15px;
}

.trending-actions {
    display: flex;
    gap: 10px;
}

.like-btn-sm,
.view-btn-sm {
    flex: 1;
    padding: 10px 15px;
    border-radius: 20px;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    font-family: 'Inter', sans-serif;
    font-weight: 500;
}

.like-btn-sm {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.like-btn-sm:hover {
    background: rgba(255, 107, 139, 0.2);
    border-color: #ff6b8b;
}

.view-btn-sm {
    background: rgba(212, 175, 55, 0.2);
    color: #d4af37;
    border: 1px solid #d4af37;
}

.view-btn-sm:hover {
    background: #d4af37;
    color: #000;
}

/* Gallery Section */
.gallery {
    padding: 100px 5%;
    background: #faf9f6;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: repeat(2, 300px);
    gap: 25px;
    max-width: 1400px;
    margin: 0 auto;
}

.gallery-item {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
}

.gallery-item.large {
    grid-column: span 2;
    grid-row: span 2;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, transparent 30%, rgba(0, 0, 0, 0.7) 100%);
    display: flex;
    align-items: flex-end;
    justify-content: flex-start;
    padding: 30px;
    color: white;
    transition: all 0.3s ease;
    opacity: 0;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-overlay h4 {
    font-family: 'Cinzel', serif;
    font-size: 1.5rem;
    margin-bottom: 8px;
}

.gallery-overlay p {
    font-family: 'Inter', sans-serif;
    font-size: 0.9rem;
    opacity: 0.8;
    margin-bottom: 15px;
}

.like-btn-gallery {
    position: absolute;
    bottom: 30px;
    right: 30px;
    background: rgba(255, 255, 255, 0.2);
    border: none;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
    cursor: pointer;
    backdrop-filter: blur(5px);
    transition: all 0.3s ease;
}

.like-btn-gallery:hover {
    background: #ff6b8b;
    transform: scale(1.1);
}

/* Visit Store Section */
.visit-store {
    padding: 100px 5%;
    background: linear-gradient(135deg, #f8f4e9 0%, #f2ecda 100%);
}

.store-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    max-width: 1200px;
    margin: 0 auto;
    background: white;
    border-radius: 25px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
}

.store-info {
    padding: 60px;
}

.store-info h2 {
    font-family: 'Cinzel', serif;
    font-size: 2.5rem;
    color: #333;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.store-info h2 i {
    color: #d4af37;
}

.store-description {
    color: #666;
    margin-bottom: 40px;
    line-height: 1.6;
    font-family: 'Inter', sans-serif;
    font-size: 1.1rem;
}

.store-details {
    display: flex;
    flex-direction: column;
    gap: 25px;
    margin-bottom: 40px;
}

.store-detail {
    display: flex;
    align-items: flex-start;
    gap: 20px;
}

.store-detail i {
    color: #d4af37;
    font-size: 1.3rem;
    margin-top: 5px;
}

.store-detail h4 {
    color: #333;
    margin-bottom: 5px;
    font-size: 1.1rem;
    font-family: 'Cinzel', serif;
}

.store-detail p {
    color: #666;
    line-height: 1.5;
    font-family: 'Inter', sans-serif;
}

.store-buttons {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.direction-btn,
.appointment-btn {
    padding: 15px 35px;
    border-radius: 30px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 10px;
    border: none;
    font-family: 'Inter', sans-serif;
}

.direction-btn {
    background: linear-gradient(135deg, #d4af37 0%, #b8941f 100%);
    color: white;
}

.direction-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.3);
}

.appointment-btn {
    background: transparent;
    color: #333;
    border: 2px solid #d4af37;
}

.appointment-btn:hover {
    background: rgba(212, 175, 55, 0.1);
    transform: translateY(-3px);
}

.store-image {
    position: relative;
    min-height: 600px;
}

.store-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.store-image-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 0%, transparent 100%);
    color: white;
    padding: 40px;
    text-align: center;
    font-size: 1.5rem;
    font-weight: 500;
    font-family: 'Cinzel', serif;
}

.store-image-overlay i {
    color: #d4af37;
    margin-right: 10px;
}

/* Testimonials */
.testimonials {
    padding: 100px 5%;
    background: #faf9f6;
}

.testimonial-header {
    text-align: center;
    margin-bottom: 60px;
}

.testimonial-header h2 {
    font-family: 'Cinzel', serif;
    font-size: 2.8rem;
    color: #333;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.testimonial-header p {
    color: #666;
    font-size: 1.2rem;
    font-family: 'Inter', sans-serif;
}

.testimonial-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.testimonial-card {
    background: white;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    position: relative;
    border: 1px solid #f0e6cc;
}

.testimonial-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.12);
}

.testimonial-content {
    position: relative;
    padding: 20px 0 30px;
    margin-bottom: 25px;
    border-bottom: 1px solid #f0e6cc;
}

.testimonial-content i.fa-quote-left {
    position: absolute;
    top: 0;
    left: 0;
    color: #d4af37;
    font-size: 1.8rem;
    opacity: 0.3;
}

.testimonial-content i.fa-quote-right {
    position: absolute;
    bottom: 0;
    right: 0;
    color: #d4af37;
    font-size: 1.8rem;
    opacity: 0.3;
}

.testimonial-content p {
    color: #555;
    font-style: italic;
    line-height: 1.7;
    text-align: center;
    font-family: 'Inter', sans-serif;
    font-size: 1.1rem;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 20px;
}

.testimonial-author img {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid #f0e6cc;
}

.testimonial-author h4 {
    color: #333;
    font-size: 1.2rem;
    margin-bottom: 5px;
    font-family: 'Cinzel', serif;
}

.testimonial-date {
    color: #888;
    font-size: 0.9rem;
    margin-bottom: 8px;
    font-family: 'Inter', sans-serif;
}

.stars {
    color: #d4af37;
    font-size: 1rem;
}

        /* Footer */
        footer {
         background-color: black;
            padding: 4rem 5% 2rem;
            color: white;
        }

        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 3rem;
            max-width: 1200px;
            margin: 0 auto;
        }

        .footer-logo a {
            display: flex;
            align-items: center;
            gap: 15px;
            text-decoration: none;
            margin-bottom: 1.5rem;
        }

        .footer-logo i {
            font-size: 2rem;
            color: var(--primary-gold);
        }

        .footer-logo h3 {
            font-size: 1.3rem;
            color: white;
            margin-bottom: 0.5rem;
        }

        .footer-tagline {
            color: rgba(255, 255, 255, 0.8);
            font-size: 0.9rem;
            font-family: 'Playfair Display', serif;
        }

        .footer-description {
            color: rgba(255, 255, 255, 0.7);
            margin-bottom: 1.5rem;
            font-family: 'Playfair Display', serif;
            line-height: 1.6;
        }

        .social-links {
            display: flex;
            gap: 1rem;
        }

        .social-links a {
            width: 40px;
            height: 40px;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--primary-gold);
            text-decoration: none;
            transition: all 0.3s ease;
        }

        .social-links a:hover {
            background: var(--primary-gold);
            color: var(--black-bg);
            transform: translateY(-3px);
        }

        .footer-section h4 {
            font-size: 1.2rem;
            margin-bottom: 1.5rem;
            color: white;
            font-weight: 600;
        }

        .footer-links {
            list-style: none;
        }

        .footer-links li {
            margin-bottom: 0.8rem;
        }

        .footer-links a {
            color: rgba(255, 255, 255, 0.8);
            text-decoration: none;
            transition: color 0.3s ease;
            display: flex;
            align-items: center;
            gap: 10px;
            font-family: 'Playfair Display', serif;
        }

        .footer-links a:hover {
            color: var(--primary-gold);
        }

        .visit-info p, .services-info p {
            color: rgba(255, 255, 255, 0.8);
            margin-bottom: 1rem;
            display: flex;
            align-items: center;
            gap: 10px;
            font-family: 'Playfair Display', serif;
        }

        .footer-bottom {
            margin-top: 3rem;
            padding-top: 2rem;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            text-align: center;
        }

        .footer-bottom-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
            max-width: 1200px;
            margin: 0 auto 1rem;
        }

        .footer-bottom p {
            color: rgba(255, 255, 255, 0.6);
            font-size: 0.9rem;
            font-family: 'Playfair Display', serif;
        }

        .footer-bottom-links {
            display: flex;
            gap: 2rem;
        }

        .footer-bottom-links a {
            color: rgba(255, 255, 255, 0.6);
            text-decoration: none;
            transition: color 0.3s ease;
            font-size: 0.9rem;
            font-family: 'Playfair Display', serif;
        }

        .footer-bottom-links a:hover {
            color: var(--primary-gold);
        }

        .disclaimer {
            color: rgba(255, 255, 255, 0.5);
            font-size: 0.8rem;
            margin-top: 1rem;
            font-family: 'Playfair Display', serif;
            font-style: italic;
        }

.visit-info p {
    color: #aaa;
    margin-bottom: 15px;
    display: flex;
    align-items: flex-start;
    gap: 15px;
    font-family: 'Inter', sans-serif;
}

.visit-info i {
    color: #d4af37;
    margin-top: 3px;
    min-width: 20px;
}

.newsletter-text {
    color: #aaa;
    margin-bottom: 20px;
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
}

.newsletter-form {
    display: flex;
    gap: 10px;
    margin-bottom: 15px;
}

.newsletter-form input {
    flex: 1;
    padding: 14px 20px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    background: rgba(255, 255, 255, 0.05);
    border-radius: 30px;
    color: #f5f5f5;
    font-size: 1rem;
    font-family: 'Inter', sans-serif;
}

.newsletter-form input::placeholder {
    color: #888;
}

.newsletter-form button {
    background: #d4af37;
    color: #000;
    border: none;
    width: 55px;
    height: 55px;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1.2rem;
}

.newsletter-form button:hover {
    background: #f5d76e;
    transform: scale(1.1);
}

.newsletter-note {
    color: #666;
    font-size: 0.85rem;
    font-style: italic;
    font-family: 'Inter', sans-serif;
}

.footer-bottom {
    padding-top: 40px;
    color: #888;
    font-size: 0.9rem;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-bottom-links {
    display: flex;
    gap: 30px;
}

.footer-bottom-links a {
    color: #aaa;
    text-decoration: none;
    transition: all 0.3s ease;
    font-family: 'Inter', sans-serif;
}

.footer-bottom-links a:hover {
    color: #d4af37;
}

.disclaimer {
    font-size: 0.8rem;
    color: #666;
    text-align: center;
    font-style: italic;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 20px;
    font-family: 'Inter', sans-serif;
}

/* WhatsApp Button */
.whatsapp-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: #25D366;
    color: white;
    padding: 16px 25px;
    border-radius: 50px;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 12px;
    box-shadow: 0 5px 20px rgba(37, 211, 102, 0.4);
    z-index: 999;
    transition: all 0.3s ease;
    font-family: 'Inter', sans-serif;
    font-weight: 500;
}

.whatsapp-btn:hover {
    background: #128C7E;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.5);
}

.whatsapp-btn i {
    font-size: 1.5rem;
}

/* Back to Top */
.back-to-top {
    position: fixed;
    bottom: 100px;
    right: 30px;
    background: #d4af37;
    color: white;
    border: none;
    width: 55px;
    height: 55px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 5px 20px rgba(212, 175, 55, 0.4);
    z-index: 998;
    transition: all 0.3s ease;
    opacity: 0;
    visibility: hidden;
    font-size: 1.2rem;
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    background: #f5d76e;
    transform: translateY(-3px);
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .store-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .store-info {
        padding: 40px;
    }
    
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: repeat(4, 250px);
    }
    
    .slide-title {
        font-size: 2.8rem;
    }
    
    .slide-description {
        font-size: 1.1rem;
    }
    
    .slide-btn {
        min-width: 160px;
        padding: 14px 25px;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 30px;
    }
    
    .stat {
        padding: 0;
    }
    
    .footer-bottom-content {
        flex-direction: column;
        text-align: center;
    }
    
    .footer-bottom-links {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .gallery-grid {
        grid-template-columns: 1fr;
        grid-template-rows: repeat(5, 250px);
    }
    
    .slide-title {
        font-size: 2.2rem;
    }
    
    .slide-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .slide-btn {
        width: 100%;
        max-width: 280px;
    }
    
    .collection-card {
        min-width: 100%;
    }
    
    .trending-grid {
        grid-template-columns: 1fr;
    }
}