/* Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600&family=Playfair+Display:ital,wght@0,400;0,600;1,400&display=swap');

:root {
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Outfit', sans-serif;
    --color-primary: #8b7355; /* Gold/Bronze-ish from logo potentially */
    --color-secondary: #fdfbf7; /* Off-white background */
    --color-text: #333;
    --color-text-light: #666;
    --color-border: #e0e0e0;
    --color-hover: #a68b6c;
}

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

body {
    font-family: var(--font-body);
    background-color: var(--color-secondary);
    color: var(--color-text);
    line-height: 1.6;
}

a {
    text-decoration: none;
    color: inherit;
    transition: color 0.3s ease;
}

a:hover {
    color: var(--color-primary);
}

/* Top Bar */
.top-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 40px;
    background-color: #fff;
    border-bottom: 1px solid var(--color-border);
    position: relative;
    z-index: 100;
}

.social-icons a {
    margin-right: 15px;
    font-size: 1.2rem;
}

.top-menu {
    display: flex;
    align-items: center;
    gap: 20px;
}

.top-menu a {
    font-weight: 500;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 1px;
}

.hamburger-btn {
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    margin-left: 10px;
    color: var(--color-text);
}

.dropdown-menu {
    display: none;
    position: absolute;
    top: 100%;
    right: 0;
    background: #fff;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    width: 200px;
    border: 1px solid var(--color-border);
}

.dropdown-menu.active {
    display: flex;
    flex-direction: column;
}

.dropdown-menu a {
    padding: 15px 20px;
    border-bottom: 1px solid #f0f0f0;
}

/* Header */
.site-header {
    text-align: center;
    padding: 40px 20px;
}

.site-header h1 {
    font-family: var(--font-heading);
    font-size: 3rem;
    font-weight: 400;
    letter-spacing: 2px;
    color: var(--color-text);
}

/* Hero Circles */
.hero-circles {
    display: flex;
    justify-content: center;
    gap: 40px;
    padding: 20px;
    flex-wrap: wrap;
}

.circle-item {
    text-align: center;
    width: 140px;
}

.circle-img {
    width: 140px;
    height: 140px;
    border-radius: 50%;
    background-color: #eee;
    background-size: cover;
    background-position: center;
    margin-bottom: 10px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
    border: 1px solid var(--color-border);
}

.circle-item:hover .circle-img {
    transform: scale(1.05);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

.circle-item span {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    color: var(--color-text);
}

/* Search Section */
.search-section {
    display: flex;
    justify-content: center;
    padding: 40px 20px;
}

.search-container {
    position: relative;
    width: 100%;
    max-width: 500px;
    border: 1px solid var(--color-text);
    display: flex;
}

#search-box {
    width: 100%;
    padding: 15px 20px;
    border: none;
    outline: none;
    font-family: var(--font-body);
    font-size: 1rem;
    background: transparent;
}

#search-btn {
    background: transparent;
    border: none;
    padding: 0 20px;
    cursor: pointer;
    font-size: 1.1rem;
}

/* Category Nav */
.category-nav {
    padding: 20px 40px;
    text-align: center;
}

#category-list {
    list-style: none;
    display: inline-flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
}

#category-list li {
    cursor: pointer;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 1px;
    position: relative;
    padding-bottom: 5px;
    transition: color 0.3s ease;
}

#category-list li::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0%;
    height: 1px;
    background-color: var(--color-text);
    transition: width 0.3s ease;
}

#category-list li:hover::after,
#category-list li.active::after {
    width: 100%;
}

#category-list li.active {
    font-weight: 600;
}

/* Product Grid */
.product-grid-section {
    padding: 40px;
    max-width: 1400px;
    margin: 0 auto;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 40px;
    margin-bottom: 50px;
}

.product-card {
    background: #fff;
    border: 1px solid transparent;
    transition: all 0.3s ease;
    padding-bottom: 15px;
}

.product-card:hover {
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    border-color: #f0f0f0;
    transform: translateY(-5px);
}

.product-img-wrapper {
    width: 100%;
    height: 350px;
    background-color: #f9f9f9;
    overflow: hidden;
    position: relative;
    margin-bottom: 15px;
}

.product-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* or contain depending on image type */
    transition: transform 0.5s ease;
}

.product-card:hover .product-img-wrapper img {
    transform: scale(1.03);
}

.product-info {
    text-align: center;
    padding: 0 15px;
}

.product-title {
    font-family: var(--font-body);
    font-size: 1.1rem;
    margin-bottom: 8px;
    color: var(--color-text);
}

.product-price {
    font-weight: 600;
    color: var(--color-primary);
    margin-bottom: 10px;
}

.view-btn {
    display: inline-block;
    padding: 8px 20px;
    border: 1px solid var(--color-text);
    background: transparent;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

.view-btn:hover {
    background: var(--color-text);
    color: #fff;
}

.load-more-container {
    text-align: center;
    margin-bottom: 40px;
}

#view-more-btn {
    padding: 12px 30px;
    background-color: var(--color-text);
    color: #fff;
    border: none;
    font-family: var(--font-body);
    text-transform: uppercase;
    letter-spacing: 2px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

#view-more-btn:hover {
    background-color: var(--color-primary);
}

/* Footer */
.site-footer {
    background-color: #fff;
    padding: 60px 40px 20px;
    border-top: 1px solid var(--color-border);
}

.footer-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    max-width: 1400px;
    margin: 0 auto;
    gap: 40px;
}

.footer-left {
    flex: 1;
    min-width: 250px;
}

#footer-logo-img {
    max-width: 150px;
}

.footer-menus {
    display: flex;
    flex: 2;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 30px;
}

.footer-col h3 {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    margin-bottom: 20px;
    color: var(--color-text);
}

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

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

.footer-col ul li a {
    color: var(--color-text-light);
    font-size: 0.95rem;
}

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

.copyright {
    text-align: center;
    margin-top: 60px;
    color: var(--color-text-light);
    font-size: 0.85rem;
}

/* Responsive */
@media (max-width: 768px) {
    .site-header h1 {
        font-size: 2rem;
    }
    
    .hero-circles {
        gap: 20px;
        overflow-x: auto;
        justify-content: flex-start;
        padding-bottom: 40px; /* Space for scrollbar if needed */
    }
    
    .circle-item {
        flex-shrink: 0;
    }
    
    .footer-content {
        flex-direction: column;
    }
    
    .footer-menus {
        flex-direction: column;
    }
}
