/* ---------- GROUP: CURATED GIFTS STYLES ---------- */
/* Based on main style.css with gift-specific additions */

/* ---------- GLOBAL THEME ---------- */
body {
    margin: 0;
    font-family: 'Segoe UI', Roboto, 'Helvetica Neue', sans-serif;
    background-color: #eef2f5;
    color: #1a2a3a;
}

/* ---------- HEADER & NAV ---------- */
.site-header {
    background-color: #0a2a3a;
    padding: 1.2rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 3px solid #d4af37;
    flex-wrap: wrap;
    gap: 1rem;
}
.logo h1 {
    font-size: 1.5rem;
    margin: 0;
    letter-spacing: 1px;
    color: #ffffff;
}
.logo span {
    font-weight: 300;
    color: #d4af37;
}
.main-nav a {
    color: #ffffff;
    margin-left: 2rem;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s;
}
.main-nav a:hover {
    color: #d4af37;
}
.main-nav a.gift-nav {
    color: #d4af37;
    font-weight: 600;
}

/* ---------- HERO SECTION ---------- */
.gift-hero {
    text-align: center;
    padding: 3rem 2rem;
    background: linear-gradient(135deg, #fcf9f5 0%, #f5ede3 100%);
    border-bottom: 3px solid #d4af37;
}
.gift-hero h1 {
    font-size: 2.8rem;
    color: #0a2a3a;
    margin-bottom: 0.2rem;
}
.gift-hero .gold-text {
    color: #d4af37;
}
.gift-hero .tagline {
    font-size: 1.2rem;
    color: #5a6a7a;
    font-style: italic;
}
.gold-accent {
    width: 80px;
    height: 3px;
    background: #d4af37;
    margin: 1rem auto;
}
.location {
    font-size: 1rem;
    color: #2a3a4a;
    margin-top: 0.5rem;
}

/* ---------- FEATURES SECTION ---------- */
.gift-features {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.5rem;
    padding: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}
.gift-feature {
    text-align: center;
    min-width: 120px;
    flex: 1 0 120px;
}
.gift-feature .icon {
    font-size: 2rem;
    display: block;
}
.gift-feature h4 {
    margin: 0.3rem 0 0.1rem;
    color: #0a2a3a;
    font-size: 0.95rem;
}
.gift-feature p {
    margin: 0;
    color: #5a6a7a;
    font-size: 0.85rem;
}

/* ---------- FILTER BAR ---------- */
.filter-bar {
    background: #ffffff;
    margin: 1rem auto;
    padding: 1.5rem;
    border-radius: 16px;
    max-width: 1200px;
    border: 1px solid #d4af37;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}
.search-input {
    width: 100%;
    padding: 12px 16px;
    font-size: 1rem;
    border-radius: 40px;
    border: 1px solid #c0c8d0;
    background: #ffffff;
    color: #1a2a3a;
    margin-bottom: 1rem;
    box-sizing: border-box;
}
.search-input:focus {
    outline: none;
    border-color: #d4af37;
}
.filter-group {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
    align-items: center;
    margin-top: 0.5rem;
}
.filter-label {
    font-weight: bold;
    color: #0a2a3a;
    margin-right: 0.5rem;
    font-size: 0.9rem;
}
.filter-group label {
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    cursor: pointer;
    color: #2a3a4a;
    font-size: 0.85rem;
    background: #f5f7f9;
    padding: 4px 12px;
    border-radius: 20px;
    transition: background 0.2s;
}
.filter-group label:hover {
    background: #e8ecf0;
}
.no-results {
    text-align: center;
    padding: 3rem;
    color: #7a8a9a;
    font-size: 1.2rem;
}

/* ---------- PRODUCT GRID ---------- */
.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1.5rem;
    padding: 2rem;
    max-width: 1400px;
    margin: 0 auto;
}
.product-card {
    background: #ffffff;
    border-radius: 12px;
    padding: 1rem;
    text-align: center;
    transition: transform 0.2s, box-shadow 0.2s;
    border: 1px solid #d4af37;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
    position: relative;
}
.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
    border-color: #b8941e;
}
.product-card img {
    width: 100%;
    height: auto;
    object-fit: contain;
    border-radius: 8px;
    margin-bottom: 0.2rem;
    background: #f5f7f9;
    display: block;
}
.product-card .gift-tag {
    position: absolute;
    top: 10px;
    right: 10px;
    background: #d4af37;
    color: white;
    padding: 2px 10px;
    border-radius: 12px;
    font-size: 0.65rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.product-card h3 {
    font-size: 0.95rem;
    margin: 0.5rem 0 0.2rem;
    color: #0a2a3a;
    min-height: 40px;
}
.product-sub {
    font-size: 0.8rem;
    color: #7a8a9a;
    margin: 0.2rem 0;
}
.price {
    font-weight: bold;
    font-size: 1rem;
    color: #d4af37;
    margin: 0.5rem 0;
}
.product-card .occasion-tag {
    display: inline-block;
    background: #f5f0eb;
    color: #5a6a7a;
    padding: 2px 10px;
    border-radius: 12px;
    font-size: 0.7rem;
    margin: 0.2rem 0.2rem;
}
.gold-button {
    display: inline-block;
    background: #d4af37;
    color: #0a2a3a;
    padding: 8px 16px;
    border-radius: 40px;
    text-decoration: none;
    font-weight: bold;
    margin-top: 0.5rem;
    transition: 0.1s;
    font-size: 0.85rem;
    border: none;
    cursor: pointer;
}
.gold-button:hover {
    background: #c4a02a;
    color: #ffffff;
}
.gold-button.large {
    padding: 14px 32px;
    font-size: 1.1rem;
}

/* ---------- PRODUCT DETAIL PAGE ---------- */
.product-detail-page {
    display: flex;
    justify-content: center;
    padding: 3rem 1rem;
}
.product-detail-card {
    background: #ffffff;
    border: 1px solid #d4af37;
    border-radius: 24px;
    padding: 2rem;
    max-width: 550px;
    text-align: center;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}
.main-product-image {
    width: 100%;
    max-width: 400px;
    border-radius: 16px;
    margin-bottom: 1rem;
}
.thumbnail-row {
    display: flex;
    gap: 0.75rem;
    justify-content: center;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
}
.thumbnail {
    width: 70px;
    height: 70px;
    object-fit: cover;
    border-radius: 8px;
    cursor: pointer;
    border: 2px solid #e0e6ea;
    transition: 0.1s;
}
.thumbnail:hover {
    border-color: #d4af37;
    transform: scale(1.05);
}
.product-description {
    margin: 1rem 0;
    line-height: 1.5;
    color: #2a3a4a;
}
.product-code {
    font-size: 0.8rem;
    color: #7a8a9a;
    background: #f5f7f9;
    display: inline-block;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    margin: 0.5rem auto;
    letter-spacing: 0.5px;
}
.back-link {
    display: inline-block;
    margin-top: 1.5rem;
    color: #d4af37;
    text-decoration: none;
}
.back-link:hover {
    text-decoration: underline;
}
.delivery-note {
    background: #f5f7f9;
    border-left: 3px solid #d4af37;
    padding: 0.5rem 1rem;
    font-size: 0.9rem;
    margin: 1rem 0;
    color: #2a3a4a;
}
.delivery-note a {
    color: #d4af37;
}

/* ---------- BUTTONS ---------- */
.button-group {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin: 1.5rem 0;
    flex-wrap: wrap;
}
.email-btn {
    background: #d4af37;
    color: #0a2a3a;
}
.whatsapp-btn {
    background: #25D366;
    color: #ffffff;
}
.whatsapp-btn:hover {
    background: #20b858;
}
.availability-btn {
    border: none;
    font-weight: bold;
    padding: 10px 20px;
    border-radius: 40px;
    cursor: pointer;
    font-size: 0.9rem;
    transition: 0.1s linear;
}
.availability-btn:hover {
    transform: scale(0.98);
}

/* ---------- FOOTER ---------- */
.site-footer {
    text-align: center;
    padding: 1.5rem;
    font-size: 0.8rem;
    background: #0a2a3a;
    border-top: 1px solid #d4af37;
    margin-top: 2rem;
    color: #c0d0e0;
}
.site-footer a {
    color: #d4af37;
    text-decoration: none;
}
.site-footer a:hover {
    text-decoration: underline;
}
.social-links {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1.5rem;
    margin: 1rem 0;
}
.social-links a {
    color: #d4af37;
    text-decoration: none;
    font-size: 0.9rem;
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
}
.social-links a:hover {
    color: #ffffff;
    text-decoration: underline;
}

/* ---------- MOBILE RESPONSIVE ---------- */
@media (max-width: 768px) {
    .site-header {
        flex-direction: column;
        text-align: center;
        padding: 1rem;
    }
    .logo h1 {
        font-size: 1.4rem;
        word-break: break-word;
        line-height: 1.3;
    }
    .main-nav {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 0.75rem;
    }
    .main-nav a {
        margin: 0;
        font-size: 0.85rem;
    }
    .gift-hero h1 {
        font-size: 2rem;
    }
    .product-grid {
        gap: 1rem;
        padding: 1rem;
        grid-template-columns: repeat(2, 1fr);
    }
    .product-card img {
        height: 130px;
    }
    .filter-group {
        gap: 0.4rem;
    }
    .filter-group label {
        font-size: 0.7rem;
        padding: 2px 8px;
    }
    .filter-bar {
        padding: 1rem;
    }
    .search-input {
        font-size: 0.9rem;
        padding: 10px 12px;
    }
    .social-links {
        gap: 1rem;
    }
    .social-links a {
        font-size: 0.8rem;
    }
    .gift-features {
        gap: 1rem;
        padding: 1rem;
    }
    .gift-feature {
        min-width: 80px;
        flex: 1 0 80px;
    }
    .gift-feature .icon {
        font-size: 1.5rem;
    }
    .gift-feature h4 {
        font-size: 0.8rem;
    }
    .gift-feature p {
        font-size: 0.7rem;
    }
}

@media (max-width: 480px) {
    .product-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.8rem;
        padding: 0.8rem;
    }
    .product-card img {
        height: 100px;
    }
    .product-card h3 {
        font-size: 0.75rem;
        min-height: 30px;
    }
    .price {
        font-size: 0.85rem;
    }
    .gold-button {
        padding: 5px 10px;
        font-size: 0.7rem;
    }
    .gift-hero h1 {
        font-size: 1.6rem;
    }
    .gift-hero .tagline {
        font-size: 1rem;
    }
}