/* ==========================================
   CSS VARIABLES & RESET
   ========================================== */
:root {
    --cream: #f5f0e8;
    --cream-light: #faf7f2;
    --cream-dark: #ebe4d6;
    --gold: #b8952a;
    --gold-light: #d4af37;
    --gold-dark: #8b6914;
    --brown: #5c4033;
    --brown-light: #7a5c4f;
    --brown-dark: #3e2723;
    --olive: #7a8450;
    --olive-light: #9aab6b;
    --text-dark: #2c1810;
    --text-medium: #5c4033;
    --text-light: #8b7355;
    --white: #ffffff;
    --black: #1a1a1a;

    --shadow-sm: 0 2px 8px rgba(92, 64, 51, 0.08);
    --shadow-md: 0 4px 20px rgba(92, 64, 51, 0.12);
    --shadow-lg: 0 10px 40px rgba(92, 64, 51, 0.15);
    --shadow-xl: 0 20px 60px rgba(92, 64, 51, 0.2);

    --radius: 16px;
    --radius-sm: 10px;
    --radius-lg: 24px;

    --transition: all 0.3s ease;
    --transition-slow: all 0.6s ease;

    --font-heading: 'Playfair Display', Georgia, serif;
    --font-body: 'Lato', 'Segoe UI', sans-serif;
    --font-script: 'Great Vibes', cursive;
}

*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
}

body {
    font-family: var(--font-body);
    color: var(--text-dark);
    background: var(--cream-light);
    line-height: 1.7;
    overflow-x: hidden;
}

a { text-decoration: none; color: inherit; }
ul { list-style: none; }
img { max-width: 100%; height: auto; display: block; }
button { cursor: pointer; border: none; outline: none; font-family: inherit; }
input, select, textarea { font-family: inherit; outline: none; }

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ==========================================
   LOADING SCREEN
   ========================================== */
.loader {
    position: fixed;
    inset: 0;
    background: var(--cream);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.6s ease, visibility 0.6s ease;
}

.loader.hidden {
    opacity: 0;
    visibility: hidden;
}

.loader-content {
    text-align: center;
}

.loader-cross {
    font-size: 3rem;
    color: var(--gold);
    margin-bottom: 10px;
    animation: pulse 1.5s ease infinite;
}

.loader-content h2 {
    font-family: var(--font-heading);
    font-size: 2rem;
    color: var(--brown-dark);
    margin-bottom: 5px;
}

.loader-content p {
    font-style: italic;
    color: var(--text-light);
    margin-bottom: 25px;
}

.loader-spinner {
    width: 40px;
    height: 40px;
    border: 3px solid var(--cream-dark);
    border-top-color: var(--gold);
    border-radius: 50%;
    margin: 0 auto;
    animation: spin 0.8s linear infinite;
}

@keyframes spin { to { transform: rotate(360deg); } }
@keyframes pulse {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.15); opacity: 0.7; }
}

/* ==========================================
   BUTTONS
   ========================================== */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 32px;
    border-radius: 50px;
    font-size: 0.95rem;
    font-weight: 700;
    transition: var(--transition);
    border: 2px solid transparent;
    letter-spacing: 0.5px;
}

.btn-primary {
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    color: var(--white);
    border-color: var(--gold);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(184, 149, 42, 0.4);
    background: linear-gradient(135deg, var(--gold-light), var(--gold));
}

.btn-outline-light {
    border: 2px solid rgba(255,255,255,0.7);
    color: var(--white);
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(5px);
}

.btn-outline-light:hover {
    background: var(--white);
    color: var(--brown-dark);
    transform: translateY(-3px);
}

.btn-nav {
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    color: var(--white);
    padding: 10px 24px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 700;
}

.btn-nav:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(184, 149, 42, 0.3);
}

.btn-block { width: 100%; justify-content: center; }

/* ==========================================
   HEADER
   ========================================== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    transition: var(--transition);
}

.header.scrolled {
    background: rgba(245, 240, 232, 0.95);
    backdrop-filter: blur(20px);
    box-shadow: var(--shadow-md);
}

.navbar {
    padding: 12px 0;
}

.navbar .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}

.logo { flex-shrink: 0; }

.logo-img {
    height: 60px;
    width: auto;
    border-radius: 50%;
    transition: var(--transition);
    box-shadow: 0 4px 15px rgba(0,0,0,0.15);
}

.header.scrolled .logo-img { height: 50px; }

.nav-links {
    display: flex;
    align-items: center;
    gap: 5px;
}

.nav-link {
    padding: 8px 18px;
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--white);
    border-radius: 50px;
    transition: var(--transition);
    letter-spacing: 0.5px;
    text-shadow: 0 2px 6px rgba(0,0,0,0.5);
}

.header.scrolled .nav-link {
    color: var(--text-dark);
    text-shadow: none;
}

.nav-link:hover,
.nav-link.active {
    background: rgba(184, 149, 42, 0.3);
    color: var(--gold-light);
    text-shadow: none;
}

.header.scrolled .nav-link:hover,
.header.scrolled .nav-link.active {
    background: rgba(184, 149, 42, 0.15);
    color: var(--gold-dark);
}

.nav-right {
    display: flex;
    align-items: center;
    gap: 15px;
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    padding: 5px;
    z-index: 1001;
}

.hamburger span {
    width: 28px;
    height: 3px;
    background: var(--white);
    border-radius: 3px;
    transition: var(--transition);
    box-shadow: 0 1px 3px rgba(0,0,0,0.3);
}

.header.scrolled .hamburger span {
    background: var(--brown-dark);
    box-shadow: none;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 6px);
}
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -7px);
}

.mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 300px;
    height: 100vh;
    background: var(--cream);
    z-index: 999;
    padding: 100px 30px 30px;
    transition: 0.4s ease;
    box-shadow: var(--shadow-xl);
}

.mobile-menu.active { right: 0; }

.mobile-nav-links li { margin-bottom: 5px; }

.mobile-link {
    display: block;
    padding: 14px 20px;
    font-weight: 600;
    font-size: 1.05rem;
    color: var(--text-dark);
    border-radius: var(--radius-sm);
    transition: var(--transition);
}

.mobile-link:hover {
    background: rgba(184, 149, 42, 0.15);
    color: var(--gold-dark);
    padding-left: 28px;
}

/* ==========================================
   HERO SECTION (LOGO AS BACKGROUND)
   ========================================== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background: url('../images/logo.jpeg') center/cover no-repeat;
    z-index: 0;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        rgba(26, 26, 26, 0.75) 0%,
        rgba(62, 39, 35, 0.7) 50%,
        rgba(26, 26, 26, 0.8) 100%
    );
    z-index: 1;
}

.hero-particles {
    position: absolute;
    inset: 0;
    z-index: 2;
    pointer-events: none;
}

.particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: var(--gold-light);
    border-radius: 50%;
    opacity: 0;
    animation: float-particle linear infinite;
    box-shadow: 0 0 8px var(--gold-light);
}

@keyframes float-particle {
    0% { opacity: 0; transform: translateY(100vh) scale(0); }
    10% { opacity: 1; }
    90% { opacity: 1; }
    100% { opacity: 0; transform: translateY(-10vh) scale(1); }
}

.hero .container {
    position: relative;
    z-index: 3;
    text-align: center;
}

.hero-content {
    max-width: 750px;
    margin: 0 auto;
    color: var(--white);
}

.hero-cross {
    font-size: 2.5rem;
    color: var(--gold-light);
    margin-bottom: 15px;
    animation: pulse 2s ease infinite;
    text-shadow: 0 0 20px rgba(212, 175, 55, 0.5);
}

.hero-tagline {
    display: inline-block;
    font-family: var(--font-script);
    font-size: 1.8rem;
    color: var(--gold-light);
    margin-bottom: 10px;
    text-shadow: 0 2px 8px rgba(0,0,0,0.5);
}

.hero-title {
    font-family: var(--font-heading);
    margin-bottom: 20px;
}

.title-line {
    display: block;
    font-size: 4.5rem;
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: 2px;
    text-shadow: 0 4px 20px rgba(0,0,0,0.5);
}

.title-line.accent {
    color: var(--gold-light);
    font-size: 3.5rem;
}

.hero-verse {
    font-family: var(--font-heading);
    font-style: italic;
    font-size: 1.15rem;
    opacity: 0.95;
    max-width: 550px;
    margin: 0 auto 5px;
    line-height: 1.6;
    text-shadow: 0 2px 8px rgba(0,0,0,0.5);
}

.hero-verse-ref {
    font-size: 0.95rem;
    color: var(--gold-light);
    font-weight: 600;
    margin-bottom: 20px;
    text-shadow: 0 2px 8px rgba(0,0,0,0.5);
}

.hero-description {
    font-size: 1.1rem;
    opacity: 0.9;
    margin-bottom: 20px;
    text-shadow: 0 2px 8px rgba(0,0,0,0.5);
}

.hero-qualities {
    font-weight: 700;
    color: var(--gold-light);
    letter-spacing: 2px;
    font-size: 0.9rem;
}

.hero-price-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    color: var(--white);
    padding: 12px 28px;
    border-radius: 50px;
    font-weight: 800;
    font-size: 1rem;
    margin-bottom: 30px;
    box-shadow: 0 8px 25px rgba(184, 149, 42, 0.5);
    animation: pulse 2.5s ease infinite;
    letter-spacing: 1px;
}

.hero-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 50px;
}

.scroll-indicator {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.scroll-indicator span {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    opacity: 0.7;
}

.scroll-arrow {
    animation: bounce-down 2s ease infinite;
}

@keyframes bounce-down {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(10px); }
}

/* ==========================================
   SECTION STYLING
   ========================================== */
.section-label {
    display: inline-block;
    font-family: var(--font-script);
    font-size: 1.4rem;
    color: var(--gold);
    margin-bottom: 5px;
}

.section-label.light { color: var(--gold-light); }

.section-title {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 10px;
}

.section-title span { color: var(--gold-dark); }

.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin: 15px 0;
}

.section-divider::before,
.section-divider::after {
    content: '';
    width: 60px;
    height: 1px;
    background: var(--gold);
    opacity: 0.4;
}

.divider-cross {
    color: var(--gold);
    font-size: 1rem;
}

.section-subtitle {
    font-size: 1.05rem;
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto;
}

.section-subtitle strong {
    color: var(--gold-dark);
    font-weight: 800;
}

/* ==========================================
   ABOUT SECTION
   ========================================== */
.about {
    padding: 100px 0;
    background: var(--white);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-image {
    position: relative;
}

.about-image img {
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    width: 100%;
    height: 550px;
    object-fit: cover;
}

.about-image-accent {
    position: absolute;
    top: -15px;
    left: -15px;
    right: 15px;
    bottom: 15px;
    border: 3px solid var(--gold);
    border-radius: var(--radius-lg);
    opacity: 0.3;
    z-index: -1;
}

.about-content .section-title {
    text-align: left;
}

.about-content .about-divider {
    justify-content: flex-start;
    margin: 15px 0 25px;
}

.about-content p {
    color: var(--text-medium);
    font-size: 1rem;
    margin-bottom: 15px;
    line-height: 1.8;
}

.about-content p strong {
    color: var(--gold-dark);
    font-weight: 800;
}

.about-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-top: 30px;
}

.about-feature {
    display: flex;
    gap: 15px;
    align-items: flex-start;
}

.feature-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(184,149,42,0.1), rgba(184,149,42,0.2));
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: var(--gold-dark);
    font-size: 1.1rem;
}

.about-feature h4 {
    font-size: 0.95rem;
    font-weight: 700;
    margin-bottom: 3px;
    color: var(--text-dark);
}

.about-feature p {
    font-size: 0.85rem;
    color: var(--text-light);
    margin: 0;
}

/* ==========================================
   CATEGORIES / PRODUCTS
   ========================================== */
.categories {
    padding: 100px 0;
    background: var(--cream-light);
}

.filter-tabs {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.filter-tab {
    padding: 10px 22px;
    border-radius: 50px;
    background: var(--white);
    color: var(--text-medium);
    font-weight: 600;
    font-size: 0.88rem;
    transition: var(--transition);
    border: 2px solid var(--cream-dark);
    display: flex;
    align-items: center;
    gap: 6px;
}

.filter-tab i { font-size: 0.8rem; }

.filter-tab.active,
.filter-tab:hover {
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    color: var(--white);
    border-color: var(--gold);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(184, 149, 42, 0.3);
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.product-card {
    background: var(--white);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-slow);
    cursor: pointer;
    position: relative;
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
}

.product-card .card-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    z-index: 5;
    padding: 5px 14px;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--white);
    background: var(--gold);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.product-card .card-price-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    z-index: 5;
    background: linear-gradient(135deg, var(--brown-dark), var(--black));
    color: var(--white);
    padding: 8px 16px;
    border-radius: 50px;
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 800;
    box-shadow: 0 4px 15px rgba(0,0,0,0.3);
    border: 2px solid var(--gold);
}

.product-card .card-price-badge::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    border-radius: 50px;
    z-index: -1;
    opacity: 0.5;
}

.product-card .card-actions {
    position: absolute;
    bottom: 320px;
    right: 15px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    opacity: 0;
    transform: translateX(15px);
    transition: var(--transition);
    z-index: 5;
}

.product-card:hover .card-actions {
    opacity: 1;
    transform: translateX(0);
}

.card-actions button {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: var(--white);
    color: var(--text-dark);
    font-size: 0.95rem;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
}

.card-actions button:hover {
    background: var(--gold);
    color: var(--white);
}

.product-card .card-image {
    height: 320px;
    overflow: hidden;
    position: relative;
}

.product-card .card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-slow);
}

.product-card:hover .card-image img {
    transform: scale(1.08);
}

.product-card .card-info {
    padding: 22px;
}

.card-category {
    font-size: 0.75rem;
    color: var(--gold-dark);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 6px;
}

.card-info h3 {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 8px;
    line-height: 1.4;
    min-height: 50px;
}

.card-verse {
    font-family: var(--font-heading);
    font-style: italic;
    font-size: 0.85rem;
    color: var(--text-light);
    margin-bottom: 15px;
    line-height: 1.5;
    min-height: 40px;
}

.card-price-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 15px;
    padding-bottom: 15px;
    border-bottom: 2px dashed var(--cream-dark);
}

.price-tag {
    display: flex;
    align-items: center;
    gap: 4px;
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 900;
    color: var(--gold-dark);
}

.price-tag .currency {
    font-size: 1.1rem;
    margin-top: -8px;
}

.card-type {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 0.8rem;
    color: var(--text-light);
    font-weight: 600;
}

.card-type i { color: var(--gold); }

.card-footer .order-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    padding: 12px 20px;
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    color: var(--white);
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 700;
    transition: var(--transition);
    letter-spacing: 0.5px;
}

.card-footer .order-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(184, 149, 42, 0.4);
    background: linear-gradient(135deg, var(--gold-light), var(--gold));
}

/* ==========================================
   FEATURED BANNER
   ========================================== */
.featured-banner {
    position: relative;
    padding: 100px 0;
    overflow: hidden;
}

.featured-bg {
    position: absolute;
    inset: 0;
    background: url('../images/logo.jpeg') center/cover no-repeat fixed;
}

.featured-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(62,39,35,0.9), rgba(26,26,26,0.88));
}

.featured-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 650px;
    margin: 0 auto;
    color: var(--white);
}

.featured-content h2 {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 10px;
    line-height: 1.3;
}

.featured-ref {
    color: var(--gold-light);
    font-weight: 600;
    margin-bottom: 20px;
    font-size: 1.1rem;
}

.featured-desc {
    opacity: 0.9;
    font-size: 1.05rem;
    margin-bottom: 35px;
    line-height: 1.8;
}

.featured-desc strong {
    color: var(--gold-light);
    font-weight: 800;
}

/* ==========================================
   GALLERY
   ========================================== */
.gallery {
    padding: 100px 0;
    background: var(--white);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.gallery-item {
    position: relative;
    border-radius: var(--radius);
    overflow: hidden;
    cursor: pointer;
    aspect-ratio: 1;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-slow);
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-item .gallery-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(62,39,35,0.92) 0%, transparent 60%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 20px;
    opacity: 0;
    transition: var(--transition);
}

.gallery-item:hover .gallery-overlay { opacity: 1; }

.gallery-overlay h4 {
    color: var(--white);
    font-family: var(--font-heading);
    font-size: 1rem;
    margin-bottom: 3px;
}

.gallery-overlay span {
    color: var(--gold-light);
    font-size: 0.8rem;
    font-weight: 600;
}

.gallery-overlay .gallery-price {
    margin-top: 6px;
    color: var(--white);
    background: var(--gold);
    display: inline-block;
    padding: 3px 12px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 800;
    width: fit-content;
}

.gallery-item:nth-child(1) {
    grid-column: span 2;
    grid-row: span 2;
}

/* ==========================================
   SCRIPTURE SECTION
   ========================================== */
.scripture-section {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--cream), var(--cream-dark));
}

.scripture-slider {
    max-width: 700px;
    margin: 0 auto;
}

.scripture-card {
    text-align: center;
    padding: 50px 40px;
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    transition: opacity 0.4s ease, transform 0.4s ease;
}

.scripture-icon {
    font-size: 2.5rem;
    color: var(--gold);
    margin-bottom: 25px;
}

.scripture-card blockquote {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-style: italic;
    color: var(--text-dark);
    line-height: 1.7;
    margin-bottom: 15px;
}

.scripture-card cite {
    font-style: normal;
    font-weight: 700;
    color: var(--gold-dark);
    font-size: 1rem;
}

.scripture-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-top: 30px;
}

.scripture-btn {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--white);
    color: var(--gold-dark);
    font-size: 1rem;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
}

.scripture-btn:hover {
    background: var(--gold);
    color: var(--white);
    transform: scale(1.1);
}

.scripture-dots {
    display: flex;
    gap: 8px;
}

.scripture-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--cream-dark);
    cursor: pointer;
    transition: var(--transition);
}

.scripture-dot.active {
    background: var(--gold);
    width: 28px;
    border-radius: 10px;
}

/* ==========================================
   TESTIMONIALS
   ========================================== */
.testimonials {
    padding: 100px 0;
    background: var(--cream-light);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.testimonial-card {
    background: var(--white);
    padding: 35px;
    border-radius: var(--radius);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    border-top: 4px solid transparent;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-top-color: var(--gold);
}

.testimonial-stars {
    color: var(--gold-light);
    font-size: 0.95rem;
    margin-bottom: 15px;
    display: flex;
    gap: 3px;
}

.testimonial-card > p {
    font-size: 0.95rem;
    color: var(--text-medium);
    line-height: 1.8;
    margin-bottom: 20px;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.author-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 1.1rem;
}

.testimonial-author h4 {
    font-size: 0.95rem;
    font-weight: 700;
}

.testimonial-author span {
    font-size: 0.8rem;
    color: var(--gold-dark);
    font-weight: 600;
}

/* ==========================================
   CONTACT
   ========================================== */
.contact {
    padding: 100px 0;
    background: var(--white);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 50px;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-card {
    padding: 25px;
    background: var(--cream-light);
    border-radius: var(--radius);
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 18px;
}

.contact-card:hover {
    transform: translateX(5px);
    box-shadow: var(--shadow-md);
}

.contact-icon {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.contact-card h3 {
    font-size: 1rem;
    margin-bottom: 2px;
}

.contact-card p {
    font-size: 0.9rem;
    color: var(--text-light);
}

.contact-social {
    padding: 25px;
    background: var(--cream-light);
    border-radius: var(--radius);
}

.contact-social h3 {
    font-size: 1rem;
    margin-bottom: 15px;
}

.social-links {
    display: flex;
    gap: 12px;
}

.social-links a {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: var(--white);
    color: var(--text-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    transition: var(--transition);
    box-shadow: var(--shadow-sm);
}

.social-links a:hover {
    background: var(--gold);
    color: var(--white);
    transform: translateY(-3px);
}

.contact-form-wrapper {
    background: var(--cream-light);
    padding: 40px;
    border-radius: var(--radius-lg);
}

.contact-form .form-row {
    display: flex;
    gap: 15px;
}

.form-group {
    flex: 1;
    margin-bottom: 18px;
}

.form-group label {
    display: block;
    font-weight: 700;
    font-size: 0.9rem;
    margin-bottom: 6px;
    color: var(--text-dark);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 13px 18px;
    border: 2px solid var(--cream-dark);
    border-radius: var(--radius-sm);
    font-size: 0.95rem;
    background: var(--white);
    color: var(--text-dark);
    transition: var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--gold);
    box-shadow: 0 0 0 4px rgba(184, 149, 42, 0.1);
}

.form-group textarea { resize: vertical; }

/* ==========================================
   NEWSLETTER
   ========================================== */
.newsletter {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--brown-dark), var(--brown));
    color: var(--white);
}

.newsletter-content {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.newsletter-icon {
    font-size: 2.5rem;
    color: var(--gold-light);
    margin-bottom: 15px;
}

.newsletter-content h2 {
    font-family: var(--font-heading);
    font-size: 2rem;
    margin-bottom: 10px;
}

.newsletter-content > p {
    opacity: 0.8;
    margin-bottom: 30px;
}

.newsletter-form {
    display: flex;
    gap: 10px;
    max-width: 480px;
    margin: 0 auto;
}

.newsletter-form input {
    flex: 1;
    padding: 14px 22px;
    border-radius: 50px;
    border: 2px solid rgba(255,255,255,0.2);
    background: rgba(255,255,255,0.1);
    color: var(--white);
    font-size: 0.95rem;
}

.newsletter-form input::placeholder { color: rgba(255,255,255,0.5); }

.newsletter-form input:focus {
    border-color: var(--gold-light);
    background: rgba(255,255,255,0.15);
}

/* ==========================================
   FOOTER
   ========================================== */
.footer {
    background: var(--black);
    color: rgba(255,255,255,0.7);
    padding: 60px 0 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
    gap: 40px;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.footer-logo {
    height: 70px;
    border-radius: 50%;
    margin-bottom: 15px;
}

.footer-brand p {
    font-size: 0.9rem;
    line-height: 1.8;
    margin-bottom: 15px;
    opacity: 0.7;
}

.footer-brand p strong {
    color: var(--gold-light);
    font-weight: 800;
}

.footer-verse {
    background: rgba(255,255,255,0.05);
    padding: 15px;
    border-radius: var(--radius-sm);
    border-left: 3px solid var(--gold);
}

.footer-verse em {
    font-size: 0.85rem;
    display: block;
    margin-bottom: 5px;
    opacity: 0.8;
}

.footer-verse span {
    font-size: 0.8rem;
    color: var(--gold-light);
    font-weight: 600;
}

.footer-col h3 {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    color: var(--white);
    margin-bottom: 20px;
}

.footer-col ul li {
    margin-bottom: 10px;
}

.footer-col ul li a {
    font-size: 0.9rem;
    opacity: 0.6;
    transition: var(--transition);
}

.footer-col ul li a:hover {
    opacity: 1;
    color: var(--gold-light);
    padding-left: 5px;
}

.footer-social {
    display: flex;
    gap: 10px;
    margin-bottom: 20px;
}

.footer-social a {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: rgba(255,255,255,0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    transition: var(--transition);
}

.footer-social a:hover {
    background: var(--gold);
    color: var(--white);
    transform: translateY(-3px);
}

.footer-contact p {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 8px;
    font-size: 0.9rem;
    opacity: 0.6;
}

.footer-contact i { color: var(--gold); }

.footer-bottom {
    text-align: center;
    padding: 20px 0;
    font-size: 0.85rem;
    opacity: 0.5;
}

/* ==========================================
   PRODUCT MODAL
   ========================================== */
.modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(26, 26, 26, 0.7);
    backdrop-filter: blur(8px);
    z-index: 5000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}

.modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.modal-content {
    background: var(--white);
    border-radius: var(--radius-lg);
    max-width: 850px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    animation: modalIn 0.5s ease;
}

@keyframes modalIn {
    from { transform: scale(0.9) translateY(30px); opacity: 0; }
    to { transform: scale(1) translateY(0); opacity: 1; }
}

.modal-close {
    position: absolute;
    top: 15px;
    right: 15px;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: var(--cream-light);
    color: var(--text-dark);
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    transition: var(--transition);
}

.modal-close:hover {
    background: var(--brown-dark);
    color: var(--white);
}

.modal-body {
    display: flex;
    gap: 30px;
    padding: 30px;
}

.modal-image {
    flex: 1;
    position: relative;
}

.modal-image img {
    width: 100%;
    height: 450px;
    object-fit: cover;
    border-radius: var(--radius);
}

.modal-image-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background: var(--gold);
    color: var(--white);
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.modal-info {
    flex: 1;
    padding-top: 10px;
}

.modal-category {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--gold-dark);
    margin-bottom: 8px;
}

.modal-info h2 {
    font-family: var(--font-heading);
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 15px;
    line-height: 1.3;
}

.modal-price-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-heading);
    font-size: 2.2rem;
    font-weight: 900;
    color: var(--white);
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    padding: 8px 25px;
    border-radius: 50px;
    margin-bottom: 20px;
    box-shadow: 0 6px 20px rgba(184, 149, 42, 0.4);
}

.modal-description {
    color: var(--text-medium);
    font-size: 0.95rem;
    line-height: 1.8;
    margin-bottom: 20px;
}

.modal-verse {
    background: var(--cream-light);
    padding: 18px;
    border-radius: var(--radius-sm);
    border-left: 4px solid var(--gold);
    margin-bottom: 25px;
    font-family: var(--font-heading);
    font-style: italic;
    font-size: 0.95rem;
    color: var(--text-dark);
    line-height: 1.6;
}

.modal-features {
    display: flex;
    gap: 15px;
    margin-bottom: 25px;
    flex-wrap: wrap;
}

.modal-feature {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-medium);
    padding: 8px 14px;
    background: var(--cream-light);
    border-radius: 50px;
}

.modal-feature i { color: var(--gold); }

.modal-inquire {
    margin-top: 10px;
    width: 100%;
    justify-content: center;
}

/* ==========================================
   TOAST
   ========================================== */
.toast-container {
    position: fixed;
    top: 100px;
    right: 20px;
    z-index: 9000;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.toast {
    display: flex;
    align-items: center;
    gap: 12px;
    background: var(--white);
    padding: 15px 25px;
    border-radius: var(--radius);
    box-shadow: var(--shadow-xl);
    min-width: 300px;
    animation: toastIn 0.4s ease;
    border-left: 4px solid var(--gold);
}

@keyframes toastIn {
    from { transform: translateX(100px); opacity: 0; }
    to { transform: translateX(0); opacity: 1; }
}

.toast.removing {
    animation: toastOut 0.3s ease forwards;
}

@keyframes toastOut {
    to { transform: translateX(100px); opacity: 0; }
}

.toast i {
    font-size: 1.3rem;
    color: var(--gold);
}

.toast-message { flex: 1; }
.toast-message strong { display: block; font-size: 0.9rem; }
.toast-message span { font-size: 0.8rem; color: var(--text-light); }

.toast-close {
    background: none;
    color: var(--text-light);
    font-size: 1rem;
    transition: var(--transition);
}

.toast-close:hover { color: var(--text-dark); }

/* ==========================================
   SCROLL TO TOP
   ========================================== */
.scroll-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    color: var(--white);
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: var(--transition);
    box-shadow: var(--shadow-lg);
}

.scroll-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.scroll-top:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(184, 149, 42, 0.5);
}

/* ==========================================
   ANIMATIONS (scroll reveal)
   ========================================== */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ==========================================
   RESPONSIVE
   ========================================== */

/* Large tablets */
@media (max-width: 1024px) {
    .products-grid { grid-template-columns: repeat(2, 1fr); }
    .about-grid { gap: 40px; }
    .gallery-grid { grid-template-columns: repeat(3, 1fr); }
    .gallery-item:nth-child(1) { grid-column: span 1; grid-row: span 1; }
    .footer-grid { grid-template-columns: repeat(2, 1fr); }
}

/* Tablets */
@media (max-width: 768px) {
    .nav-links { display: none; }
    .btn-nav { display: none; }
    .hamburger { display: flex; }

    .title-line { font-size: 3rem; }
    .title-line.accent { font-size: 2.5rem; }
    .hero-tagline { font-size: 1.5rem; }
    .hero-price-badge { font-size: 0.9rem; padding: 10px 22px; }

    .about-grid { grid-template-columns: 1fr; }
    .about-image img { height: 400px; }
    .about-image-accent { display: none; }
    .about-content .section-title { text-align: center; }
    .about-content .about-divider { justify-content: center; }
    .about-content p { text-align: center; }

    .products-grid { grid-template-columns: repeat(2, 1fr); gap: 20px; }
    .product-card .card-price-badge { font-size: 0.9rem; padding: 6px 12px; }

    .gallery-grid { grid-template-columns: repeat(2, 1fr); }

    .testimonials-grid { grid-template-columns: 1fr; max-width: 500px; margin: 0 auto; }

    .contact-grid { grid-template-columns: 1fr; }
    .contact-form-wrapper { padding: 25px; }

    .footer-grid { grid-template-columns: 1fr; text-align: center; }
    .footer-verse { text-align: left; }
    .footer-social { justify-content: center; }
    .footer-contact p { justify-content: center; }

    .modal-body { flex-direction: column; }
    .modal-image img { height: 300px; }
    .modal-price-tag { font-size: 1.8rem; }

    .section-title { font-size: 2rem; }

    .featured-content h2 { font-size: 2rem; }

    .newsletter-form { flex-direction: column; }

    .contact-form .form-row { flex-direction: column; gap: 0; }

    .featured-bg { background-attachment: scroll; }
}

/* Mobile */
@media (max-width: 480px) {
    .container { padding: 0 15px; }

    .logo-img { height: 45px; }
    .header.scrolled .logo-img { height: 40px; }

    .title-line { font-size: 2.3rem; }
    .title-line.accent { font-size: 1.9rem; }
    .hero-tagline { font-size: 1.3rem; }
    .hero-verse { font-size: 1rem; }
    .hero-buttons { flex-direction: column; align-items: center; }
    .btn { padding: 12px 26px; font-size: 0.9rem; }

    .section-title { font-size: 1.7rem; }
    .section-label { font-size: 1.2rem; }

    .filter-tabs { gap: 6px; }
    .filter-tab { padding: 8px 14px; font-size: 0.78rem; }
    .filter-tab i { display: none; }

    .products-grid { grid-template-columns: 1fr; gap: 20px; }
    .product-card .card-image { height: 280px; }
    .product-card .card-actions { opacity: 1; transform: none; bottom: 280px; }
    .product-card .card-price-badge { font-size: 1rem; padding: 7px 14px; }

    .price-tag { font-size: 1.6rem; }

    .gallery-grid { grid-template-columns: 1fr 1fr; gap: 10px; }

    .about-features { grid-template-columns: 1fr; }
    .about-image img { height: 300px; }

    .scripture-card { padding: 30px 20px; }
    .scripture-card blockquote { font-size: 1.15rem; }

    .featured-content h2 { font-size: 1.6rem; }

    .contact-form-wrapper { padding: 20px; }

    .toast { min-width: auto; margin: 0 10px; }

    .mobile-menu { width: 100%; }

    .newsletter-content h2 { font-size: 1.6rem; }

    .scroll-top { width: 44px; height: 44px; bottom: 20px; right: 20px; }

    .modal-price-tag { font-size: 1.6rem; padding: 6px 20px; }
}

@media (max-width: 360px) {
    .title-line { font-size: 2rem; }
    .title-line.accent { font-size: 1.6rem; }
    .gallery-grid { grid-template-columns: 1fr; }
}
/* ==========================================
   CLICKABLE CONTACT LINKS
   ========================================== */
.contact-link {
    text-decoration: none;
    color: inherit;
    cursor: pointer;
}

.contact-link:hover {
    transform: translateX(5px);
    box-shadow: var(--shadow-md);
    background: var(--white);
}

.contact-link .contact-icon {
    transition: var(--transition);
}

.contact-link:hover .contact-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 6px 20px rgba(184, 149, 42, 0.4);
}

.contact-link:hover h3 {
    color: var(--gold-dark);
}

/* Footer contact links */
.footer-contact p a {
    color: inherit;
    opacity: 1;
    transition: var(--transition);
    text-decoration: none;
}

.footer-contact p a:hover {
    color: var(--gold-light);
    opacity: 1 !important;
}