/* FIX SHOP LOGO SIZE */
header .logo img {
    height: 70px;
    width: auto;
}

/* PAGE HERO AREA */
.page-hero {
    margin-top: 140px;
    text-align: center;
    padding: 20px;
}

.page-hero h1 {
    font-size: 2.3rem;
    color: var(--gold);
}

.page-hero p {
    opacity: 0.8;
}

/* SHOP COLLECTIONS */
.shop-collections {
    text-align: center;
    padding: 40px 0;
}

.section-title {
    font-size: 1.8rem;
    margin-bottom: 30px;
    color: var(--gold);
}

/* GRID */
.collection-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 40px;
    width: 90%;
    max-width: 900px;
    margin: auto;
}

/* PRODUCT CARDS */
.collection-card {
    background: #111;
    border: 1px solid rgba(255, 215, 0, 0.2);
    padding: 20px;
    border-radius: 12px;
    transition: 0.3s;
}

.collection-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 0 18px rgba(255, 215, 0, 0.3);
}

/* SMALL FIXED IMAGE SIZE */
.collection-img {
    width: 120px;     /* 👑 FIXED SIZE */
    height: 120px;
    object-fit: contain;
    margin-bottom: 15px;
}

/* BUTTONS */
.shop-btn {
    display: inline-block;
    margin-top: 12px;
    background: var(--gold);
    color: #111;
    padding: 10px 18px;
    border-radius: 6px;
    font-weight: bold;
    text-decoration: none;
}

.shop-btn:hover {
    background: #f1c85b;
}

/* BRAND STORY */
.brand-story {
    width: 80%;
    max-width: 800px;
    margin: 70px auto;
    text-align: center;
    line-height: 1.6;
}

.brand-story h2 {
    color: var(--gold);
}

.donation-note {
    margin-top: 15px;
    color: var(--gold);
}
