/* ===== ÖZEL AVİZE - Premium Aydınlatma (Light Theme) ===== */

/* ---------- CSS Variables ---------- */
:root {
    --color-primary: #B8860B;
    --color-primary-light: #D4A843;
    --color-primary-dark: #8B6914;
    --color-gold: #B8860B;
    --color-gold-light: #F5E6C8;
    --color-gold-soft: rgba(184, 134, 11, 0.08);

    --color-dark: #1C1C1C;
    --color-heading: #2D2D2D;
    --color-text: #555555;
    --color-text-muted: #888888;
    --color-text-light: #AAAAAA;

    --color-white: #FFFFFF;
    --color-bg: #FFFFFF;
    --color-bg-warm: #FDFBF7;
    --color-bg-section: #F9F6F0;
    --color-bg-card: #FFFFFF;
    --color-border: #F0EBE1;
    --color-border-light: #F5F2EC;

    --font-heading: 'Playfair Display', serif;
    --font-body: 'Inter', sans-serif;
    --transition: all 0.35s ease;
    --shadow-soft: 0 2px 20px rgba(0, 0, 0, 0.04);
    --shadow-card: 0 4px 30px rgba(0, 0, 0, 0.06);
    --shadow-hover: 0 12px 40px rgba(0, 0, 0, 0.1);
    --shadow-gold: 0 8px 30px rgba(184, 134, 11, 0.12);
    --radius: 12px;
    --radius-lg: 20px;
}

/* ---------- Reset & Base ---------- */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    background-color: var(--color-bg);
    color: var(--color-text);
    line-height: 1.75;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    color: var(--color-heading);
    line-height: 1.3;
    font-weight: 600;
}

a {
    text-decoration: none;
    color: var(--color-gold);
    transition: var(--transition);
}

a:hover {
    color: var(--color-primary-dark);
}

img {
    max-width: 100%;
    height: auto;
}

/* ---------- Scrollbar ---------- */
::-webkit-scrollbar {
    width: 6px;
}

::-webkit-scrollbar-track {
    background: var(--color-bg-warm);
}

::-webkit-scrollbar-thumb {
    background: var(--color-border);
    border-radius: 3px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--color-gold);
}

/* ---------- Navbar ---------- */
.navbar-ozel {
    background: rgba(255, 255, 255, 0.97) !important;
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--color-border-light);
    padding: 0.9rem 0;
    transition: var(--transition);
    z-index: 1000;
}

.navbar-ozel.scrolled {
    padding: 0.6rem 0;
    box-shadow: 0 2px 30px rgba(0, 0, 0, 0.06);
}

.navbar-brand-ozel {
    font-family: var(--font-heading);
    font-size: 1.55rem;
    font-weight: 700;
    color: var(--color-heading) !important;
    letter-spacing: 0.5px;
}

.navbar-brand-ozel i {
    color: var(--color-gold);
}

.navbar-brand-ozel span {
    color: var(--color-gold);
}

.navbar-ozel .nav-link {
    color: var(--color-text) !important;
    font-weight: 450;
    font-size: 0.92rem;
    padding: 0.5rem 1.15rem !important;
    position: relative;
    letter-spacing: 0.3px;
    transition: var(--transition);
}

.navbar-ozel .nav-link:hover,
.navbar-ozel .nav-link.active {
    color: var(--color-gold) !important;
}

.navbar-ozel .nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: var(--color-gold);
    transition: var(--transition);
    border-radius: 1px;
}

.navbar-ozel .nav-link:hover::after,
.navbar-ozel .nav-link.active::after {
    width: 50%;
}

.navbar-toggler {
    border: 1px solid var(--color-border) !important;
    padding: 0.4rem 0.65rem;
}

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(45, 45, 45, 0.8)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e") !important;
}

/* ---------- Hero Section ---------- */
.hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(160deg, #FDFBF7 0%, #FFF9EF 30%, #FFFFFF 50%, #FFFDF8 70%, #F9F6F0 100%);
    overflow: hidden;
}

/* Warm ambient glow - top right */
.hero-section::before {
    content: '';
    position: absolute;
    top: -10%;
    right: -5%;
    width: 700px;
    height: 700px;
    background: radial-gradient(circle, rgba(212, 168, 67, 0.1) 0%, rgba(184, 134, 11, 0.03) 40%, transparent 70%);
    border-radius: 50%;
    animation: ambientDrift 12s ease-in-out infinite alternate;
}

/* Warm ambient glow - bottom left */
.hero-section::after {
    content: '';
    position: absolute;
    bottom: -15%;
    left: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(245, 230, 200, 0.25) 0%, rgba(184, 134, 11, 0.04) 40%, transparent 70%);
    border-radius: 50%;
    animation: ambientDrift 10s ease-in-out infinite alternate-reverse;
}

@keyframes ambientDrift {
    0% { transform: translate(0, 0) scale(1); }
    100% { transform: translate(30px, -20px) scale(1.08); }
}

/* --- Bokeh Container --- */
.hero-bokeh {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    pointer-events: none;
}

/* Bokeh orbs - soft blurred golden circles */
.bokeh {
    position: absolute;
    border-radius: 50%;
    opacity: 0;
    filter: blur(1px);
    animation: bokehFloat ease-in-out infinite;
}

.bokeh-1 { width: 120px; height: 120px; top: 15%; left: 8%; background: radial-gradient(circle, rgba(212,168,67,0.12) 0%, transparent 70%); animation-duration: 14s; animation-delay: 0s; filter: blur(8px); }
.bokeh-2 { width: 80px; height: 80px; top: 60%; left: 75%; background: radial-gradient(circle, rgba(245,230,200,0.18) 0%, transparent 70%); animation-duration: 11s; animation-delay: 2s; filter: blur(6px); }
.bokeh-3 { width: 150px; height: 150px; top: 25%; left: 65%; background: radial-gradient(circle, rgba(184,134,11,0.08) 0%, transparent 70%); animation-duration: 16s; animation-delay: 4s; filter: blur(12px); }
.bokeh-4 { width: 60px; height: 60px; top: 70%; left: 20%; background: radial-gradient(circle, rgba(212,168,67,0.15) 0%, transparent 70%); animation-duration: 10s; animation-delay: 1s; filter: blur(4px); }
.bokeh-5 { width: 100px; height: 100px; top: 10%; left: 45%; background: radial-gradient(circle, rgba(245,230,200,0.14) 0%, transparent 70%); animation-duration: 13s; animation-delay: 3s; filter: blur(10px); }
.bokeh-6 { width: 40px; height: 40px; top: 45%; left: 90%; background: radial-gradient(circle, rgba(184,134,11,0.18) 0%, transparent 70%); animation-duration: 9s; animation-delay: 5s; filter: blur(3px); }
.bokeh-7 { width: 90px; height: 90px; top: 80%; left: 55%; background: radial-gradient(circle, rgba(212,168,67,0.10) 0%, transparent 70%); animation-duration: 15s; animation-delay: 0.5s; filter: blur(8px); }
.bokeh-8 { width: 70px; height: 70px; top: 35%; left: 30%; background: radial-gradient(circle, rgba(245,230,200,0.16) 0%, transparent 70%); animation-duration: 12s; animation-delay: 6s; filter: blur(5px); }

@keyframes bokehFloat {
    0%   { opacity: 0; transform: translate(0, 0) scale(0.8); }
    20%  { opacity: 1; }
    50%  { transform: translate(20px, -30px) scale(1.15); }
    80%  { opacity: 1; }
    100% { opacity: 0; transform: translate(-10px, 20px) scale(0.9); }
}

/* --- Sparkle/Shimmer particles --- */
.hero-sparkles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    pointer-events: none;
}

.sparkle {
    position: absolute;
    width: 3px;
    height: 3px;
    background: var(--color-gold);
    border-radius: 50%;
    opacity: 0;
    box-shadow: 0 0 6px 2px rgba(212, 168, 67, 0.3);
}

.sparkle-1 { left: 12%; top: 20%; animation: sparkleGlow 4s ease-in-out 0s infinite; }
.sparkle-2 { left: 28%; top: 55%; animation: sparkleGlow 5s ease-in-out 1.2s infinite; }
.sparkle-3 { left: 45%; top: 15%; animation: sparkleGlow 3.5s ease-in-out 0.5s infinite; }
.sparkle-4 { left: 62%; top: 70%; animation: sparkleGlow 4.5s ease-in-out 2s infinite; }
.sparkle-5 { left: 78%; top: 30%; animation: sparkleGlow 3.8s ease-in-out 0.8s infinite; }
.sparkle-6 { left: 88%; top: 60%; animation: sparkleGlow 5.5s ease-in-out 3s infinite; }
.sparkle-7 { left: 35%; top: 80%; animation: sparkleGlow 4.2s ease-in-out 1.5s infinite; }
.sparkle-8 { left: 55%; top: 40%; animation: sparkleGlow 3.2s ease-in-out 2.5s infinite; }
.sparkle-9 { left: 20%; top: 75%; animation: sparkleGlow 5s ease-in-out 4s infinite; }
.sparkle-10 { left: 70%; top: 10%; animation: sparkleGlow 4s ease-in-out 3.5s infinite; }
.sparkle-11 { left: 5%; top: 45%; animation: sparkleGlow 4.8s ease-in-out 1s infinite; }
.sparkle-12 { left: 92%; top: 85%; animation: sparkleGlow 3.6s ease-in-out 2.2s infinite; }

@keyframes sparkleGlow {
    0%   { opacity: 0; transform: scale(0); }
    30%  { opacity: 0.8; transform: scale(1.2); }
    50%  { opacity: 0.4; transform: scale(0.8); }
    70%  { opacity: 0.9; transform: scale(1.5); }
    100% { opacity: 0; transform: scale(0); }
}

/* --- Light beam / chandelier ray --- */
.hero-light-beam {
    position: absolute;
    top: -5%;
    left: 50%;
    transform: translateX(-50%);
    width: 300px;
    height: 500px;
    background: linear-gradient(
        180deg,
        rgba(212, 168, 67, 0.06) 0%,
        rgba(245, 230, 200, 0.04) 40%,
        transparent 100%
    );
    clip-path: polygon(40% 0%, 60% 0%, 85% 100%, 15% 100%);
    animation: beamPulse 6s ease-in-out infinite;
    pointer-events: none;
}

.hero-light-beam-2 {
    position: absolute;
    top: -5%;
    left: 30%;
    width: 200px;
    height: 400px;
    background: linear-gradient(
        180deg,
        rgba(245, 230, 200, 0.05) 0%,
        rgba(212, 168, 67, 0.02) 50%,
        transparent 100%
    );
    clip-path: polygon(42% 0%, 58% 0%, 80% 100%, 20% 100%);
    animation: beamPulse 8s ease-in-out 2s infinite;
    pointer-events: none;
}

.hero-light-beam-3 {
    position: absolute;
    top: -5%;
    right: 20%;
    width: 180px;
    height: 350px;
    background: linear-gradient(
        180deg,
        rgba(212, 168, 67, 0.04) 0%,
        rgba(245, 230, 200, 0.03) 50%,
        transparent 100%
    );
    clip-path: polygon(43% 0%, 57% 0%, 78% 100%, 22% 100%);
    animation: beamPulse 7s ease-in-out 4s infinite;
    pointer-events: none;
}

@keyframes beamPulse {
    0%   { opacity: 0.3; }
    50%  { opacity: 1; }
    100% { opacity: 0.3; }
}

/* --- Floating particles (original, refined) --- */
.hero-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    pointer-events: none;
}

.hero-particle {
    position: absolute;
    border-radius: 50%;
    background: var(--color-gold);
    opacity: 0;
}

.hero-particle:nth-child(1) { width: 3px; height: 3px; left: 10%; animation: particleRise 12s ease-in-out 0s infinite; }
.hero-particle:nth-child(2) { width: 2px; height: 2px; left: 22%; animation: particleRise 10s ease-in-out 2s infinite; }
.hero-particle:nth-child(3) { width: 4px; height: 4px; left: 38%; animation: particleRise 14s ease-in-out 1s infinite; }
.hero-particle:nth-child(4) { width: 2px; height: 2px; left: 52%; animation: particleRise 11s ease-in-out 3s infinite; }
.hero-particle:nth-child(5) { width: 3px; height: 3px; left: 68%; animation: particleRise 13s ease-in-out 0.5s infinite; }
.hero-particle:nth-child(6) { width: 2px; height: 2px; left: 82%; animation: particleRise 10s ease-in-out 4s infinite; }
.hero-particle:nth-child(7) { width: 3px; height: 3px; left: 93%; animation: particleRise 12s ease-in-out 1.5s infinite; }

@keyframes particleRise {
    0%   { transform: translateY(100vh) rotate(0deg); opacity: 0; }
    10%  { opacity: 0.3; }
    50%  { opacity: 0.15; }
    90%  { opacity: 0.3; }
    100% { transform: translateY(-80px) rotate(180deg); opacity: 0; }
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 780px;
    padding: 0 2rem;
}

.hero-badge {
    display: inline-block;
    padding: 0.45rem 1.8rem;
    border: 1px solid var(--color-gold);
    border-radius: 50px;
    font-size: 0.75rem;
    letter-spacing: 3.5px;
    text-transform: uppercase;
    color: var(--color-gold);
    margin-bottom: 2rem;
    background: rgba(184, 134, 11, 0.04);
    animation: fadeInUp 0.8s ease 0.2s both;
}

.hero-title {
    font-size: 3.8rem;
    font-weight: 700;
    color: var(--color-heading);
    margin-bottom: 1.5rem;
    animation: fadeInUp 0.8s ease 0.4s both, shimmerSlide 6s ease-in-out 1.5s infinite;
    letter-spacing: -0.5px;
}

.hero-title.shimmer-text {
    background: linear-gradient(
        120deg,
        var(--color-heading) 0%,
        var(--color-heading) 35%,
        var(--color-gold-light) 48%,
        var(--color-gold) 50%,
        var(--color-gold-light) 52%,
        var(--color-heading) 65%,
        var(--color-heading) 100%
    );
    background-size: 250% 100%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-title .gold {
    color: var(--color-gold);
}

.hero-subtitle {
    font-size: 1.15rem;
    color: var(--color-text);
    margin-bottom: 2.5rem;
    font-weight: 350;
    line-height: 1.8;
    animation: fadeInUp 0.8s ease 0.6s both;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    animation: fadeInUp 0.8s ease 0.8s both;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(25px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ---------- Buttons ---------- */
.btn-gold {
    background: linear-gradient(135deg, var(--color-primary), var(--color-primary-light));
    color: var(--color-white) !important;
    padding: 0.85rem 2.5rem;
    border: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.92rem;
    letter-spacing: 0.3px;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(184, 134, 11, 0.25);
}

.btn-gold::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: 0.5s;
}

.btn-gold:hover::before {
    left: 100%;
}

.btn-gold:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(184, 134, 11, 0.35);
    color: var(--color-white) !important;
}

.btn-outline-gold {
    background: transparent;
    color: var(--color-gold) !important;
    padding: 0.85rem 2.5rem;
    border: 1.5px solid var(--color-gold);
    border-radius: 50px;
    font-weight: 550;
    font-size: 0.92rem;
    letter-spacing: 0.3px;
    transition: var(--transition);
}

.btn-outline-gold:hover {
    background: var(--color-gold);
    color: var(--color-white) !important;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(184, 134, 11, 0.25);
}

/* ---------- Section Styles ---------- */
.section {
    padding: 6rem 0;
}

.section-warm {
    background: var(--color-bg-section);
}

.section-title {
    text-align: center;
    margin-bottom: 4rem;
}

.section-title .overline {
    display: block;
    font-family: var(--font-body);
    font-size: 0.78rem;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--color-gold);
    margin-bottom: 0.8rem;
    font-weight: 550;
}

.section-title h2 {
    font-size: 2.6rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--color-heading);
}

.section-title p {
    color: var(--color-text);
    max-width: 580px;
    margin: 0 auto;
    font-size: 1.02rem;
}

.section-divider {
    width: 50px;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--color-gold), transparent);
    margin: 1rem auto;
}

/* ---------- Product Card ---------- */
.product-card {
    position: relative;
    background: var(--color-bg-card);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: var(--transition);
    border: 1px solid var(--color-border-light);
    height: 100%;
}

.product-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-hover);
    border-color: transparent;
}

.product-card-img {
    position: relative;
    height: 280px;
    overflow: hidden;
    background: var(--color-bg-section);
}

.product-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.product-card:hover .product-card-img img {
    transform: scale(1.06);
}

.product-badge {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background: var(--color-gold);
    color: var(--color-white);
    padding: 0.3rem 0.9rem;
    border-radius: 50px;
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.product-card-body {
    padding: 1.5rem;
}

.product-card-category {
    color: var(--color-gold);
    font-size: 0.75rem;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.product-card-title {
    font-size: 1.15rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--color-heading);
}

.product-card-desc {
    color: var(--color-text-muted);
    font-size: 0.88rem;
    margin-bottom: 1rem;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.product-card-price {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    color: var(--color-heading);
    font-weight: 700;
}

.product-card-link {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    color: var(--color-gold);
    font-size: 0.88rem;
    font-weight: 550;
    transition: var(--transition);
}

.product-card-link:hover {
    gap: 0.7rem;
    color: var(--color-primary-dark);
}

/* ---------- Category Card ---------- */
.category-card {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    height: 280px;
    transition: var(--transition);
    cursor: pointer;
    box-shadow: var(--shadow-soft);
}

.category-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(28, 28, 28, 0.75) 0%, rgba(28, 28, 28, 0.05) 60%);
    z-index: 1;
    transition: var(--transition);
}

.category-card:hover::before {
    background: linear-gradient(to top, rgba(184, 134, 11, 0.65) 0%, rgba(28, 28, 28, 0.1) 60%);
}

.category-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.category-card:hover img {
    transform: scale(1.08);
}

.category-card-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 1.8rem;
    z-index: 2;
}

.category-card-content h4 {
    font-size: 1.25rem;
    font-weight: 600;
    color: #FFFFFF;
    margin-bottom: 0.3rem;
}

.category-card-content p {
    color: rgba(255,255,255,0.75);
    font-size: 0.85rem;
    margin: 0;
}

.category-card:hover .category-card-content p {
    color: rgba(255,255,255,0.95);
}

/* ---------- About Preview ---------- */
.about-preview-image {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-card);
}

.about-stats {
    display: flex;
    gap: 2.5rem;
    margin-top: 2rem;
    flex-wrap: wrap;
}

.about-stat {
    text-align: center;
}

.about-stat .number {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--color-gold);
    display: block;
    line-height: 1.2;
}

.about-stat .label {
    font-size: 0.85rem;
    color: var(--color-text-muted);
    font-weight: 450;
}

/* ---------- Gallery ---------- */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.gallery-item {
    position: relative;
    border-radius: var(--radius);
    overflow: hidden;
    height: 300px;
    cursor: pointer;
    box-shadow: var(--shadow-soft);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.gallery-item:hover img {
    transform: scale(1.08);
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(28, 28, 28, 0.6);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-overlay h5 {
    font-size: 1.15rem;
    margin-bottom: 0.25rem;
    color: #FFFFFF;
}

.gallery-overlay p {
    color: var(--color-gold-light);
    font-size: 0.85rem;
}

/* ---------- Contact ---------- */
.contact-form {
    background: var(--color-bg-card);
    border-radius: var(--radius-lg);
    padding: 2.5rem;
    border: 1px solid var(--color-border);
    box-shadow: var(--shadow-soft);
}

.form-floating > .form-control,
.form-floating > .form-select {
    background: var(--color-bg-warm);
    border: 1px solid var(--color-border);
    color: var(--color-heading);
    border-radius: 10px;
    font-size: 0.95rem;
}

.form-floating > .form-control:focus {
    background: var(--color-white);
    border-color: var(--color-gold);
    color: var(--color-heading);
    box-shadow: 0 0 0 3px rgba(184, 134, 11, 0.1);
}

.form-floating > label {
    color: var(--color-text-muted);
}

.form-floating > .form-control:focus ~ label,
.form-floating > .form-control:not(:placeholder-shown) ~ label {
    color: var(--color-gold);
}

textarea.form-control {
    min-height: 150px;
}

.contact-info-card {
    background: var(--color-bg-card);
    border-radius: var(--radius-lg);
    padding: 2rem;
    border: 1px solid var(--color-border);
    box-shadow: var(--shadow-soft);
    height: 100%;
}

.contact-info-item {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    margin-bottom: 1.5rem;
}

.contact-info-item:last-child {
    margin-bottom: 0;
}

.contact-info-icon {
    width: 48px;
    height: 48px;
    border-radius: var(--radius);
    background: var(--color-gold-soft);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-gold);
    font-size: 1.15rem;
    flex-shrink: 0;
}

.contact-info-text h6 {
    font-family: var(--font-body);
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--color-text-muted);
    margin-bottom: 0.2rem;
    font-weight: 550;
}

.contact-info-text p {
    color: var(--color-heading);
    font-size: 0.95rem;
    margin: 0;
}

.contact-info-divider {
    margin: 1.75rem 0 1.25rem;
    border: 0;
    border-top: 1px solid var(--color-border);
}

/* Contact page social media links */
.contact-social {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.contact-social-link {
    display: flex;
    align-items: center;
    gap: 0.85rem;
    padding: 0.85rem 1.1rem;
    border-radius: var(--radius);
    border: 1px solid var(--color-border);
    color: var(--color-heading);
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 500;
    background: var(--color-bg-warm);
    transition: var(--transition);
}

.contact-social-link i {
    font-size: 1.2rem;
    color: var(--color-gold);
    width: 22px;
    text-align: center;
}

.contact-social-link:hover {
    background: var(--color-gold-soft);
    border-color: var(--color-gold);
    color: var(--color-gold);
    transform: translateX(4px);
}

.contact-social-link:hover i {
    color: var(--color-gold);
}

.contact-social-whatsapp i {
    color: #25D366;
}

.contact-social-whatsapp:hover {
    background: rgba(37, 211, 102, 0.06);
    border-color: #25D366;
    color: #1a9e52;
}

.contact-social-whatsapp:hover i {
    color: #25D366;
}

/* ---------- Page Header ---------- */
.page-header {
    background: linear-gradient(160deg, #FDFBF7 0%, #FFF9EF 50%, #F9F6F0 100%);
    padding: 8rem 0 4rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 50% 80%, rgba(184, 134, 11, 0.04) 0%, transparent 60%);
}

.page-header h1 {
    font-size: 2.8rem;
    font-weight: 700;
    margin-bottom: 1rem;
    position: relative;
    color: var(--color-heading);
}

.page-header .breadcrumb {
    justify-content: center;
    position: relative;
}

.page-header .breadcrumb-item,
.page-header .breadcrumb-item a {
    color: var(--color-text-muted);
    font-size: 0.88rem;
}

.page-header .breadcrumb-item.active {
    color: var(--color-gold);
}

.breadcrumb-item + .breadcrumb-item::before {
    color: var(--color-text-light) !important;
}

/* ---------- Product Detail ---------- */
.product-detail-img {
    border-radius: var(--radius-lg);
    overflow: hidden;
    background: var(--color-bg-section);
    box-shadow: var(--shadow-card);
}

.product-detail-img img {
    width: 100%;
    height: 500px;
    object-fit: cover;
}

.product-detail-info h1 {
    font-size: 2.3rem;
    margin-bottom: 0.5rem;
    color: var(--color-heading);
}

.product-detail-category {
    color: var(--color-gold);
    font-size: 0.82rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-weight: 600;
    margin-bottom: 1rem;
    display: block;
}

.product-detail-price {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    color: var(--color-heading);
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.product-detail-desc {
    color: var(--color-text);
    font-size: 1.02rem;
    line-height: 1.85;
    margin-bottom: 2rem;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.feature-icon {
    width: 44px;
    height: 44px;
    border-radius: var(--radius);
    background: var(--color-gold-soft);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-gold);
    flex-shrink: 0;
}

.feature-item strong {
    font-size: 0.9rem;
    color: var(--color-heading);
    display: block;
}

.feature-item span {
    font-size: 0.8rem;
    color: var(--color-text-muted);
}

/* ---------- Filter Buttons ---------- */
.filter-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 0.65rem;
    justify-content: center;
    margin-bottom: 3rem;
}

.filter-btn {
    padding: 0.55rem 1.4rem;
    border: 1.5px solid var(--color-border);
    border-radius: 50px;
    background: transparent;
    color: var(--color-text);
    font-size: 0.88rem;
    font-weight: 450;
    transition: var(--transition);
    cursor: pointer;
    text-decoration: none;
}

.filter-btn:hover,
.filter-btn.active {
    background: var(--color-gold);
    color: var(--color-white);
    border-color: var(--color-gold);
}

/* ---------- Footer ---------- */
.footer {
    background: var(--color-bg-section);
    border-top: 1px solid var(--color-border);
    padding: 4.5rem 0 0;
}

.footer-brand {
    font-family: var(--font-heading);
    font-size: 1.45rem;
    font-weight: 700;
    color: var(--color-heading);
    margin-bottom: 1rem;
    display: block;
}

.footer-brand i {
    color: var(--color-gold);
}

.footer-brand span {
    color: var(--color-gold);
}

.footer-desc {
    color: var(--color-text-muted);
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.footer h5 {
    font-family: var(--font-body);
    font-size: 0.9rem;
    font-weight: 650;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 1.5rem;
    color: var(--color-heading);
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 0.65rem;
    color: var(--color-text-muted);
    font-size: 0.9rem;
}

.footer-links a {
    color: var(--color-text-muted);
    font-size: 0.9rem;
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--color-gold);
    padding-left: 4px;
}

.footer-social {
    display: flex;
    gap: 0.65rem;
}

.footer-social a {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: var(--color-gold-soft);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-gold);
    transition: var(--transition);
}

.footer-social a:hover {
    background: var(--color-gold);
    color: var(--color-white);
    transform: translateY(-3px);
}

.footer-bottom {
    border-top: 1px solid var(--color-border);
    padding: 1.5rem 0;
    margin-top: 3rem;
    text-align: center;
}

.footer-bottom p {
    color: var(--color-text-muted);
    font-size: 0.84rem;
    margin: 0;
}

/* ---------- WhatsApp Float ---------- */
.whatsapp-float {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: #25D366;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.35);
    z-index: 999;
    transition: var(--transition);
}

.whatsapp-float:hover {
    transform: scale(1.1);
    color: white;
    box-shadow: 0 6px 30px rgba(37, 211, 102, 0.5);
}

/* ---------- About Page ---------- */
.about-feature {
    text-align: center;
    padding: 2.5rem 1.5rem;
    border-radius: var(--radius-lg);
    background: var(--color-bg-card);
    border: 1px solid var(--color-border-light);
    transition: var(--transition);
    height: 100%;
}

.about-feature:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-card);
    border-color: transparent;
}

.about-feature-icon {
    width: 68px;
    height: 68px;
    border-radius: 16px;
    background: var(--color-gold-soft);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-gold);
    font-size: 1.7rem;
    margin: 0 auto 1.5rem;
}

.about-feature h4 {
    font-size: 1.05rem;
    margin-bottom: 0.75rem;
    color: var(--color-heading);
}

.about-feature p {
    color: var(--color-text-muted);
    font-size: 0.9rem;
    line-height: 1.6;
}

/* ---------- Placeholder Image ---------- */
.placeholder-img {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--color-bg-section) 0%, var(--color-bg-warm) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-gold);
    font-size: 3rem;
    min-height: 200px;
    opacity: 0.6;
}

/* ---------- Alert ---------- */
.alert-success-custom {
    background: rgba(37, 211, 102, 0.08);
    border: 1px solid rgba(37, 211, 102, 0.2);
    color: #1a9e4a;
    border-radius: var(--radius);
    padding: 1rem 1.5rem;
    font-size: 0.95rem;
}

.text-danger {
    color: #e74c3c !important;
    font-size: 0.83rem;
}

/* ---------- Overline helper ---------- */
.overline {
    font-family: var(--font-body);
    font-size: 0.78rem;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--color-gold);
    font-weight: 550;
}

/* ---------- CTA Section ---------- */
.cta-section {
    background: linear-gradient(160deg, #FDFBF7 0%, #FFF9EF 50%, #F9F6F0 100%);
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(184, 134, 11, 0.04) 0%, transparent 70%);
    border-radius: 50%;
}

/* ---------- Section Glow Decorations ---------- */
.section-glow {
    position: relative;
    overflow: hidden;
}

.section-glow::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 350px;
    height: 350px;
    background: radial-gradient(circle, rgba(212,168,67,0.04) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.section-glow::after {
    content: '';
    position: absolute;
    bottom: -80px;
    left: -80px;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(245,230,200,0.06) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

/* Decorative line between sections */
.section-separator {
    height: 1px;
    background: linear-gradient(90deg, transparent 10%, var(--color-border) 50%, transparent 90%);
    position: relative;
}

.section-separator::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 8px;
    height: 8px;
    background: var(--color-gold);
    border-radius: 50%;
    box-shadow: 0 0 10px rgba(212,168,67,0.3);
}

/* Shimmer text effect for hero title */
.shimmer-text {
    background: linear-gradient(
        120deg,
        var(--color-heading) 0%,
        var(--color-heading) 40%,
        var(--color-gold) 50%,
        var(--color-heading) 60%,
        var(--color-heading) 100%
    );
    background-size: 200% 100%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: shimmerSlide 6s ease-in-out infinite;
}

@keyframes shimmerSlide {
    0%   { background-position: 200% center; }
    100% { background-position: -200% center; }
}

/* Subtle card shine on hover */
.product-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: -75%;
    width: 50%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.08), transparent);
    transform: skewX(-15deg);
    transition: 0.6s;
    pointer-events: none;
}

.product-card:hover::after {
    left: 125%;
}

/* ---------- Responsive ---------- */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.4rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .section-title h2 {
        font-size: 2rem;
    }

    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .page-header h1 {
        font-size: 2rem;
    }

    .about-stats {
        justify-content: center;
    }

    .product-detail-img img {
        height: 300px;
    }

    .product-detail-info h1 {
        font-size: 1.7rem;
    }

    .category-card {
        height: 220px;
    }
}

@media (max-width: 576px) {
    .hero-title {
        font-size: 1.9rem;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
    }

    .section {
        padding: 4rem 0;
    }

    .contact-form {
        padding: 1.5rem;
    }
}
