/* ==========================================
   1. MİMARİ VE RENK DEĞİŞKENLERİ
   ========================================== */
:root {
    --bg-cream: #FAF8F5;
    --bg-white: #FFFFFF;
    --primary-gold: #C5A059;
    --hover-gold: #B38E46;
    --dark-gold: #8C6D2D;
    --text-dark: #1A1A1A;
    --text-muted: #666666;
    --border-color: #E8E2D8;
    --shadow-soft: 0 10px 30px rgba(0, 0, 0, 0.05);
    --shadow-hover: 0 15px 35px rgba(197, 160, 89, 0.15);
    --transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    --font-heading: 'Cormorant Garamond', serif;
    --font-body: 'Montserrat', sans-serif;
}

/* ==========================================
   2. GENEL SIFIRLAMA VE TEMEL BİLEŞENLER
   ========================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-body);
    background-color: var(--bg-white);
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

button {
    cursor: pointer;
    border: none;
    outline: none;
    background: none;
    font-family: var(--font-body);
    transition: var(--transition);
}

.container {
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 20px;
}

.section-padding {
    padding: 80px 0;
}

.bg-cream {
    background-color: var(--bg-cream);
}

.w-100 {
    width: 100%;
}

.mt-20 {
    margin-top: 20px;
}

/* Başlık ve Bölüm Düzenleri */
.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-subtitle {
    font-size: 0.85rem;
    letter-spacing: 3px;
    color: var(--primary-gold);
    font-weight: 600;
    text-transform: uppercase;
    display: block;
    margin-bottom: 8px;
}

.section-title {
    font-family: var(--font-heading);
    font-size: 2.8rem;
    font-weight: 500;
    color: var(--text-dark);
}

.gold-divider {
    width: 60px;
    height: 2px;
    background: var(--primary-gold);
    margin: 15px auto 0 auto;
}

.gold-divider.left-align {
    margin-left: 0;
}

/* Buton Stilleri */
.btn {
    display: inline-block;
    padding: 14px 32px;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    border-radius: 2px;
    transition: var(--transition);
    text-align: center;
}

.btn-primary {
    background-color: var(--primary-gold);
    color: #ffffff;
    border: 1px solid var(--primary-gold);
}

.btn-primary:hover {
    background-color: var(--hover-gold);
    border-color: var(--hover-gold);
    box-shadow: 0 5px 15px rgba(197, 160, 89, 0.3);
}

.btn-outline {
    background-color: transparent;
    color: #ffffff;
    border: 1px solid #ffffff;
}

.btn-outline:hover {
    background-color: #ffffff;
    color: var(--text-dark);
}

/* ==========================================
   3. ANNOUNCEMENT BAR & NAVBAR
   ========================================== */
.announcement-bar {
    background-color: var(--text-dark);
    color: #FAF8F5;
    text-align: center;
    padding: 8px 15px;
    font-size: 0.78rem;
    letter-spacing: 1px;
}

.navbar {
    position: sticky;
    top: 0;
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(8px);
    border-bottom: 1px solid var(--border-color);
    z-index: 1000;
    transition: var(--transition);
}

.nav-container {
    max-width: 1240px;
    margin: 0 auto;
    padding: 15px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.brand-logo {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.logo-text {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    font-weight: 600;
    letter-spacing: 6px;
    color: var(--text-dark);
    line-height: 1;
}

.logo-subtext {
    font-size: 0.55rem;
    letter-spacing: 4px;
    color: var(--primary-gold);
    margin-top: 4px;
}

.brand-logo.light .logo-text {
    color: #ffffff;
}

.nav-list {
    display: flex;
    gap: 30px;
}

.nav-link {
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--text-dark);
    padding: 8px 0;
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0%;
    height: 1.5px;
    background-color: var(--primary-gold);
    transition: var(--transition);
}

.nav-link:hover::after, .nav-link.active::after {
    width: 100%;
}

/* Dropdown */
.dropdown {
    position: relative;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background-color: var(--bg-white);
    box-shadow: var(--shadow-soft);
    border: 1px solid var(--border-color);
    min-width: 180px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: var(--transition);
    padding: 10px 0;
    z-index: 100;
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu a {
    display: block;
    padding: 8px 20px;
    font-size: 0.8rem;
    color: var(--text-dark);
}

.dropdown-menu a:hover {
    background-color: var(--bg-cream);
    color: var(--primary-gold);
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 18px;
}

.action-btn {
    position: relative;
    color: var(--text-dark);
    display: flex;
    align-items: center;
    justify-content: center;
}

.action-btn:hover {
    color: var(--primary-gold);
}

.badge {
    position: absolute;
    top: -6px;
    right: -8px;
    background-color: var(--primary-gold);
    color: #ffffff;
    font-size: 0.65rem;
    font-weight: 700;
    width: 17px;
    height: 17px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.mobile-menu-btn {
    display: none;
}

/* ==========================================
   4. HERO VITRIN
   ========================================== */
.hero-section {
    position: relative;
    height: 85vh;
    min-height: 550px;
    background: url('https://images.unsplash.com/photo-1515562141207-7a88fb7ce338?auto=format&fit=crop&w=1920&q=80') center/cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #ffffff;
    padding: 0 20px;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0,0,0,0.3) 0%, rgba(0,0,0,0.5) 100%);
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
}

.hero-subtitle {
    font-size: 0.85rem;
    letter-spacing: 4px;
    color: #E8E2D8;
    margin-bottom: 15px;
    display: block;
}

.hero-title {
    font-family: var(--font-heading);
    font-size: 4.2rem;
    font-weight: 400;
    line-height: 1.15;
    margin-bottom: 20px;
    text-shadow: 0 2px 10px rgba(0,0,0,0.2);
}

.hero-description {
    font-size: 1.05rem;
    font-weight: 300;
    margin-bottom: 35px;
    color: #FAF8F5;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
}

/* ==========================================
   5. TRUST BADGES
   ========================================== */
.trust-section {
    background-color: var(--bg-white);
    border-bottom: 1px solid var(--border-color);
    padding: 35px 0;
}

.trust-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
    gap: 25px;
}

.trust-card {
    display: flex;
    align-items: center;
    gap: 15px;
}

.trust-icon {
    color: var(--primary-gold);
}

.trust-info h3 {
    font-size: 0.9rem;
    font-weight: 600;
}

.trust-info p {
    font-size: 0.78rem;
    color: var(--text-muted);
}

/* ==========================================
   6. KATEGORİ VİTRİNİ
   ========================================== */
.category-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 25px;
}

.category-card {
    position: relative;
    height: 380px;
    overflow: hidden;
    cursor: pointer;
    border-radius: 4px;
}

.category-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.category-card:hover img {
    transform: scale(1.08);
}

.category-content {
    position: absolute;
    inset: 0;
    background: linear-gradient(0deg, rgba(0,0,0,0.6) 0%, rgba(0,0,0,0) 60%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 30px;
    color: #ffffff;
}

.category-content h3 {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 400;
    margin-bottom: 5px;
}

.category-content span {
    font-size: 0.75rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--primary-gold);
}

/* ==========================================
   7. ÜRÜNLER VE FİLTRELEME
   ========================================== */
.filter-tabs {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 10px 24px;
    font-size: 0.8rem;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    background: transparent;
    border: 1px solid var(--border-color);
    color: var(--text-dark);
    border-radius: 30px;
}

.filter-btn:hover, .filter-btn.active {
    background-color: var(--primary-gold);
    border-color: var(--primary-gold);
    color: #ffffff;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(270px, 1fr));
    gap: 30px;
}

.product-card {
    background-color: var(--bg-white);
    border: 1px solid var(--border-color);
    border-radius: 4px;
    overflow: hidden;
    transition: var(--transition);
    position: relative;
    display: flex;
    flex-direction: column;
}

.product-card:hover {
    box-shadow: var(--shadow-hover);
    transform: translateY(-5px);
}

.product-image-wrapper {
    position: relative;
    height: 300px;
    overflow: hidden;
    background-color: #FDFCFB;
}

.product-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.product-card:hover .product-image {
    transform: scale(1.05);
}

.discount-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background-color: var(--text-dark);
    color: var(--primary-gold);
    font-size: 0.7rem;
    font-weight: 700;
    padding: 4px 10px;
    letter-spacing: 1px;
    border-radius: 2px;
}

.wishlist-toggle {
    position: absolute;
    top: 15px;
    right: 15px;
    background: rgba(255, 255, 255, 0.85);
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-dark);
}

.wishlist-toggle:hover, .wishlist-toggle.active {
    background: #ffffff;
    color: #e74c3c;
}

.product-details {
    padding: 20px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.product-category {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--primary-gold);
    margin-bottom: 5px;
}

.product-title {
    font-family: var(--font-heading);
    font-size: 1.35rem;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--text-dark);
}

.product-rating {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 0.75rem;
    color: #f1c40f;
    margin-bottom: 12px;
}

.rating-score {
    color: var(--text-muted);
    margin-left: 4px;
}

.product-price {
    margin-top: auto;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.current-price {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--text-dark);
}

.old-price {
    font-size: 0.9rem;
    color: #a0a0a0;
    text-decoration: line-through;
}

.add-to-cart-btn {
    width: 100%;
    padding: 12px;
    background-color: var(--bg-cream);
    border: 1px solid var(--border-color);
    color: var(--text-dark);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    border-radius: 2px;
}

.add-to-cart-btn:hover {
    background-color: var(--primary-gold);
    color: #ffffff;
    border-color: var(--primary-gold);
}

/* ==========================================
   8. KAMPANYA BANNERI
   ========================================== */
.campaign-banner {
    position: relative;
    padding: 100px 20px;
    background: url('https://images.unsplash.com/photo-1573408301185-9146fe634ad0?auto=format&fit=crop&w=1920&q=80') center/cover fixed no-repeat;
    color: #ffffff;
    text-align: center;
}

.campaign-bg {
    position: absolute;
    inset: 0;
    background: rgba(26, 26, 26, 0.75);
}

.campaign-content {
    position: relative;
    z-index: 2;
    max-width: 750px;
    margin: 0 auto;
}

.badge-gold {
    background-color: var(--primary-gold);
    color: #ffffff;
    font-size: 0.75rem;
    letter-spacing: 2px;
    padding: 6px 16px;
    display: inline-block;
    margin-bottom: 20px;
}

.campaign-content h2 {
    font-family: var(--font-heading);
    font-size: 3.2rem;
    font-weight: 400;
    margin-bottom: 15px;
}

.campaign-countdown {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin: 30px 0;
}

.time-box {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 15px 20px;
    min-width: 80px;
    border-radius: 4px;
}

.time-box span {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    display: block;
    line-height: 1;
}

.time-box small {
    font-size: 0.65rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #E8E2D8;
}

/* ==========================================
   9. HAKKIMIZDA BÖLÜMÜ
   ========================================== */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-image {
    position: relative;
}

.about-image img {
    border-radius: 4px;
    box-shadow: var(--shadow-soft);
}

.experience-badge {
    position: absolute;
    bottom: -20px;
    right: -20px;
    background-color: var(--primary-gold);
    color: #ffffff;
    padding: 25px;
    border-radius: 4px;
    display: flex;
    flex-direction: column;
    align-items: center;
    box-shadow: var(--shadow-soft);
}

.experience-badge .years {
    font-family: var(--font-heading);
    font-size: 2.8rem;
    font-weight: 700;
    line-height: 1;
}

.experience-badge .text {
    font-size: 0.7rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    text-align: center;
}

.about-text p {
    color: var(--text-muted);
    margin-bottom: 18px;
    font-size: 0.95rem;
}

.about-features {
    margin-top: 25px;
}

.about-features li {
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 1px;
    margin-bottom: 10px;
    color: var(--dark-gold);
}

/* ==========================================
   10. MÜŞTERİ YORUMLARI
   ========================================== */
.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.testimonial-card {
    background-color: var(--bg-white);
    padding: 35px;
    border: 1px solid var(--border-color);
    border-radius: 4px;
    text-align: center;
}

.testimonial-card .stars {
    color: #f1c40f;
    margin-bottom: 15px;
}

.testimonial-quote {
    font-style: italic;
    font-size: 0.95rem;
    color: var(--text-dark);
    margin-bottom: 20px;
}

.testimonial-author strong {
    display: block;
    font-size: 0.9rem;
}

.testimonial-author span {
    font-size: 0.75rem;
    color: var(--text-muted);
}

/* ==========================================
   11. İLETİŞİM BÖLÜMÜ
   ========================================== */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.info-list {
    margin-top: 30px;
}

.info-item {
    margin-bottom: 15px;
    font-size: 0.9rem;
    color: var(--text-muted);
}

.info-item strong {
    color: var(--text-dark);
}

.contact-form {
    background-color: var(--bg-cream);
    padding: 40px;
    border: 1px solid var(--border-color);
    border-radius: 4px;
}

.contact-form h3 {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    margin-bottom: 20px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group input, .form-group textarea {
    width: 100%;
    padding: 14px;
    border: 1px solid var(--border-color);
    background-color: #ffffff;
    font-family: var(--font-body);
    font-size: 0.85rem;
    outline: none;
    transition: var(--transition);
}

.form-group input:focus, .form-group textarea:focus {
    border-color: var(--primary-gold);
}

/* ==========================================
   12. FOOTER
   ========================================== */
.footer {
    background-color: var(--text-dark);
    color: #A0A0A0;
    padding-top: 70px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 2fr;
    gap: 40px;
    padding-bottom: 60px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.brand-col p {
    margin-top: 15px;
    font-size: 0.85rem;
    line-height: 1.7;
}

.footer-col h4 {
    color: #ffffff;
    font-size: 0.9rem;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 20px;
}

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

.footer-col ul a {
    font-size: 0.85rem;
}

.footer-col ul a:hover {
    color: var(--primary-gold);
}

.newsletter-form {
    display: flex;
    margin-top: 15px;
}

.newsletter-form input {
    padding: 12px;
    border: none;
    background: rgba(255, 255, 255, 0.08);
    color: #ffffff;
    font-size: 0.8rem;
    flex-grow: 1;
}

.newsletter-form button {
    padding: 12px 20px;
    background-color: var(--primary-gold);
    color: #ffffff;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
}

.footer-bottom {
    padding: 25px 0;
    font-size: 0.8rem;
}

.bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.payment-methods span {
    margin-left: 15px;
    font-weight: 700;
    letter-spacing: 1px;
    color: #ffffff;
}

/* ==========================================
   13. SEPET ÇEKMECESİ (SLIDE DRAWER)
   ========================================== */
.cart-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(3px);
    z-index: 2000;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}

.cart-overlay.active {
    opacity: 1;
    visibility: visible;
}

.cart-drawer {
    position: fixed;
    top: 0;
    right: 0;
    width: 420px;
    max-width: 100%;
    height: 100%;
    background-color: var(--bg-white);
    z-index: 2001;
    transform: translateX(100%);
    transition: transform 0.4s ease;
    display: flex;
    flex-direction: column;
    box-shadow: -5px 0 25px rgba(0,0,0,0.15);
}

.cart-drawer.active {
    transform: translateX(0);
}

.cart-header {
    padding: 20px;
    border-bottom: 1px solid var(--border-color);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.cart-header h3 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
}

.close-cart-btn {
    font-size: 1.8rem;
    line-height: 1;
    color: var(--text-dark);
}

.cart-body {
    flex-grow: 1;
    overflow-y: auto;
    padding: 20px;
}

.cart-item {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--border-color);
}

.cart-item-img {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 4px;
}

.cart-item-info {
    flex-grow: 1;
}

.cart-item-title {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 600;
}

.cart-item-price {
    font-size: 0.85rem;
    color: var(--primary-gold);
    font-weight: 600;
    margin-top: 4px;
}

.cart-item-controls {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 8px;
}

.qty-btn {
    width: 24px;
    height: 24px;
    border: 1px solid var(--border-color);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
}

.remove-item-btn {
    margin-left: auto;
    color: #e74c3c;
    font-size: 0.75rem;
    text-decoration: underline;
}

.cart-footer {
    padding: 20px;
    border-top: 1px solid var(--border-color);
    background-color: var(--bg-cream);
}

.cart-total-row {
    display: flex;
    justify-content: space-between;
    font-size: 1.1rem;
    margin-bottom: 8px;
}

.cart-total-row strong {
    color: var(--dark-gold);
}

.shipping-note {
    font-size: 0.75rem;
    color: var(--text-muted);
    margin-bottom: 15px;
}

.empty-cart-msg {
    text-align: center;
    color: var(--text-muted);
    margin-top: 40px;
}

/* Toast Bildirimi */
.toast {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background-color: var(--text-dark);
    color: #ffffff;
    padding: 14px 24px;
    border-left: 4px solid var(--primary-gold);
    border-radius: 2px;
    font-size: 0.85rem;
    box-shadow: var(--shadow-soft);
    transform: translateY(100px);
    opacity: 0;
    transition: var(--transition);
    z-index: 3000;
}

.toast.show {
    transform: translateY(0);
    opacity: 1;
}

/* ==========================================
   14. RESPONSIVE TASARIM (MEDYA SORGULARI)
   ========================================== */
@media (max-width: 992px) {
    .nav-menu {
        position: fixed;
        top: 0;
        left: -100%;
        width: 280px;
        height: 100vh;
        background-color: var(--bg-white);
        box-shadow: var(--shadow-soft);
        padding: 80px 30px 30px 30px;
        transition: var(--transition);
        z-index: 999;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-list {
        flex-direction: column;
        gap: 20px;
    }

    .mobile-menu-btn {
        display: block;
    }

    .about-grid, .contact-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }

    .hero-title {
        font-size: 3rem;
    }
}

@media (max-width: 576px) {
    .hero-title {
        font-size: 2.2rem;
    }

    .campaign-content h2 {
        font-size: 2.2rem;
    }

    .footer-grid {
        grid-template-columns: 1fr;
    }

    .bottom-content {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .campaign-countdown {
        gap: 8px;
    }

    .time-box {
        min-width: 65px;
        padding: 10px;
    }
}
/* Footer Genel Stilleri */
.site-footer {
    background-color: #111111;
    color: #e5e5e5;
    padding-top: 60px;
    margin-top: 80px;
    border-top: 1px solid rgba(212, 175, 55, 0.3);
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 40px;
    padding-bottom: 40px;
}

.footer-brand .logo-text {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.8rem;
    letter-spacing: 3px;
    color: #ffffff;
    display: block;
}

.footer-brand .logo-subtext {
    font-size: 0.65rem;
    letter-spacing: 4px;
    color: #d4af37;
    display: block;
    margin-bottom: 15px;
}

.footer-brand p {
    color: #a0a0a0;
    font-size: 0.9rem;
    line-height: 1.6;
    max-width: 360px;
}

.footer-links h4 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.2rem;
    color: #ffffff;
    margin-bottom: 20px;
    letter-spacing: 1px;
}

.footer-links ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

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

.footer-links a {
    color: #a0a0a0;
    text-decoration: none;
    font-size: 0.88rem;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #d4af37;
}

/* RehberWeb İmza Alt Bandı */
.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding: 20px 0;
    background-color: #0a0a0a;
}

.footer-bottom-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
}

.copyright {
    color: #777777;
    font-size: 0.8rem;
    margin: 0;
}

.developer-signature {
    color: #888888;
    font-size: 0.8rem;
    font-family: 'Montserrat', sans-serif;
    letter-spacing: 0.3px;
    margin: 0;
}

.developer-signature a {
    color: #d4af37;
    text-decoration: none;
    font-weight: 500;
    position: relative;
    padding-bottom: 2px;
    transition: color 0.3s ease;
}

.developer-signature a::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 1px;
    bottom: 0;
    left: 0;
    background-color: #d4af37;
    transform: scaleX(0);
    transform-origin: bottom right;
    transition: transform 0.3s ease-out;
}

.developer-signature a:hover {
    color: #f3e5ab;
}

.developer-signature a:hover::after {
    transform: scaleX(1);
    transform-origin: bottom left;
}

/* Responsive Düzenleme */
@media (max-width: 768px) {
    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .footer-bottom-container {
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }
}
/* ==========================================================================
   3D & LÜKS GÖRSEL EFEKTLER
   ========================================================================== */

/* Hero 3D Canvas Konumlandırması */
.hero-section {
    position: relative;
    overflow: hidden;
}

.hero-3d-canvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none; /* Metinlerin seçilmesini ve tıklanmasını engellemez */
    opacity: 0.85;
}

.hero-content {
    position: relative;
    z-index: 2;
}

/* Shimmer (Altın Işık Sweep) Efekti */
.shimmer-btn {
    position: relative;
    overflow: hidden;
}

.shimmer-btn::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(
        60deg,
        rgba(255, 255, 255, 0) 20%,
        rgba(255, 255, 255, 0.4) 50%,
        rgba(255, 255, 255, 0) 80%
    );
    transform: rotate(30deg) translateY(-100%);
    animation: shimmerSweep 6s infinite;
}

@keyframes shimmerSweep {
    0% { transform: rotate(30deg) translateY(-100%); }
    20% { transform: rotate(30deg) translateY(100%); }
    100% { transform: rotate(30deg) translateY(100%); }
}

/* 3D Ürün ve Kategori Kartı Eğim (Tilt) Stilleri */
.product-card, .category-card {
    transition: transform 0.25s cubic-bezier(0.25, 0.46, 0.45, 0.94), box-shadow 0.3s ease;
    transform-style: preserve-3d;
    perspective: 1000px;
}

.product-card:hover, .category-card:hover {
    box-shadow: 0 20px 40px rgba(212, 175, 55, 0.15), 0 10px 20px rgba(0, 0, 0, 0.05);
}

.product-card img, .category-card img {
    transition: transform 0.4s ease;
    transform: translateZ(20px); /* 3D Öne fırlama derinliği */
}

/* Altın Parıltı / Sparkle İnce Parçacık Stili */
.gold-sparkle {
    position: fixed;
    width: 4px;
    height: 4px;
    background: radial-gradient(circle, #ffe082 0%, #d4af37 70%, transparent 100%);
    border-radius: 50%;
    pointer-events: none;
    z-index: 9999;
    box-shadow: 0 0 6px #d4af37, 0 0 12px #fff3cd;
    animation: sparkleFade 1.2s cubic-bezier(0.1, 0.8, 0.3, 1) forwards;
}

@keyframes sparkleFade {
    0% {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
    100% {
        opacity: 0;
        transform: scale(0.2) translateY(-25px);
    }
}

/* Kristal Halka Parlama Katmanı */
.crystal-glow {
    position: relative;
}

.crystal-glow::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, rgba(212, 175, 55, 0.4), transparent, rgba(243, 229, 171, 0.4));
    border-radius: inherit;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.crystal-glow:hover::before {
    opacity: 1;
}