/*
Theme Name: Think And Grow Daily
Theme URI: https://aronandsharon.com/
Author: Aron & Sharon
Author URI: https://aronandsharon.com/
Description: A modern, elegant WordPress theme for manifestation, success, and personal development content. Features a bold black and gold color scheme with clean typography and premium design elements.
Version: 1.17.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: thinkandgrowdaily
Tags: blog, two-columns, right-sidebar, custom-menu, featured-images, sticky-post, threaded-comments, translation-ready
*/

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --gold: #C9AC81;
    --black: #000000;
    --white: #ffffff;
    --dark-gray: #1a1a1a;
    --medium-gray: #666666;
    --light-gray: #f5f5f5;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Helvetica Neue', Arial, sans-serif;
    color: var(--white);
    line-height: 1.6;
    background: var(--black);
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    line-height: 1.2;
}

/* WordPress Core Styles */
.alignnone {
    margin: 1.5rem 0;
}

.aligncenter {
    display: block;
    margin: 1.5rem auto;
}

.alignleft {
    float: left;
    margin: 0.5rem 1.5rem 1.5rem 0;
}

.alignright {
    float: right;
    margin: 0.5rem 0 1.5rem 1.5rem;
}

.wp-caption {
    max-width: 100%;
}

.wp-caption-text {
    font-size: 0.9rem;
    color: var(--medium-gray);
    text-align: center;
    padding: 0.5rem 0;
}

.sticky {
    /* Styles for sticky posts */
}

.bypostauthor {
    /* Styles for post author comments */
}

.gallery {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    gap: 1rem;
    margin: 1.5rem 0;
}

.gallery-item {
    position: relative;
}

.gallery-caption {
    font-size: 0.85rem;
    color: var(--medium-gray);
    padding: 0.5rem 0;
}

/* Header */
header {
    background: var(--black);
    color: var(--white);
    padding: 1.5rem 0;
    border-bottom: 1px solid rgba(201, 172, 129, 0.2);
    position: sticky;
    top: 0;
    z-index: 1000;
}

nav {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--gold);
    text-decoration: none;
    letter-spacing: -0.5px;
    z-index: 1001;
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    z-index: 1001;
}

.hamburger span {
    width: 28px;
    height: 3px;
    background: var(--gold);
    transition: all 0.3s ease;
    border-radius: 2px;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(8px, -8px);
}

.nav-links {
    display: flex;
    gap: 3rem;
    list-style: none;
    flex-wrap: wrap;
}

.nav-links a {
    color: var(--white);
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 500;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: var(--gold);
}

.nav-links .current-menu-item a,
.nav-links .current_page_item a {
    color: var(--gold);
}

/* Dropdown Menu Styles for WordPress Navigation */
.nav-links .menu-item {
    position: relative;
}

.nav-links .menu-item-has-children > a {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.nav-links .menu-item-has-children > a::after {
    content: '▼';
    font-size: 0.7rem;
    transition: transform 0.3s;
}

.nav-links .menu-item-has-children.active > a::after {
    transform: rotate(180deg);
}

.nav-links .sub-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--black);
    min-width: 220px;
    list-style: none;
    padding: 0.5rem 0;
    margin: 0;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(201, 172, 129, 0.2);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s;
    z-index: 1000;
}

.nav-links .menu-item-has-children:hover > .sub-menu,
.nav-links .menu-item-has-children.active > .sub-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.nav-links .sub-menu li {
    margin: 0;
}

.nav-links .sub-menu a {
    display: block;
    padding: 0.75rem 1.5rem;
    color: var(--white);
    font-size: 0.9rem;
    transition: all 0.3s;
    border-left: 3px solid transparent;
}

.nav-links .sub-menu a:hover {
    background: rgba(201, 172, 129, 0.1);
    border-left-color: var(--gold);
    color: var(--gold);
}

.nav-links .sub-menu .current-menu-item > a {
    background: rgba(201, 172, 129, 0.1);
    border-left-color: var(--gold);
    color: var(--gold);
}

/* Nested Dropdowns (Third Level) */
.nav-links .sub-menu .menu-item-has-children {
    position: relative;
}

.nav-links .sub-menu .menu-item-has-children > a::after {
    content: '▶';
    float: right;
    margin-left: auto;
}

.nav-links .sub-menu .sub-menu {
    top: 0;
    left: 100%;
    margin-left: -1px;
}

/* Right-aligned dropdowns (for items near viewport edge) */
.nav-links .menu-item-has-children.dropdown-right > .sub-menu {
    left: auto;
    right: 0;
}

/* Left-aligned nested dropdowns (when parent is near right edge) */
.nav-links .sub-menu .menu-item-has-children.dropdown-left > .sub-menu {
    left: auto;
    right: 100%;
    margin-left: 0;
    margin-right: -1px;
}

/* Hero Section */
.hero {
    background: var(--black);
    color: var(--white);
    padding: 6rem 2rem 4rem;
    text-align: center;
}

.hero-content {
    max-width: 900px;
    margin: 0 auto;
}

.hero h1 {
    font-size: 4rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
    letter-spacing: -2px;
    animation: fadeInUp 0.8s ease-out;
}

.hero-subtitle {
    font-size: 1.3rem;
    margin-bottom: 3rem;
    color: rgba(255, 255, 255, 0.7);
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    animation: fadeInUp 0.8s ease-out 0.2s both;
}

.hero-simple {
    background: var(--black);
    color: var(--white);
    padding: 4rem 2rem;
    text-align: center;
    border-bottom: 1px solid rgba(201, 172, 129, 0.2);
}

.hero-simple h1 {
    font-size: 3.5rem;
    font-weight: 700;
    letter-spacing: -2px;
    margin-bottom: 1rem;
}

.hero-simple .lead {
    font-size: 1.3rem;
    color: rgba(255, 255, 255, 0.7);
    max-width: 700px;
    margin: 0 auto;
}

/* Hero Section with Overlay (for single posts) */
.hero-section {
    position: relative;
    height: 50vh;
    min-height: 400px;
    background: var(--dark-gray);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 120%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-color: var(--dark-gray);
    will-change: transform;
    transition: transform 0.1s ease-out;
}

/* Overlay is handled by .hero-overlay div instead */

.hero-background.no-image {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 8rem;
    color: var(--gold);
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0,0,0,0.6) 0%, rgba(0,0,0,0.8) 100%);
}

.hero-section .hero-content {
    position: relative;
    z-index: 10;
    max-width: 1000px;
    padding: 0 2rem 6rem 2rem;
    text-align: center;
}

.hero-optin {
    background: var(--white);
    padding: 3rem;
    border-radius: 0;
    max-width: 650px;
    margin: 0 auto;
    animation: fadeInUp 0.8s ease-out 0.4s both;
}

.hero-optin h3 {
    color: var(--black);
    margin-bottom: 0.5rem;
    font-size: 1.8rem;
    font-weight: 700;
}

.hero-optin p {
    color: var(--medium-gray);
    margin-bottom: 2rem;
    font-size: 1.05rem;
}

/* Breadcrumbs */
.breadcrumbs {
    margin-bottom: 2rem;
}

.breadcrumb-list {
    display: flex;
    gap: 0.75rem;
    list-style: none;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
    justify-content: center;
    padding: 0;
}

.breadcrumb-list a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.3s;
}

.breadcrumb-list a:hover {
    color: var(--gold);
}

.breadcrumb-list li:not(:last-child)::after {
    content: "→";
    margin-left: 0.75rem;
}

/* Article Meta */
.article-category {
    background: var(--gold);
    color: var(--white);
    padding: 0.5rem 1.5rem;
    border-radius: 0;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: inline-block;
    margin-bottom: 1.5rem;
}

.hero-section h1 {
    font-size: 4rem;
    font-weight: 700;
    letter-spacing: -2px;
    margin-bottom: 1.5rem;
    line-height: 1.1;
    color: var(--white);
    text-shadow: 0 2px 20px rgba(0,0,0,0.5);
}

.article-meta {
    display: flex;
    justify-content: center;
    gap: 2rem;
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.8);
    flex-wrap: wrap;
    margin-top: 0.5rem;
}

.meta-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

/* Forms */
.optin-form {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
}

.optin-form input {
    flex: 1;
    min-width: 250px;
    padding: 1.2rem 1.5rem;
    border: 2px solid #e0e0e0;
    border-radius: 0;
    font-size: 1rem;
    background: var(--white);
}

.optin-form input:focus {
    outline: none;
    border-color: var(--gold);
}

/* Buttons */
.btn-primary {
    background: var(--gold);
    color: var(--white);
    padding: 1.2rem 2.5rem;
    border: none;
    border-radius: 0;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    text-decoration: none;
    display: inline-block;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-primary:hover {
    background: #b39968;
    transform: translateY(-2px);
    color: var(--white);
}

.btn-secondary {
    background: var(--black);
    color: var(--white);
    padding: 1rem 2rem;
    border: none;
    border-radius: 0;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    text-decoration: none;
    display: inline-block;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-secondary:hover {
    background: var(--gold);
    color: var(--white);
}

/* Categories Bar */
.categories-bar {
    background: var(--dark-gray);
    padding: 2rem;
    border-top: 1px solid rgba(201, 172, 129, 0.1);
    border-bottom: 1px solid rgba(201, 172, 129, 0.1);
}

.categories {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
    justify-content: center;
}

.category-badge {
    background: transparent;
    color: var(--white);
    padding: 0.75rem 1.75rem;
    border-radius: 0;
    text-decoration: none;
    font-size: 0.9rem;
    transition: all 0.3s;
    border: 1px solid rgba(255, 255, 255, 0.2);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.category-badge:hover {
    background: var(--gold);
    border-color: var(--gold);
    color: var(--white);
}

/* Main Content */
.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 4rem 2rem;
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: 3rem;
    text-align: center;
    color: var(--white);
    font-weight: 700;
    letter-spacing: -1px;
}

/* Blog Grid */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(380px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.blog-card {
    background: var(--white);
    border-radius: 0;
    overflow: hidden;
    transition: all 0.3s;
    display: flex;
    flex-direction: column;
}

.blog-card:hover {
    transform: translateY(-8px);
}

.blog-image {
    width: 100%;
    height: 280px;
    background: var(--dark-gray);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    font-size: 4rem;
    position: relative;
    overflow: hidden;
}

.blog-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.blog-content {
    padding: 2rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.blog-meta {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
    font-size: 0.85rem;
    color: var(--medium-gray);
    align-items: center;
}

.blog-category {
    background: var(--black);
    color: var(--gold);
    padding: 0.35rem 1rem;
    border-radius: 0;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    text-decoration: none;
}

.blog-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--black);
    font-weight: 700;
    line-height: 1.3;
}

.blog-card h3 a {
    color: var(--black);
    text-decoration: none;
    transition: color 0.3s;
}

.blog-card h3 a:hover {
    color: var(--gold);
}

.blog-excerpt {
    color: var(--medium-gray);
    margin-bottom: 1.5rem;
    flex: 1;
    line-height: 1.7;
}

.read-more {
    color: var(--gold);
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: gap 0.3s;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-size: 0.9rem;
}

.read-more:hover {
    gap: 1rem;
}

/* Content with Overlap (for single posts) */
.content-wrapper {
    position: relative;
    margin-top: -150px;
    z-index: 20;
}

.content-layout {
    display: grid;
    grid-template-columns: 1fr 400px;
    gap: 4rem;
}

.article-column {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

/* Article Content */
.article-content {
    background: var(--white);
    padding: 4rem;
    color: var(--black);
    box-shadow: 0 20px 60px rgba(0,0,0,0.3);
}

.article-content h2 {
    font-size: 2rem;
    margin: 2.5rem 0 1rem;
    color: var(--black);
    font-weight: 700;
}

.article-content h3 {
    font-size: 1.5rem;
    margin: 2rem 0 1rem;
    color: var(--black);
    font-weight: 600;
}

.article-content h4 {
    font-size: 1.25rem;
    margin: 1.5rem 0 1rem;
    color: var(--black);
    font-weight: 600;
}

.article-content p {
    font-size: 1.15rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    color: var(--dark-gray);
}

.article-content p:first-of-type::first-letter {
    float: left;
    font-size: 5rem;
    line-height: 0.85;
    font-weight: 700;
    color: var(--gold);
    margin: 0.1rem 0.15rem 0 0;
    font-family: Georgia, serif;
}

.article-content ul, .article-content ol {
    margin: 1.5rem 0;
    padding-left: 2rem;
}

.article-content li {
    font-size: 1.15rem;
    line-height: 1.8;
    margin-bottom: 0.75rem;
    color: var(--dark-gray);
}

.article-content blockquote {
    border-left: 4px solid var(--gold);
    padding: 1.5rem 2rem;
    margin: 2rem 0;
    background: var(--light-gray);
    font-size: 1.2rem;
    font-style: italic;
    color: var(--medium-gray);
}

.article-content strong {
    font-weight: 600;
    color: var(--black);
}

.article-content a {
    color: var(--gold);
    text-decoration: underline;
}

.article-content a:hover {
    color: #b39968;
}

/* Exception for share buttons - no underline */
.article-content .share-btn {
    color: var(--white);
    text-decoration: none;
}

.article-content .share-btn:hover {
    color: var(--white);
    text-decoration: none;
}

.article-content img {
    max-width: 100%;
    height: auto;
}

.key-takeaway {
    background: var(--black);
    color: var(--white);
    padding: 2.5rem;
    margin: 3rem 0;
    border-left: 4px solid var(--gold);
}

.key-takeaway h3 {
    color: var(--gold);
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.key-takeaway p {
    color: rgba(255, 255, 255, 0.9);
}

/* Share Buttons */
.share-section {
    background: var(--white);
    padding: 2rem 0rem;
    border-top: 2px solid var(--light-gray);
}

.share-title {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--black);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.share-buttons {
    display: flex;
    gap: 0.4rem;
    flex-wrap: wrap;
}

.share-btn {
    padding: 0.75rem 1.5rem;
    background: var(--black);
    color: var(--white);
    text-decoration: none;
    border-radius: 0;
    font-size: 0.9rem;
    font-weight: 600;
    transition: all 0.3s;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.share-btn:hover {
    background: var(--gold);
    text-decoration: none;
}

.share-btn i {
    font-size: 1rem;
}

.share-btn-facebook:hover {
    background: #1877f2;
}

.share-btn-twitter:hover {
    background: #484848;
}

.share-btn-linkedin:hover {
    background: #0077b5;
}

.share-btn-pinterest:hover {
    background: #e60023;
}

.share-btn-email:hover {
    background: var(--gold);
}

/* Author Bio */
.author-bio {
    background: var(--white);
    padding: 3rem 4rem;
    margin-top: 3rem;
    border-top: 4px solid var(--gold);
}

.author-header {
    display: flex;
    gap: 2rem;
    align-items: center;
    margin-bottom: 1.5rem;
}

.author-avatar {
    width: 100px;
    height: 100px;
    background: var(--black);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    font-size: 2.5rem;
    flex-shrink: 0;
    overflow: hidden;
}

.author-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.author-info h3 {
    color: var(--black);
    font-size: 1.5rem;
    margin-bottom: 0.25rem;
}

.author-title {
    color: var(--medium-gray);
    font-size: 0.95rem;
}

.author-bio p {
    color: var(--dark-gray);
    font-size: 1.05rem;
    line-height: 1.7;
}

/* Sidebar */
.sidebar {
    position: sticky;
    top: 120px;
    height: fit-content;
}

.sidebar-section {
    background: var(--white);
    padding: 2.5rem;
    margin-bottom: 2rem;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.sidebar-section h3 {
    color: var(--black);
    margin-bottom: 2rem;
    font-size: 1.3rem;
    font-weight: 700;
}

.sidebar-section .widget-title {
    color: var(--black);
    margin-bottom: 2rem;
    font-size: 1.3rem;
    font-weight: 700;
}

.sidebar-section ul {
    list-style: none;
    padding: 0;
}

.sidebar-section ul li {
    margin-bottom: 0.75rem;
}

.sidebar-section ul li a {
    color: var(--dark-gray);
    text-decoration: none;
    transition: color 0.3s;
}

.sidebar-section ul li a:hover {
    color: var(--gold);
}

.trending-item,
.related-post {
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid #e0e0e0;
}

.trending-item:last-child,
.related-post:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.trending-thumb,
.related-post-thumb {
    width: 100%;
    height: 180px;
    background: var(--black);
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    font-size: 2.5rem;
    overflow: hidden;
}

.trending-thumb img,
.related-post-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.trending-info h4,
.related-post h4 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    color: var(--black);
    font-weight: 600;
    line-height: 1.4;
}

.trending-info h4 a,
.related-post h4 a {
    color: var(--black);
    text-decoration: none;
    transition: color 0.3s;
}

.trending-info h4 a:hover,
.related-post h4 a:hover {
    color: var(--gold);
}

.trending-meta,
.related-meta {
    font-size: 0.85rem;
    color: var(--medium-gray);
}

.sidebar-optin {
    background: var(--black);
    color: var(--white);
    padding: 2.5rem;
}

.sidebar-optin h3,
.sidebar-optin .widget-title {
    color: var(--gold);
    margin-bottom: 1rem;
}

.sidebar-optin p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.sidebar-optin-form {
    display: flex;
    flex-direction: column;
}

.sidebar-optin-form .form-group {
    margin-bottom: 1rem;
}

.sidebar-optin-form .form-control {
    width: 100%;
    padding: 1rem 1.25rem;
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 0;
    font-size: 1rem;
    background: rgba(255, 255, 255, 0.1);
    color: var(--white);
    transition: all 0.3s;
}

.sidebar-optin-form .form-control::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.sidebar-optin-form .form-control:focus {
    outline: none;
    border-color: var(--gold);
    background: rgba(255, 255, 255, 0.15);
    box-shadow: 0 0 0 3px rgba(201, 172, 129, 0.2);
}

.sidebar-optin-form .btn-primary {
    width: 100%;
    margin-top: 0.5rem;
}

.sidebar-optin-form .optin-message {
    margin-top: 1rem;
    padding: 0.75rem;
    border-radius: 4px;
    font-size: 0.9rem;
    display: none;
}

.sidebar-optin-form .optin-message:not(:empty) {
    display: block;
}

/* Post Navigation */
.post-navigation {
    max-width: 1400px;
    margin: 3rem auto;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.nav-post {
    background: var(--white);
    padding: 2rem;
    text-decoration: none;
    transition: all 0.3s;
    border-left: 4px solid transparent;
}

.nav-post:hover {
    border-left-color: var(--gold);
    transform: translateX(5px);
}

.nav-post.next {
    text-align: right;
    border-left: none;
    border-right: 4px solid transparent;
}

.nav-post.next:hover {
    border-right-color: var(--gold);
    transform: translateX(-5px);
}

.nav-label {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--medium-gray);
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.nav-title {
    font-size: 1.3rem;
    color: var(--black);
    font-weight: 600;
}

/* Pagination */
.pagination {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin: 3rem 0;
    flex-wrap: wrap;
}

.pagination a,
.pagination span {
    padding: 0.75rem 1.25rem;
    background: var(--white);
    color: var(--black);
    text-decoration: none;
    transition: all 0.3s;
    font-weight: 600;
}

.pagination a:hover,
.pagination .current {
    background: var(--gold);
    color: var(--white);
}

.pagination .current {
    cursor: default;
}

/* Comments */
.comments-area {
    background: transparent;
    padding: 0;
    margin-top: 3rem;
}

.comments-title {
    color: var(--white);
    font-size: 2rem;
    margin-bottom: 2.5rem;
    font-weight: 700;
    padding-bottom: 1rem;
    border-bottom: 4px solid var(--gold);
    display: inline-block;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.comment-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.comment-list .children {
    list-style: none;
    padding-left: 3rem;
    margin-top: 1.5rem;
}

.comment {
    margin-bottom: 2.5rem;
    padding: 0;
}

.comment:last-child {
    margin-bottom: 0;
}

.comment-body {
    display: flex;
    gap: 1.5rem;
    transition: all 0.3s ease;
    background: var(--white);
    padding: 2.5rem;
    box-shadow: 0 10px 40px rgba(0,0,0,0.4);
    border-top: 4px solid var(--gold);
}

.comment-author-avatar {
    flex-shrink: 0;
}

.comment-author-avatar img {
    border-radius: 50%;
    border: 3px solid var(--gold);
    transition: all 0.3s ease;
}

.comment:hover .comment-author-avatar img {
    border-color: var(--black);
    transform: scale(1.05);
}

.comment-main {
    flex: 1;
    min-width: 0;
}

.comment-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.75rem;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.comment-author-info {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.comment-author-info .fn {
    font-style: normal;
    font-weight: 700;
    color: var(--black);
    font-size: 1.05rem;
    text-decoration: none;
    transition: color 0.3s ease;
}

.comment-author-info .fn:hover {
    color: var(--gold);
}

.comment-author-badge {
    display: inline-block;
    background: var(--black);
    color: var(--gold);
    font-size: 0.75rem;
    font-weight: 700;
    padding: 0.3rem 0.75rem;
    border-radius: 0;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.comment-metadata {
    font-size: 0.875rem;
    color: var(--medium-gray);
}

.comment-metadata a {
    color: var(--medium-gray);
    text-decoration: none;
    transition: color 0.3s ease;
}

.comment-metadata a:hover {
    color: var(--gold);
}

.comment-awaiting-moderation {
    background: #fff3cd;
    border-left: 3px solid #ffc107;
    color: #856404;
    padding: 0.75rem 1rem;
    margin-bottom: 1rem;
    font-size: 0.875rem;
    border-radius: 3px;
}

.comment-awaiting-moderation i {
    margin-right: 0.5rem;
}

.comment-content {
    color: var(--dark-gray);
    line-height: 1.8;
    margin-bottom: 1rem;
    font-size: 1rem;
}

.comment-content p {
    margin-bottom: 1rem;
}

.comment-content p:last-child {
    margin-bottom: 0;
}

.comment-actions {
    display: flex;
    gap: 1.5rem;
    align-items: center;
}

.comment-actions a {
    color: var(--white);
    text-decoration: none;
    font-weight: 700;
    font-size: 0.85rem;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
    padding: 0.6rem 1.25rem;
    border-radius: 0;
    background: var(--black);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.comment-actions a:hover {
    background: var(--gold);
    color: var(--white);
}

.comment-actions a i {
    font-size: 0.85rem;
}

.comment-navigation {
    display: flex;
    justify-content: space-between;
    margin-top: 3rem;
    gap: 2rem;
}

.comment-navigation a {
    color: var(--white);
    text-decoration: none;
    font-weight: 700;
    transition: all 0.3s ease;
    background: var(--black);
    padding: 1rem 2rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.9rem;
}

.comment-navigation a:hover {
    background: var(--gold);
}

.no-comments {
    color: rgba(255, 255, 255, 0.6);
    font-style: italic;
    text-align: center;
    padding: 3rem;
    border: 2px dashed rgba(201, 172, 129, 0.3);
    font-size: 1rem;
}

.comment-respond {
    background: var(--white);
    padding: 3rem;
    margin-top: 3rem;
    border-radius: 0;
    box-shadow: 0 10px 40px rgba(0,0,0,0.4);
    border-top: 4px solid var(--gold);
}

.comment-reply-title {
    color: var(--black);
    font-size: 1.75rem;
    margin-bottom: 2rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.comment-reply-title small {
    font-size: 0.875rem;
    font-weight: 400;
    margin-left: 1rem;
}

.comment-reply-title small a {
    color: var(--gold);
    text-decoration: none;
}

.comment-form {
    display: grid;
    gap: 1.25rem;
}

.comment-form-comment {
    margin-bottom: 0.5rem;
}

.comment-form label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 700;
    color: var(--black);
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.comment-form .required {
    color: #d32f2f;
}

.logged-in-as {
    color: var(--black);
    margin-bottom: 1.5rem;
}

.logged-in-as a {
    color: var(--gold);
    text-decoration: none;
}

.logged-in-as a:hover {
    color: var(--black);
}

.comment-form input[type="text"],
.comment-form input[type="email"],
.comment-form input[type="url"],
.comment-form textarea {
    width: 100%;
    padding: 1rem 1.25rem;
    border: 2px solid #e0e0e0;
    border-radius: 0;
    font-size: 1rem;
    font-family: inherit;
    background: var(--white);
    transition: all 0.3s ease;
}

.comment-form textarea {
    min-height: 160px;
    resize: vertical;
}

.comment-form input:focus,
.comment-form textarea:focus {
    outline: none;
    border-color: var(--gold);
    border-width: 2px;
}

.comment-form input:hover,
.comment-form textarea:hover {
    border-color: var(--gold);
}

.form-submit {
    margin-top: 0.5rem;
}

.submit {
    background: var(--black);
    color: var(--white);
    padding: 1rem 2.5rem;
    border: none;
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 0;
}

.submit:hover {
    background: var(--gold);
    color: var(--white);
}

.submit:active {
    background: #b39968;
}

/* Responsive Comments */
@media (max-width: 768px) {
    .comments-title {
        font-size: 1.5rem;
    }

    .comment-list .children {
        padding-left: 1.5rem;
    }

    .comment-body {
        gap: 1rem;
        padding: 1.5rem;
        flex-direction: column;
    }

    .comment-author-avatar img {
        width: 50px;
        height: 50px;
    }

    .comment-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }

    .comment-actions {
        gap: 0.5rem;
    }

    .comment-actions a {
        font-size: 0.75rem;
        padding: 0.5rem 1rem;
    }

    .comment-navigation {
        flex-direction: column;
    }

    .comment-navigation a {
        text-align: center;
    }

    .comment-respond {
        padding: 2rem 1.5rem;
    }

    .comment-reply-title {
        font-size: 1.35rem;
    }

    .submit {
        width: 100%;
    }
}

/* Footer */
footer {
    background: var(--black);
    color: var(--white);
    padding: 4rem 2rem 2rem;
    border-top: 1px solid rgba(201, 172, 129, 0.2);
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 4rem;
    margin-bottom: 3rem;
}

@media (max-width: 992px) {
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .footer-content {
        grid-template-columns: 1fr;
    }
}

.footer-section h4 {
    color: var(--gold);
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-section p {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.8;
}

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

.footer-links li {
    margin-bottom: 0.75rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.3s;
    font-size: 0.95rem;
}

.footer-links a:hover {
    color: var(--gold);
}

.social-icons {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
}

.social-icon {
    width: 45px;
    height: 45px;
    background: var(--dark-gray);
    border-radius: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    text-decoration: none;
    transition: all 0.3s;
    font-weight: 600;
}

.social-icon:hover {
    background: var(--gold);
    transform: translateY(-3px);
}

/* Social Follow Widget in Footer */
.footer-section .social-follow-buttons {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
}

.footer-section .social-button {
    width: 45px;
    height: 45px;
    background: var(--dark-gray);
    border-radius: 0 !important;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    text-decoration: none;
    transition: all 0.3s;
    border: none;
}

.footer-section .social-button:hover {
    background: var(--gold);
    transform: translateY(-3px);
    border-color: var(--gold);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 2rem;
    text-align: center;
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.9rem;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive */
@media (max-width: 1024px) {
    .hero h1 {
        font-size: 3rem;
    }

    .content-layout {
        grid-template-columns: 1fr;
    }

    .sidebar {
        position: static;
    }
}

@media (max-width: 968px) {
    .hamburger {
        display: flex;
    }

    nav {
        position: relative;
    }

    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        height: 100vh;
        width: 80%;
        max-width: 400px;
        background: var(--black);
        flex-direction: column;
        padding: 6rem 2rem 2rem;
        gap: 2rem;
        transition: right 0.3s ease;
        border-left: 1px solid rgba(201, 172, 129, 0.2);
        z-index: 1002;
        overflow-y: auto;
    }

    .nav-links.active {
        right: 0;
    }

    .nav-links li {
        width: 100%;
    }

    .nav-links a {
        display: block;
        padding: 0.75rem 0;
        font-size: 1.2rem;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }

    /* Mobile Dropdown Styles */
    .nav-links .menu-item-has-children > a::after {
        content: '▼';
        float: right;
        font-size: 0.8rem;
    }

    .nav-links .sub-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        border: none;
        background: rgba(0, 0, 0, 0.3);
        margin: 0.5rem 0;
        padding: 0;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
    }

    .nav-links .menu-item-has-children.active > .sub-menu {
        max-height: 500px;
    }

    .nav-links .sub-menu a {
        padding: 0.75rem 1rem;
        font-size: 1rem;
        border-left: none;
        border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    }

    .nav-links .sub-menu .sub-menu {
        position: static;
        left: auto;
        margin-left: 0;
        background: rgba(0, 0, 0, 0.2);
    }

    .nav-links .sub-menu .sub-menu a {
        padding-left: 2rem;
    }

    .content-wrapper {
        margin-top: -100px;
    }

    .post-navigation {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .hero h1 {
        font-size: 2.5rem;
        letter-spacing: -1px;
    }

    .hero-subtitle {
        font-size: 1.1rem;
    }

    .hero-section {
        height: 40vh;
        min-height: 350px;
    }

    .hero-section h1 {
        font-size: 2.5rem;
        letter-spacing: -1px;
    }

    .hero-section .hero-content {
        padding-bottom: 3rem;
    }

    /* Hide breadcrumbs on single posts for mobile */
    .single .breadcrumbs {
        display: none;
    }

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

    .categories {
        justify-content: flex-start;
    }

    .optin-form {
        flex-direction: column;
    }

    .optin-form input {
        min-width: 100%;
    }

    .section-title {
        font-size: 2rem;
    }

    .article-content {
        padding: 2rem;
    }

    .share-section {
        padding: 2rem;
    }

    .author-bio {
        padding: 2rem;
    }

    .author-header {
        flex-direction: column;
        text-align: center;
    }

    .sidebar-section {
        padding: 2rem;
    }

    .content-wrapper {
        margin-top: -80px;
    }
}

/* =========================================
   ADDITIONAL COMPONENTS FROM DESIGN SYSTEM
   ========================================= */

/* Forms - Enhanced */
.form-group {
    margin-bottom: 1.5rem;
}

.form-label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--black);
    font-weight: 600;
    font-size: 0.95rem;
}

.form-control {
    width: 100%;
    padding: 1rem 1.25rem;
    border: 2px solid #e0e0e0;
    border-radius: 0;
    font-size: 1rem;
    background: var(--white);
    transition: all 0.3s;
}

.form-control:focus {
    outline: none;
    border-color: var(--gold);
    box-shadow: 0 0 0 3px rgba(201, 172, 129, 0.1);
}

.form-control.error {
    border-color: #dc2626;
}

.form-control.success {
    border-color: #16a34a;
}

.form-help {
    font-size: 0.875rem;
    color: var(--medium-gray);
    margin-top: 0.5rem;
}

.form-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
    margin-bottom: 1.5rem;
}

/* Custom Checkboxes and Radios */
.form-check {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.form-check input[type="checkbox"],
.form-check input[type="radio"] {
    width: 20px;
    height: 20px;
    cursor: pointer;
}

.form-check-label {
    cursor: pointer;
    color: var(--black);
}

/* Tabs */
.tabs {
    margin: 2rem 0;
}

.tab-nav {
    display: flex;
    gap: 0.25rem;
    border-bottom: 2px solid var(--light-gray);
    margin-bottom: 2rem;
}

.tab-button {
    padding: 1rem 2rem;
    background: transparent;
    border: none;
    border-bottom: 3px solid transparent;
    color: var(--medium-gray);
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.tab-button:hover {
    color: var(--gold);
}

.tab-button.active {
    color: var(--gold);
    border-bottom-color: var(--gold);
}

.tab-content {
    position: relative;
}

.tab-pane {
    display: none;
    animation: fadeInUp 0.5s ease;
}

.tab-pane.active {
    display: block;
}

/* Accordion */
.accordion {
    margin: 2rem 0;
}

.accordion-item {
    background: var(--white);
    margin-bottom: 1rem;
    border: 1px solid #e0e0e0;
}

.accordion-header {
    padding: 1.5rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s;
    font-weight: 600;
    color: var(--black);
}

.accordion-header:hover {
    background: var(--light-gray);
}

.accordion-header.active {
    background: var(--gold);
    color: var(--white);
}

.accordion-icon {
    transition: transform 0.3s;
    font-size: 1.2rem;
}

.accordion-header.active .accordion-icon {
    transform: rotate(180deg);
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease;
}

.accordion-content.active {
    max-height: 1000px;
}

.accordion-body {
    padding: 1.5rem;
    color: var(--dark-gray);
    line-height: 1.7;
}

/* Alerts */
.alert {
    padding: 1.25rem 1.5rem;
    margin: 1.5rem 0;
    border-left: 4px solid;
    position: relative;
}

.alert-info {
    background: #dbeafe;
    border-left-color: #3b82f6;
    color: #1e40af;
}

.alert-success {
    background: #dcfce7;
    border-left-color: #16a34a;
    color: #166534;
}

.alert-warning {
    background: #fef3c7;
    border-left-color: #f59e0b;
    color: #92400e;
}

.alert-error {
    background: #fee2e2;
    border-left-color: #dc2626;
    color: #991b1b;
}

.alert-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    opacity: 0.5;
    transition: opacity 0.3s;
}

.alert-close:hover {
    opacity: 1;
}

/* Enhanced Badge Variants */
.badge-primary {
    background: var(--black);
    color: var(--white);
}

.badge-secondary {
    background: var(--medium-gray);
    color: var(--white);
}

.badge-success {
    background: #16a34a;
    color: var(--white);
}

.badge-danger {
    background: #dc2626;
    color: var(--white);
}

.badge-warning {
    background: #f59e0b;
    color: var(--white);
}

.badge-info {
    background: #3b82f6;
    color: var(--white);
}

/* Generic Card System */
.card {
    background: var(--white);
    border-radius: 0;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: all 0.3s;
}

.card:hover {
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}

.card-image {
    width: 100%;
    height: 200px;
    overflow: hidden;
    background: var(--dark-gray);
}

.card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}

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

.card-body {
    padding: 1.5rem;
}

.card-title {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    color: var(--black);
}

.card-text {
    color: var(--medium-gray);
    line-height: 1.7;
}

.card-footer {
    padding: 1rem 1.5rem;
    background: var(--light-gray);
    border-top: 1px solid #e0e0e0;
}

/* Modal System */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s;
}

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

.modal {
    background: var(--white);
    max-width: 600px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    transform: scale(0.9);
    transition: transform 0.3s;
}

.modal-overlay.active .modal {
    transform: scale(1);
}

.modal-header {
    padding: 2rem;
    border-bottom: 1px solid #e0e0e0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.modal-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--black);
}

.modal-close {
    background: none;
    border: none;
    font-size: 2rem;
    cursor: pointer;
    color: var(--medium-gray);
    transition: color 0.3s;
    padding: 0;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-close:hover {
    color: var(--black);
}

.modal-content {
    padding: 2rem;
    color: var(--dark-gray);
    line-height: 1.7;
}

.modal-footer {
    padding: 1.5rem 2rem;
    border-top: 1px solid #e0e0e0;
    display: flex;
    gap: 1rem;
    justify-content: flex-end;
}

/* Mobile Bottom Bar */
.mobile-bottom-bar {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 999;
    background: var(--mobile-bar-bg, #D4AF37);
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
    padding: 0;
}

.mobile-bottom-bar-btn {
    width: 100%;
    padding: 1rem 1.5rem;
    background: transparent;
    border: none;
    color: var(--mobile-bar-text, #1A1A1A);
    font-size: 1rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.mobile-bottom-bar-btn:hover {
    opacity: 0.9;
}

.mobile-bottom-bar-btn i {
    font-size: 1.25rem;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1);
    }
}

.mobile-bottom-bar-btn span {
    font-size: 1rem;
}

/* Icon position right */
.mobile-bottom-bar-btn.icon-right {
    flex-direction: row-reverse;
}

@media (max-width: 768px) {
    .mobile-bottom-bar {
        display: block;
    }

    /* Add padding to body to prevent content being hidden behind bottom bar */
    body.mobile-bar-active {
        padding-bottom: 60px;
    }
}

/* Dropdown Menus */
.dropdown {
    position: relative;
    display: inline-block;
}

.dropdown-toggle {
    padding: 0.75rem 1.5rem;
    background: var(--black);
    color: var(--white);
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 600;
    transition: background 0.3s;
}

.dropdown-toggle:hover {
    background: var(--gold);
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--white);
    min-width: 200px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s;
    z-index: 1000;
}

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

.dropdown-item {
    padding: 0.75rem 1.5rem;
    color: var(--black);
    text-decoration: none;
    display: block;
    transition: all 0.3s;
}

.dropdown-item:hover {
    background: var(--light-gray);
    color: var(--gold);
}

.dropdown-divider {
    height: 1px;
    background: #e0e0e0;
    margin: 0.5rem 0;
}

/* Tooltips */
.tooltip-trigger {
    position: relative;
    cursor: help;
    border-bottom: 1px dotted var(--medium-gray);
}

.tooltip-trigger::before {
    content: attr(data-tooltip);
    position: absolute;
    bottom: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(-8px);
    padding: 0.5rem 1rem;
    background: var(--black);
    color: var(--white);
    font-size: 0.875rem;
    white-space: nowrap;
    border-radius: 4px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s;
    z-index: 1000;
}

.tooltip-trigger::after {
    content: '';
    position: absolute;
    bottom: 100%;
    left: 50%;
    transform: translateX(-50%);
    border: 6px solid transparent;
    border-top-color: var(--black);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s;
}

.tooltip-trigger:hover::before,
.tooltip-trigger:hover::after {
    opacity: 1;
    visibility: visible;
}

/* Progress Bars */
.progress-bar {
    width: 100%;
    height: 24px;
    background: var(--light-gray);
    overflow: hidden;
    position: relative;
}

.progress-fill {
    height: 100%;
    background: var(--gold);
    transition: width 0.5s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 0.75rem;
    font-weight: 600;
}

.progress-fill.success {
    background: #16a34a;
}

.progress-fill.warning {
    background: #f59e0b;
}

.progress-fill.danger {
    background: #dc2626;
}

/* Loading Spinners */
.spinner {
    width: 50px;
    height: 50px;
    border: 4px solid var(--light-gray);
    border-top-color: var(--gold);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

.spinner-small {
    width: 24px;
    height: 24px;
    border-width: 3px;
}

.spinner-large {
    width: 80px;
    height: 80px;
    border-width: 6px;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* Toast Notifications */
#toast-container {
    position: fixed;
    top: 2rem;
    right: 2rem;
    z-index: 10000;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.toast {
    background: var(--white);
    padding: 1.25rem 1.5rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    min-width: 300px;
    max-width: 400px;
    border-left: 4px solid;
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    animation: slideInRight 0.3s ease;
}

@keyframes slideInRight {
    from {
        transform: translateX(400px);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

.toast-info {
    border-left-color: #3b82f6;
}

.toast-success {
    border-left-color: #16a34a;
}

.toast-warning {
    border-left-color: #f59e0b;
}

.toast-error {
    border-left-color: #dc2626;
}

.toast-content {
    flex: 1;
}

.toast-title {
    font-weight: 600;
    color: var(--black);
    margin-bottom: 0.25rem;
}

.toast-message {
    font-size: 0.9rem;
    color: var(--medium-gray);
}

.toast-close {
    background: none;
    border: none;
    cursor: pointer;
    color: var(--medium-gray);
    font-size: 1.5rem;
    padding: 0;
}

/* Tables */
.table {
    width: 100%;
    border-collapse: collapse;
    margin: 2rem 0;
    background: var(--white);
}

.table thead {
    background: var(--black);
    color: var(--white);
}

.table th {
    padding: 1rem;
    text-align: left;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.875rem;
    letter-spacing: 0.5px;
}

.table td {
    padding: 1rem;
    border-bottom: 1px solid #e0e0e0;
    color: var(--dark-gray);
}

.table tbody tr:hover {
    background: var(--light-gray);
}

.table-striped tbody tr:nth-child(even) {
    background: var(--light-gray);
}

.table-striped tbody tr:hover {
    background: #e8e8e8;
}

/* Pricing Cards */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.pricing-card {
    background: var(--white);
    padding: 3rem 2rem;
    text-align: center;
    border: 2px solid #e0e0e0;
    transition: all 0.3s;
}

.pricing-card:hover {
    border-color: var(--gold);
    transform: translateY(-8px);
}

.pricing-featured {
    border-color: var(--gold);
    position: relative;
    transform: scale(1.05);
}

.pricing-featured::before {
    content: 'POPULAR';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%) translateY(-50%);
    background: var(--gold);
    color: var(--white);
    padding: 0.5rem 1.5rem;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 1px;
}

.pricing-plan {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--black);
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.pricing-price {
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--gold);
    margin-bottom: 0.5rem;
}

.pricing-price sup {
    font-size: 1.5rem;
}

.pricing-period {
    color: var(--medium-gray);
    font-size: 0.9rem;
    margin-bottom: 2rem;
}

.pricing-features {
    list-style: none;
    padding: 0;
    margin: 2rem 0;
}

.pricing-features li {
    padding: 0.75rem 0;
    color: var(--dark-gray);
    border-bottom: 1px solid #e0e0e0;
}

.pricing-features li:last-child {
    border-bottom: none;
}

.pricing-cta {
    margin-top: 2rem;
}

/* Step Indicators */
.steps {
    display: flex;
    justify-content: space-between;
    margin: 3rem 0;
    position: relative;
}

.steps::before {
    content: '';
    position: absolute;
    top: 30px;
    left: 0;
    right: 0;
    height: 2px;
    background: #e0e0e0;
    z-index: 0;
}

.step {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    z-index: 1;
    flex: 1;
}

.step-number {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--light-gray);
    color: var(--medium-gray);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    transition: all 0.3s;
}

.step.active .step-number {
    background: var(--gold);
    color: var(--white);
}

.step.completed .step-number {
    background: var(--black);
    color: var(--white);
}

.step-title {
    font-weight: 600;
    color: var(--black);
    text-align: center;
    font-size: 0.9rem;
}

.step.active .step-title {
    color: var(--gold);
}

/* Back to Top Button */
.back-to-top {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 50px;
    height: 50px;
    background: var(--gold);
    color: var(--white);
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s;
    z-index: 1000;
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    background: var(--black);
    transform: translateY(-5px);
}

/* =========================================
   WIDGET STYLES
   ========================================= */

/* Search Widget */
.search-bar {
    margin-bottom: 1rem;
}

.search-bar.no-title {
    margin-bottom: 0;
}

.search-form {
    display: flex;
    gap: 0.5rem;
}

.search-input {
    flex: 1;
    padding: 0.75rem 1rem;
    border: 1px solid var(--border-color);
    background: var(--white);
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

.search-input:focus {
    outline: none;
    border-color: var(--gold);
    box-shadow: 0 0 0 2px rgba(207, 181, 129, 0.1);
}

.search-button {
    padding: 0.75rem 1.5rem;
    background: var(--black);
    color: var(--white);
    border: 1px solid var(--black);
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1rem;
}

.search-button:hover {
    background: var(--gold);
    border-color: var(--gold);
}

.search-button span {
    display: block;
}

/* Recent Comments Widget */
.recent-comments-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.recent-comment-item {
    display: flex;
    gap: 0.75rem;
    padding: 0.75rem;
    background: var(--light-gray);
    border-radius: 8px;
    transition: background-color 0.3s ease;
}

.recent-comment-item:hover {
    background: rgba(207, 181, 129, 0.1);
}

.comment-avatar {
    flex-shrink: 0;
}

.comment-avatar .avatar-img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
}

.comment-content {
    flex: 1;
    min-width: 0;
}

.comment-author {
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--black);
    margin-bottom: 0.25rem;
}

.comment-excerpt {
    font-size: 0.875rem;
    color: var(--text-muted);
    margin-bottom: 0.25rem;
}

.comment-excerpt a {
    color: var(--text-muted);
    text-decoration: none;
    transition: color 0.3s ease;
}

.comment-excerpt a:hover {
    color: var(--gold);
}

.comment-meta {
    font-size: 0.75rem;
    color: var(--text-muted);
}

.comment-meta a {
    color: var(--gold);
    text-decoration: none;
}

.comment-meta a:hover {
    text-decoration: underline;
}

/* Popular Posts Widget */
.popular-posts-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

/* Tags Cloud Widget */
.tags-cloud-wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.badge {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: var(--black);
    color: var(--white);
    border-radius: 0;
    text-decoration: none;
    font-size: 0.875rem;
    font-weight: 500;
    transition: all 0.3s ease;
    border: 1px solid var(--black);
}

.badge:hover {
    background: var(--gold);
    border-color: var(--gold);
    color: var(--white);
}

.badge-outline {
    background: transparent;
    color: var(--black);
    border: 1px solid var(--black);
}

.badge-outline:hover {
    background: var(--black);
    color: var(--white);
}

.badge-gold {
    background: var(--gold);
    color: var(--white);
    border: 1px solid var(--gold);
}

.badge-gold:hover {
    background: var(--black);
    border-color: var(--black);
}

/* Social Follow Widget */
.social-follow-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.social-button {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--black);
    color: var(--white);
    text-decoration: none;
    transition: all 0.3s ease;
    border: 2px solid var(--black);
}

.social-button:hover {
    background: var(--gold);
    border-color: var(--gold);
    transform: translateY(-2px);
}

.social-button svg {
    width: 20px;
    height: 20px;
}

.social-button.facebook:hover {
    background: #1877f2;
    border-color: #1877f2;
}

.social-button.twitter:hover {
    background: #1da1f2;
    border-color: #1da1f2;
}

.social-button.instagram:hover {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    border-color: #dc2743;
}

.social-button.youtube:hover {
    background: #ff0000;
    border-color: #ff0000;
}

.social-button.pinterest:hover {
    background: #e60023;
    border-color: #e60023;
}

.social-button.linkedin:hover {
    background: #0077b5;
    border-color: #0077b5;
}

/* Widget spacing */
.widget {
    margin-bottom: 2rem;
}

.widget:last-child {
    margin-bottom: 0;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .recent-comment-item {
        padding: 0.5rem;
    }

    .comment-avatar .avatar-img {
        width: 32px;
        height: 32px;
    }

    .social-button {
        width: 40px;
        height: 40px;
    }

    .social-button svg {
        width: 18px;
        height: 18px;
    }
}
