/**
 * Harabat Brand - Main Premium Stylesheet
 * Custom visual identity: dark slate backgrounds, golden lines, burgundy accents.
 */

/* ==========================================================================
   1. DESIGN SYSTEM & BASE STYLE
   ========================================================================== */

:root {
    /* Color Palette */
    --harabat-dark: #171C1F;
    --harabat-black: #080A0B;
    --harabat-burgundy: #5A090B;
    --harabat-red: #92141B;
    --harabat-gold: #C9992F;
    --harabat-gold-light: #E1BC5C;
    --harabat-cream: #E8D4A0;
    --harabat-light: #F3F0E8;
    
    /* Typography */
    --font-serif: 'Cormorant Garamond', serif;
    --font-sans: 'Manrope', sans-serif;
    
    /* Transitions */
    --transition-smooth: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    --transition-fast: all 0.2s ease-in-out;
}

/* Base resets */
html, body {
    height: 100%;
    background-color: var(--harabat-black);
    color: var(--harabat-light);
    font-family: var(--font-sans);
    font-weight: 400;
    line-height: 1.6;
    overflow-x: hidden;
}

/* Accessibility Skip Link */
.skip-to-content-link {
    position: absolute;
    top: -100px;
    left: 20px;
    background: var(--harabat-gold);
    color: var(--harabat-black);
    padding: 10px 20px;
    border-radius: 4px;
    font-weight: bold;
    z-index: 99999;
    transition: top 0.2s ease;
}
.skip-to-content-link:focus {
    top: 20px;
    outline: 2px solid var(--harabat-cream);
}

/* Typography styles */
.font-serif {
    font-family: var(--font-serif);
}
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-serif);
    font-weight: 600;
    letter-spacing: 0.02em;
}

/* Links */
a {
    color: var(--harabat-gold);
    text-decoration: none;
    transition: var(--transition-fast);
}
a:hover {
    color: var(--harabat-gold-light);
}

/* Selection highlight */
::selection {
    background-color: var(--harabat-gold);
    color: var(--harabat-black);
}

/* Focus outline styling */
a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
    outline: 2px solid var(--harabat-gold);
    outline-offset: 3px;
}

/* ==========================================================================
   2. BUTTONS & UI CONTROLS
   ========================================================================== */

.btn {
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 0.05em;
    padding: 10px 24px;
    transition: var(--transition-smooth);
}

.btn-harabat-gold {
    background-color: var(--harabat-gold);
    color: var(--harabat-black);
    border: 1px solid var(--harabat-gold);
    font-weight: 600;
}
.btn-harabat-gold:hover, .btn-harabat-gold:focus {
    background-color: transparent;
    color: var(--harabat-gold);
    border-color: var(--harabat-gold);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(201, 153, 47, 0.3);
}

.btn-outline-harabat {
    background-color: transparent;
    color: var(--harabat-cream);
    border: 1px solid rgba(232, 212, 160, 0.3);
}
.btn-outline-harabat:hover, .btn-outline-harabat:focus {
    background-color: var(--harabat-cream);
    color: var(--harabat-black);
    border-color: var(--harabat-cream);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(232, 212, 160, 0.2);
}

.btn-close-white {
    filter: invert(1) grayscale(1) brightness(2);
}

/* ==========================================================================
   3. HEADER & STICKY NAVBAR
   ========================================================================== */

.harabat-header {
    background-color: rgba(23, 28, 31, 0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(201, 153, 47, 0.15);
    transition: var(--transition-smooth);
    z-index: 1030;
}
.harabat-header.scrolled {
    padding: 5px 0;
    background-color: rgba(8, 10, 11, 0.95);
    border-bottom: 1px solid rgba(201, 153, 47, 0.3);
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.5);
}

.brand-logo-img {
    height: 90px;
    max-height: 100px;
    width: auto;
    object-fit: contain;
    transition: var(--transition-smooth);
}
.scrolled .brand-logo-img {
    height: 60px;
}

.brand-logo-text {
    font-family: var(--font-serif);
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--harabat-gold);
    letter-spacing: 0.08em;
    line-height: 1;
    display: inline-block;
    vertical-align: middle;
}

.navbar-nav .nav-item {
    margin: 0 5px;
}
.navbar-nav .nav-link {
    color: var(--harabat-light);
    font-size: 0.95rem;
    font-weight: 500;
    letter-spacing: 0.05em;
    padding: 10px 15px !important;
    position: relative;
}
.navbar-nav .nav-link::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 15px;
    right: 15px;
    height: 1px;
    background-color: var(--harabat-gold);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.3s ease;
}
.navbar-nav .nav-link:hover {
    color: var(--harabat-gold);
}
.navbar-nav .nav-link:hover::after,
.navbar-nav .nav-link.active::after {
    transform: scaleX(1);
    transform-origin: left;
}
.navbar-nav .nav-link.active {
    color: var(--harabat-gold);
}

.lang-link {
    font-size: 0.85rem;
    font-weight: 600;
    color: rgba(243, 240, 232, 0.5);
    padding: 0 8px;
    border-right: 1px solid rgba(243, 240, 232, 0.2);
}
.lang-link:last-child {
    border-right: none;
}
.lang-link.active {
    color: var(--harabat-gold);
}
.lang-link:hover {
    color: var(--harabat-cream);
}

.contact-shortcut {
    color: var(--harabat-cream);
    font-size: 1.2rem;
}
.contact-shortcut:hover {
    color: var(--harabat-gold-light);
    transform: scale(1.1);
}

.navbar-toggler-custom {
    background: none;
    border: none;
    padding: 10px;
    width: 44px;
    height: 44px;
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    align-items: center;
    cursor: pointer;
    z-index: 1051;
}
.navbar-toggler-custom .bar {
    width: 24px;
    height: 2px;
    background-color: var(--harabat-light);
    border-radius: 2px;
    transition: var(--transition-smooth);
}
.navbar-toggler-custom:not(.collapsed) .bar:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}
.navbar-toggler-custom:not(.collapsed) .bar:nth-child(2) {
    opacity: 0;
}
.navbar-toggler-custom:not(.collapsed) .bar:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}

.harabat-offcanvas {
    background-color: var(--harabat-black);
    border-left: 1px solid rgba(201, 153, 47, 0.2);
    z-index: 1045;
    width: 300px;
}
.harabat-offcanvas .offcanvas-nav .nav-link {
    font-family: var(--font-serif);
    font-size: 1.4rem;
    color: var(--harabat-light);
    padding: 10px 0;
    border-bottom: 1px solid rgba(243, 240, 232, 0.05);
}
.harabat-offcanvas .offcanvas-nav .nav-link.active {
    color: var(--harabat-gold);
}

/* ==========================================================================
   4. BREADCRUMBS
   ========================================================================== */

.breadcrumb-wrapper {
    background-color: rgba(23, 28, 31, 0.5);
    border-bottom: 1px solid rgba(232, 212, 160, 0.05);
    margin-top: 80px;
}
.harabat-breadcrumb-nav .breadcrumb-item a {
    color: var(--harabat-cream);
    opacity: 0.7;
    font-size: 0.9rem;
    display: inline-flex;
    align-items: center;
}
.harabat-breadcrumb-nav .breadcrumb-item a:hover {
    color: var(--harabat-gold);
    opacity: 1;
}
.harabat-breadcrumb-nav .breadcrumb-item.active {
    color: var(--harabat-gold);
    font-size: 0.9rem;
}
.harabat-breadcrumb-nav .breadcrumb-item + .breadcrumb-item::before {
    color: rgba(232, 212, 160, 0.3);
}

/* ==========================================================================
   5. HERO & BANNER
   ========================================================================== */

.harabat-hero {
    min-height: 700px;
    padding-top: 140px;
    padding-bottom: 80px;
    display: flex;
    align-items: center;
    background: radial-gradient(circle at 70% 30%, rgba(90, 9, 11, 0.25) 0%, rgba(8, 10, 11, 0) 65%),
                radial-gradient(circle at 10% 80%, rgba(201, 153, 47, 0.08) 0%, rgba(8, 10, 11, 0) 50%);
    position: relative;
    overflow: hidden;
}

.hero-title {
    font-size: 4rem;
    line-height: 1.15;
    color: var(--harabat-cream);
}
.hero-title span {
    color: var(--harabat-gold);
}

/* Hero Composition: Two products balanced */
.hero-composite-wrap {
    position: relative;
    width: 100%;
    height: 400px;
}
.hero-composition-box {
    position: absolute;
    width: 55%;
    max-width: 250px;
    border-radius: 20px;
    background-color: rgba(23, 28, 31, 0.6);
    backdrop-filter: blur(5px);
    border: 1px solid rgba(201, 153, 47, 0.25);
    padding: 12px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.5);
    transition: var(--transition-smooth);
}
.hero-composition-box img {
    border-radius: 14px;
    width: 100%;
    height: 200px;
    object-fit: contain;
    background-color: var(--harabat-black);
}
.hero-comp-1 {
    top: 5%;
    left: 5%;
    z-index: 2;
    border-bottom: 3px solid var(--harabat-gold);
}
.hero-comp-2 {
    bottom: 5%;
    right: 5%;
    z-index: 1;
    border-bottom: 3px solid var(--harabat-red);
}
.hero-composition-box:hover {
    z-index: 5;
    border-color: var(--harabat-gold-light);
    transform: scale(1.05);
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    background-color: rgba(90, 9, 11, 0.2);
    border: 1px solid rgba(90, 9, 11, 0.5);
    color: var(--harabat-cream);
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 0.1em;
}

/* ==========================================================================
   6. BRAND CHARACTERISTICS
   ========================================================================== */

.harabat-features {
    background-color: rgba(23, 28, 31, 0.3);
    border-top: 1px solid rgba(232, 212, 160, 0.05);
    border-bottom: 1px solid rgba(232, 212, 160, 0.05);
}
.feature-item-box {
    border-radius: 24px;
    background-color: rgba(23, 28, 31, 0.5);
    border: 1px solid rgba(232, 212, 160, 0.03);
    padding: 35px 25px;
    transition: var(--transition-smooth);
}
.feature-item-box:hover {
    background-color: rgba(23, 28, 31, 0.8);
    border-color: rgba(201, 153, 47, 0.2);
    transform: translateY(-5px);
}
.feature-icon-wrapper {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-color: rgba(201, 153, 47, 0.1);
    color: var(--harabat-gold);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    margin: 0 auto 20px;
    border: 1px solid rgba(201, 153, 47, 0.2);
}
.feature-title {
    font-family: var(--font-serif);
    font-size: 1.3rem;
    color: var(--harabat-cream);
}

/* ==========================================================================
   7. DUAL PRODUCT VITRINE
   ========================================================================== */

.vitrine-card {
    position: relative;
    border: 1px solid rgba(201, 153, 47, 0.15) !important;
    min-height: 520px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
    transition: var(--transition-smooth);
    background-color: var(--harabat-dark);
}
.vitrine-bg-decor {
    position: absolute;
    top: -50%;
    right: -50%;
    width: 250px;
    height: 250px;
    border-radius: 50%;
    filter: blur(50px);
    transition: var(--transition-smooth);
    z-index: 1;
}

/* Figs Accent: Earthy Warm Brown */
.fig-vitrine {
    background: linear-gradient(135deg, #1e2427 0%, var(--harabat-black) 100%);
    border-bottom: 4px solid var(--harabat-gold) !important;
}
.fig-vitrine .vitrine-bg-decor {
    background-color: rgba(201, 153, 47, 0.1);
}
.fig-vitrine:hover {
    border-color: var(--harabat-gold-light) !important;
    transform: translateY(-8px);
    box-shadow: 0 20px 45px rgba(201, 153, 47, 0.15);
}
.fig-vitrine:hover .vitrine-bg-decor {
    background-color: rgba(201, 153, 47, 0.15);
    width: 300px;
    height: 300px;
}

/* Pistachio Accent: Deep Roast Red/Burgundy */
.pistachio-vitrine {
    background: linear-gradient(135deg, #281113 0%, var(--harabat-black) 100%);
    border-bottom: 4px solid var(--harabat-red) !important;
}
.pistachio-vitrine .vitrine-bg-decor {
    background-color: rgba(146, 20, 27, 0.1);
}
.pistachio-vitrine:hover {
    border-color: var(--harabat-red) !important;
    transform: translateY(-8px);
    box-shadow: 0 20px 45px rgba(146, 20, 27, 0.15);
}
.pistachio-vitrine:hover .vitrine-bg-decor {
    background-color: rgba(146, 20, 27, 0.15);
    width: 300px;
    height: 300px;
}

.vitrine-badge {
    font-size: 0.8rem;
    padding: 6px 14px;
    border-radius: 8px;
    font-weight: 600;
}
.bg-burgundy {
    background-color: var(--harabat-burgundy) !important;
}

.vitrine-img-wrap {
    height: 240px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(8, 10, 11, 0.4);
    border-radius: 20px;
    padding: 20px;
    border: 1px solid rgba(243, 240, 232, 0.03);
}
.vitrine-img {
    max-height: 100%;
    max-width: 100%;
    object-fit: contain;
    transition: var(--transition-smooth);
}
.vitrine-card:hover .vitrine-img {
    transform: scale(1.05);
}

.vitrine-placeholder-img {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(23,28,31,0.5) 0%, rgba(8,10,11,0.5) 100%);
    border-radius: 20px;
}

.vitrine-name {
    font-size: 1.8rem;
    color: var(--harabat-cream);
    transition: var(--transition-fast);
}
.vitrine-card:hover .vitrine-name {
    color: var(--harabat-gold);
}

.price-instruction-box {
    background-color: rgba(201, 153, 47, 0.05);
    border: 1px solid rgba(201, 153, 47, 0.15);
    padding: 10px 14px;
    border-radius: 12px;
}
.price-instruction-text {
    font-weight: 600;
    letter-spacing: 0.02em;
}

/* ==========================================================================
   8. BRAND STORY (EDITORIAL)
   ========================================================================== */

.editorial-story {
    border-top: 1px solid rgba(232, 212, 160, 0.05);
    border-bottom: 1px solid rgba(232, 212, 160, 0.05);
    background: radial-gradient(circle at 10% 50%, rgba(201, 153, 47, 0.06) 0%, rgba(8, 10, 11, 0) 45%);
}
.story-headline {
    color: var(--harabat-cream);
    font-size: 3rem;
    line-height: 1.2;
}
.story-headline span {
    color: var(--harabat-gold);
}

.story-img-composition {
    position: relative;
    width: 100%;
    height: 420px;
}
.story-frame {
    position: absolute;
    border: 1px solid rgba(201, 153, 47, 0.2);
    padding: 10px;
    background-color: rgba(23, 28, 31, 0.5);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
    transition: var(--transition-smooth);
}
.story-frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.frame-1 {
    width: 65%;
    height: 320px;
    top: 0;
    left: 0;
    z-index: 2;
    border-radius: 20px;
}
.frame-1 img {
    border-radius: 14px;
}
.frame-2 {
    width: 55%;
    height: 240px;
    bottom: 0;
    right: 0;
    z-index: 1;
    border-radius: 18px;
}
.frame-2 img {
    border-radius: 12px;
}
.story-frame:hover {
    z-index: 5;
    border-color: var(--harabat-gold-light);
    transform: scale(1.02);
}

/* ==========================================================================
   9. DUAL CAMPAIGN CTA BANNER
   ========================================================================== */

.harabat-order-cta .cta-card {
    background: linear-gradient(135deg, var(--harabat-burgundy) 0%, #3a0608 100%);
    border: 1px solid rgba(201, 153, 47, 0.25);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
}
.cta-decor-frame {
    position: absolute;
    top: 15px;
    bottom: 15px;
    left: 15px;
    right: 15px;
    border: 1px solid rgba(201, 153, 47, 0.15);
    border-radius: 12px;
    pointer-events: none;
}
.cta-title {
    font-size: 2.8rem;
    line-height: 1.2;
}

.cta-images-composition {
    width: 100%;
    max-width: 320px;
    height: 240px;
}
.cta-img-box {
    position: absolute;
    width: 160px;
    height: 160px;
    padding: 8px;
    background-color: var(--harabat-black);
    border: 1px solid rgba(201, 153, 47, 0.3);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
    transition: var(--transition-smooth);
}
.cta-img-box img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}
.cta-img-1 {
    top: 0;
    left: 0;
    z-index: 2;
    border-radius: 16px;
    border-bottom: 3px solid var(--harabat-gold);
}
.cta-img-1 img {
    border-radius: 12px;
}
.cta-img-2 {
    bottom: 0;
    right: 0;
    z-index: 1;
    border-radius: 16px;
    border-bottom: 3px solid var(--harabat-red);
}
.cta-img-2 img {
    border-radius: 12px;
}
.cta-img-box:hover {
    z-index: 5;
    border-color: var(--harabat-gold-light);
    transform: scale(1.05);
}

/* ==========================================================================
   10. PRODUCT DETAIL PAGES (DRIED FIG & PISTACHIO)
   ========================================================================== */

.product-detail-hero {
    margin-top: 80px;
}
.detail-img-box {
    background-color: var(--harabat-dark);
    border: 1px solid rgba(232, 212, 160, 0.05);
    border-radius: 28px;
    padding: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 380px;
}
.detail-img-box img {
    max-height: 400px;
    width: auto;
    object-fit: contain;
}
.product-detail-name {
    font-size: 3.2rem;
    color: var(--harabat-cream);
}
.detail-meta-item {
    background-color: rgba(23, 28, 31, 0.4);
    border: 1px solid rgba(232, 212, 160, 0.05);
    border-radius: 12px;
}

/* Nutrients table */
.nutrients-table {
    border: 1px solid rgba(232, 212, 160, 0.15) !important;
    border-radius: 16px;
    overflow: hidden;
    background-color: var(--harabat-dark) !important;
    --bs-table-bg: var(--harabat-dark) !important;
    --bs-table-striped-bg: #1e2427 !important;
    --bs-table-color: var(--harabat-light) !important;
    color: var(--harabat-light) !important;
}
.nutrients-table th {
    background-color: var(--harabat-black) !important;
    color: var(--harabat-gold) !important;
    font-family: var(--font-serif);
    font-size: 1.1rem;
    padding: 12px 18px;
    border-bottom: 1px solid rgba(232, 212, 160, 0.15) !important;
}
.nutrients-table td {
    background-color: transparent !important;
    padding: 12px 18px;
    border-bottom: 1px solid rgba(232, 212, 160, 0.05) !important;
    color: var(--harabat-light) !important;
}
.nutrients-table tr:last-child td {
    border-bottom: none !important;
}
.nutrients-table tr:nth-child(even) td {
    background-color: rgba(23, 28, 31, 0.3) !important;
}

/* Share toast copypopup */
.share-toast {
    background-color: var(--harabat-gold);
    color: var(--harabat-black);
    font-weight: 600;
    padding: 8px 16px;
    border-radius: 8px;
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 1060;
    box-shadow: 0 4px 15px rgba(0,0,0,0.3);
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.3s ease;
}
.share-toast.show {
    opacity: 1;
    transform: translateY(0);
}

/* ==========================================================================
   11. PREMIUM FORMS (ORDER & CONTACT)
   ========================================================================== */

.harabat-form-card {
    background-color: var(--harabat-dark);
    border: 1px solid rgba(232, 212, 160, 0.05);
    border-radius: 28px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.3);
}

.form-label {
    color: var(--harabat-cream);
    font-weight: 550;
    font-size: 0.9rem;
    margin-bottom: 8px;
}

.form-control, .form-select {
    background-color: var(--harabat-black);
    color: var(--harabat-light) !important;
    border: 1px solid rgba(232, 212, 160, 0.15);
    border-radius: 12px;
    padding: 12px 18px;
    transition: var(--transition-fast);
}
.form-control:focus, .form-select:focus {
    background-color: var(--harabat-black);
    border-color: var(--harabat-gold);
    box-shadow: 0 0 0 3px rgba(201, 153, 47, 0.15);
    outline: none;
}
.form-control::placeholder {
    color: rgba(243, 240, 232, 0.3);
}

.form-check-input {
    background-color: var(--harabat-black);
    border-color: rgba(232, 212, 160, 0.2);
    cursor: pointer;
}
.form-check-input:checked {
    background-color: var(--harabat-gold);
    border-color: var(--harabat-gold);
}
.form-check-input:focus {
    box-shadow: 0 0 0 3px rgba(201, 153, 47, 0.15);
    border-color: var(--harabat-gold);
}
.form-check-label {
    color: rgba(243, 240, 232, 0.7);
    font-size: 0.88rem;
    cursor: pointer;
}

.h-pot {
    display: none !important;
    visibility: hidden !important;
}

.map-placeholder-box {
    height: 380px;
    border-radius: 20px;
    background-color: rgba(23, 28, 31, 0.3);
    border: 1px dashed rgba(201, 153, 47, 0.3);
}

/* Order Summary Box */
.order-summary-box {
    background-color: var(--harabat-dark);
    border: 1px solid rgba(201, 153, 47, 0.15);
    border-radius: 20px;
}
.summary-img-box {
    width: 60px;
    height: 60px;
    border-radius: 10px;
    background-color: var(--harabat-black);
    overflow: hidden;
}
.summary-img-box img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

/* ==========================================================================
   12. ALERTS & NOTIFICATIONS
   ========================================================================== */

.alert-harabat-success {
    background-color: rgba(201, 153, 47, 0.1);
    color: var(--harabat-cream);
    border: 1px solid var(--harabat-gold);
    border-radius: 16px;
    padding: 20px;
}
.alert-harabat-danger {
    background-color: rgba(90, 9, 11, 0.1);
    color: var(--harabat-cream);
    border: 1px solid var(--harabat-burgundy);
    border-radius: 16px;
    padding: 20px;
}

/* ==========================================================================
   13. FOOTER
   ========================================================================== */

.harabat-footer {
    background-color: #0b0e0f;
    border-top: 2px solid var(--harabat-gold);
}
.footer-logo-img {
    height: 42px;
    object-fit: contain;
}
.footer-logo-text {
    font-family: var(--font-serif);
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--harabat-gold);
    letter-spacing: 0.1em;
}
.footer-col-title {
    font-size: 1.15rem;
    font-weight: 600;
    letter-spacing: 0.05em;
}
.footer-link {
    color: rgba(243, 240, 232, 0.6);
    transition: var(--transition-fast);
    font-size: 0.9rem;
}
.footer-link:hover {
    color: var(--harabat-gold);
    padding-left: 4px;
}
.footer-social-links a {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background-color: rgba(243, 240, 232, 0.03);
    color: var(--harabat-cream);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(232, 212, 160, 0.1);
    transition: var(--transition-smooth);
}
.footer-social-links a:hover {
    background-color: var(--harabat-gold);
    color: var(--harabat-black);
    border-color: var(--harabat-gold);
    transform: translateY(-2px);
}
.footer-legal-link {
    transition: var(--transition-fast);
}
.footer-legal-link:hover {
    color: var(--harabat-gold) !important;
}

/* Premium dividers */
.premium-divider {
    height: 1px;
    background: linear-gradient(to right, rgba(201, 153, 47, 0), rgba(201, 153, 47, 0.3), rgba(201, 153, 47, 0));
    border: none;
    margin: 60px 0;
}

/* Scroll reveal animations */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s cubic-bezier(0.25, 0.8, 0.25, 1), transform 0.8s cubic-bezier(0.25, 0.8, 0.25, 1);
}
.reveal.revealed {
    opacity: 1;
    transform: translateY(0);
}
