/* ==============================
    RESET & BASE STYLES - PREMIUM DARK THEME
============================== */

.body-theme {
    font-family: 'Montserrat', sans-serif;
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    color: #e0e0e0;
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.hidden-body {
    overflow: hidden !important;
}

.elegant-text {
    font-family: 'Cormorant Garamond', serif;
    color: #d4af37;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.base-link {
    text-decoration: none;
    color: inherit;
}

.base-img {
    max-width: 100%;
    display: block;
    height: auto;
    transition: transform 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.text-center {
    text-align: center;
}

/* ==============================
    ADVERTISEMENT TOP BAR
============================== */
.top-advertisement-bar {
    background: linear-gradient(90deg, #2c1810 0%, #4a2c1f 100%);
    color: #d4af37;
    text-align: center;
    padding: 10px 15px;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    border-bottom: 1px solid #d4af37;
}
.top-ad-text {
    margin: 0;
    padding: 0;
}

/* ==============================
    NAVIGATION
============================== */
.navbar {
    background: linear-gradient(90deg, #000000 0%, #1a1a1a 100%);
    border-bottom: 2px solid #d4af37;
    position: sticky;
    top: 0;
    z-index: 50;
    box-shadow: 0 4px 20px rgba(0,0,0,0.5);
}

.nav-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
}

.logo {
    font-weight: 700;
    font-size: 1.8rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #d4af37;
    font-family: 'Cormorant Garamond', serif;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.nav-links {
    display: flex;
    gap: 40px;
}

.nav-link-item {
    color: #e0e0e0;
    font-weight: 500;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    text-decoration: none;
    position: relative;
    letter-spacing: 1px;
}

.nav-link-item::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: #d4af37;
    transition: width 0.3s ease;
    box-shadow: 0 0 8px #d4af37;
}

.nav-link-item:hover {
    color: #d4af37;
}

.nav-link-item:hover::after {
    width: 100%;
}

.btn-primary {
    background: linear-gradient(135deg, #d4af37 0%, #b8860b 100%);
    color: #000000;
    padding: 12px 28px;
    border-radius: 30px;
    font-weight: 700;
    font-size: 0.9rem;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: none;
    cursor: pointer;
    text-decoration: none;
    box-sizing: border-box;
    letter-spacing: 1px;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
}

.btn-primary:hover {
    background: linear-gradient(135deg, #e5c14b 0%, #d4a017 100%);
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.5);
    color: #000000;
}

.btn-block {
    display: flex;
    width: 100%;
    margin-top: 15px;
    box-sizing: border-box;
}

.hamburger-btn {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    flex-direction: column;
    gap: 6px;
}

.hamburger-line {
    width: 30px;
    height: 3px;
    background-color: #d4af37;
    border-radius: 2px;
    transition: all 0.3s ease;
    box-shadow: 0 0 5px #d4af37;
}

/* Mobile Menu */
.mobile-menu-overlay {
    position: fixed;
    top: 0;
    right: -100%;
    width: 75%;
    height: 100vh;
    background: linear-gradient(135deg, #1a1a1a 0%, #000000 100%);
    z-index: 2000;
    box-shadow: -5px 0 30px rgba(212, 175, 55, 0.2);
    transition: right 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    display: flex;
    flex-direction: column;
    padding: 80px 30px;
    box-sizing: border-box;
    border-left: 2px solid #d4af37;
}

.menu-active {
    right: 0;
}

.close-menu-btn {
    background: none;
    border: none;
    font-size: 3rem;
    position: absolute;
    top: 20px;
    right: 25px;
    cursor: pointer;
    color: #d4af37;
    transition: all 0.3s ease;
    text-shadow: 0 0 10px #d4af37;
}

.close-menu-btn:hover {
    transform: rotate(90deg) scale(1.1);
    color: #e5c14b;
}

.mobile-nav-links {
    display: flex;
    flex-direction: column;
    gap: 30px;
    margin-top: 30px;
}

.mobile-nav-link-item {
    text-decoration: none;
    font-size: 1.3rem;
    color: #e0e0e0;
    font-weight: 500;
    transition: all 0.3s ease;
    letter-spacing: 1px;
    border-bottom: 1px solid #333;
    padding-bottom: 10px;
}

.mobile-nav-link-item:hover {
    color: #d4af37;
    transform: translateX(15px);
    border-bottom-color: #d4af37;
}

/* ==============================
    BANNER
============================== */
.banner {
    background: linear-gradient(90deg, #2a2a2a 0%, #1a1a1a 100%);
    color: #e0e0e0;
    padding: 15px 0;
    font-size: 0.95rem;
    border-bottom: 1px solid #d4af37;
    border-top: 1px solid #d4af37;
}

.banner-inner {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    text-align: center;
}

.badge {
    background: linear-gradient(135deg, #d4af37 0%, #b8860b 100%);
    color: #000000;
    padding: 4px 15px;
    border-radius: 20px;
    font-weight: 800;
    font-size: 0.75rem;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    box-shadow: 0 2px 10px rgba(212, 175, 55, 0.3);
}

.banner-link {
    text-decoration: underline;
    font-weight: 600;
    color: #d4af37;
    transition: all 0.3s ease;
}

.banner-link:hover {
    color: #e5c14b;
    transform: translateX(5px);
    text-shadow: 0 0 8px #d4af37;
}

/* ==============================
    MAIN CONTENT GRID
============================== */
.grid-layout {
    display: grid;
    grid-template-columns: 1fr 300px;
    gap: 40px;
    padding-top: 50px;
    padding-bottom: 70px;
    align-items: start;
}

/* Articles Area */
.articles-area {
    display: flex;
    flex-direction: column;
    gap: 35px;
}

.card {
    background: linear-gradient(135deg, #2a2a2a 0%, #1f1f1f 100%);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    border: 1px solid #d4af37;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(212, 175, 55, 0.2);
    border-color: #e5c14b;
}

.card-image-wrap {
    position: relative;
    overflow: hidden;
}

.article-img {
    width: 100%;
    transition: transform 0.7s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    display: block;
    height: auto;
}

.card-hover-wrapper:hover .article-img {
    transform: scale(1.1);
}

.tag {
    position: absolute;
    top: 20px;
    left: 20px;
    background: linear-gradient(135deg, #d4af37 0%, #b8860b 100%);
    color: #000000;
    padding: 8px 18px;
    border-radius: 25px;
    font-weight: 800;
    font-size: 0.75rem;
    letter-spacing: 1px;
    z-index: 10;
    box-shadow: 0 4px 15px rgba(0,0,0,0.3);
}

.card-body {
    padding: 35px;
}

.article-title {
    font-size: 2.2rem;
    line-height: 1.2;
    margin-bottom: 20px;
    color: #d4af37;
    margin-top: 0;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.prose {
    color: #cccccc;
    font-size: 1.1rem;
    line-height: 1.8;
}

.prose-p {
    margin-bottom: 1.5rem;
    margin-top: 0;
}

.highlight-box {
    background: linear-gradient(135deg, #333333 0%, #262626 100%);
    border-left: 4px solid #d4af37;
    padding: 30px;
    margin: 30px 0;
    border-radius: 0 12px 12px 0;
    box-shadow: inset 0 0 20px rgba(212, 175, 55, 0.1);
}

.highlight-title {
    margin-bottom: 12px;
    font-size: 1.6rem;
    margin-top: 0;
    color: #d4af37;
}

.highlight-p {
    margin-bottom: 20px;
    font-size: 1rem;
    margin-top: 0;
    color: #e0e0e0;
}

.btn-dark {
    display: inline-block;
    background: linear-gradient(135deg, #d4af37 0%, #b8860b 100%);
    color: #000000;
    padding: 14px 32px;
    border-radius: 30px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    letter-spacing: 1px;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
}

.btn-dark:hover {
    background: linear-gradient(135deg, #e5c14b 0%, #d4a017 100%);
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.5);
}

/* Sidebar */
.sidebar {
    position: sticky;
    top: 100px;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.widget {
    background: linear-gradient(135deg, #2a2a2a 0%, #1f1f1f 100%);
    border-radius: 15px;
    padding: 25px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    border: 1px solid #d4af37;
    box-sizing: border-box;
    transition: all 0.3s ease;
}

.widget:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(212, 175, 55, 0.2);
    border-color: #e5c14b;
}

.widget-dark {
    background: linear-gradient(135deg, #1a1a1a 0%, #0a0a0a 100%);
    border: 1px solid #d4af37;
}

.badge-hot {
    display: inline-block;
    background: linear-gradient(135deg, #d4af37 0%, #b8860b 100%);
    color: #000000;
    font-size: 0.75rem;
    font-weight: 800;
    padding: 5px 15px;
    border-radius: 20px;
    margin-bottom: 15px;
    letter-spacing: 0.5px;
    box-shadow: 0 2px 10px rgba(212, 175, 55, 0.3);
}

.widget-title {
    font-size: 1.6rem;
    margin-bottom: 20px;
    margin-top: 0;
    color: #d4af37;
}

.product-img {
    border-radius: 10px;
    margin-bottom: 20px;
    max-width: 100%;
    height: auto;
    display: block;
    border: 2px solid #d4af37;
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
}

.feature-list {
    margin-bottom: 20px;
    list-style: none;
    padding: 0;
    margin-top: 0;
}

.feature-list-item {
    font-size: 0.95rem;
    color: #cccccc;
    margin-bottom: 10px;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 8px;
}

.feature-list-item::before {
    content: '✓';
    color: #d4af37;
    font-weight: bold;
    font-size: 1.1rem;
}

.newsletter-form {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.newsletter-input {
    padding: 14px;
    border: 1px solid #d4af37;
    border-radius: 8px;
    background-color: rgba(0,0,0,0.3);
    color: #ffffff;
    font-family: inherit;
    font-size: 0.95rem;
    box-sizing: border-box;
    transition: all 0.3s ease;
}

.newsletter-input:focus {
    outline: none;
    border-color: #e5c14b;
    background-color: rgba(0,0,0,0.5);
    box-shadow: 0 0 15px rgba(212, 175, 55, 0.3);
}

.newsletter-input::placeholder {
    color: #888;
}

/* Sections Styling */
.page-section {
    background: linear-gradient(135deg, #2a2a2a 0%, #1f1f1f 100%);
    border-radius: 15px;
    padding: 40px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    border: 1px solid #d4af37;
    margin-top: 35px;
    box-sizing: border-box;
    transition: all 0.3s ease;
}

.page-section:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(212, 175, 55, 0.2);
}

.section-header {
    font-size: 2rem;
    margin-bottom: 30px;
    border-bottom: 2px solid #d4af37;
    padding-bottom: 15px;
    margin-top: 0;
    color: #d4af37;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 25px;
}

.feature-card {
    background: linear-gradient(135deg, #333333 0%, #262626 100%);
    padding: 25px;
    border-radius: 10px;
    border-left: 4px solid #d4af37;
    box-sizing: border-box;
    transition: all 0.3s ease;
}

.feature-card:hover {
    transform: translateX(10px);
    background: linear-gradient(135deg, #3a3a3a 0%, #2d2d2d 100%);
    border-left-color: #e5c14b;
}

.feature-title-text {
    margin-bottom: 12px;
    font-size: 1.3rem;
    margin-top: 0;
    color: #d4af37;
}

.feature-text-desc {
    color: #cccccc;
    margin: 0;
}

.testimonials-list {
    display: grid;
    grid-template-columns: 1fr;
    gap: 25px;
}

.testimonial-item {
    background: linear-gradient(135deg, #333333 0%, #262626 100%);
    padding: 25px;
    border-radius: 10px;
    font-style: italic;
    box-sizing: border-box;
    border: 1px solid #d4af37;
    transition: all 0.3s ease;
}

.testimonial-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(212, 175, 55, 0.2);
}

.testimonial-text-content {
    margin: 0;
    color: #e0e0e0;
}

.testimonial-author {
    margin-top: 15px;
    font-weight: 700;
    font-style: normal;
    margin-bottom: 0;
    color: #d4af37;
}

.faq-list-container {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.faq-item {
    background: linear-gradient(135deg, #333333 0%, #262626 100%);
    padding: 20px 25px;
    border-radius: 10px;
    border: 1px solid #d4af37;
    box-sizing: border-box;
    transition: all 0.3s ease;
}

.faq-item:hover {
    transform: translateX(8px);
    background: linear-gradient(135deg, #3a3a3a 0%, #2d2d2d 100%);
    border-color: #e5c14b;
}

.faq-question {
    font-size: 1.2rem;
    margin-bottom: 10px;
    font-weight: 700;
    color: #d4af37;
    margin-top: 0;
}

.faq-answer {
    color: #cccccc;
    font-size: 0.95rem;
    margin: 0;
}

.return-policy-p {
    margin: 0;
    color: #e0e0e0;
}

/* Specs Table */
.specs-table-container {
    margin: 30px 0;
}

.specs-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.95rem;
}

.specs-table tr {
    border-bottom: 1px solid #d4af37;
    transition: all 0.2s ease;
}

.specs-table tr:hover {
    background-color: rgba(212, 175, 55, 0.1);
}

.specs-table td {
    padding: 12px 0;
    color: #cccccc;
}

.specs-table td:first-child {
    width: 40%;
    color: #d4af37;
    font-weight: 600;
}

/* ==============================
    FOOTER
============================== */
.footer {
    background: linear-gradient(90deg, #000000 0%, #1a1a1a 100%);
    padding: 60px 0 30px;
    margin-top: 60px;
    border-top: 3px solid #d4af37;
}

.footer-clean-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
}

.footer-left {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.footer-logo {
    color: #d4af37;
    margin-bottom: 5px;
    font-size: 2rem;
}

.footer-copyright {
    color: #888;
    font-size: 0.85rem;
}

.footer-links-inline {
    display: flex;
    gap: 20px;
    margin-top: 10px;
}

.footer-link-item {
    color: #aaa;
    font-size: 0.85rem;
    transition: all 0.3s ease;
    text-decoration: none;
    text-transform: capitalize;
    position: relative;
}

.footer-link-item::after {
    content: '';
    position: absolute;
    bottom: -3px;
    left: 0;
    width: 0;
    height: 1px;
    background-color: #d4af37;
    transition: width 0.3s ease;
}

.footer-link-item:hover {
    color: #d4af37;
}

.footer-link-item:hover::after {
    width: 100%;
}

.footer-right {
    max-width: 500px;
}

.footer-disclosure-box {
    background: linear-gradient(135deg, #2a2a2a 0%, #1f1f1f 100%);
    border: 1px solid #d4af37;
    padding: 25px;
    border-radius: 10px;
    color: #ccc;
    font-size: 0.85rem;
    line-height: 1.7;
    box-sizing: border-box;
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
}

.footer-strong {
    color: #d4af37;
    font-weight: bold;
}

/* ==============================
    MODALS & COOKIES
============================== */
.modal-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    z-index: 9999;
    justify-content: center;
    align-items: center;
    backdrop-filter: blur(5px);
}

.modal-content {
    background: linear-gradient(135deg, #1a1a1a 0%, #0a0a0a 100%);
    padding: 35px 25px;
    border-radius: 20px;
    max-width: 550px;
    width: 92%;
    max-height: 85vh;
    overflow-y: auto;
    position: relative;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.8);
    border: 1px solid #d4af37;
    box-sizing: border-box;
    transform: translateY(30px);
    opacity: 0;
    transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.modal-content::-webkit-scrollbar {
    width: 4px;
}

.modal-content::-webkit-scrollbar-thumb {
    background: #d4af37;
    border-radius: 10px;
}

.modal-overlay[style*="display: flex"] .modal-content {
    transform: translateY(0);
    opacity: 1;
}

.modal-close {
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 2rem;
    cursor: pointer;
    color: #d4af37;
    transition: all 0.3s ease;
    background: none;
    border: none;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.modal-close:hover {
    transform: rotate(90deg) scale(1.1);
    color: #e5c14b;
    background-color: rgba(212, 175, 55, 0.1);
}

.cookie-banner {
    display: none;
    position: fixed;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #1a1a1a 0%, #0a0a0a 100%);
    color: #e0e0e0;
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 15px 40px rgba(212, 175, 55, 0.3);
    z-index: 9998;
    max-width: 650px;
    width: 90%;
    align-items: center;
    justify-content: space-between;
    gap: 25px;
    box-sizing: border-box;
    border: 1px solid #d4af37;
}

.cookie-text {
    flex: 1;
    font-size: 0.9rem;
    color: #ccc;
}

.cookie-buttons {
    display: flex;
    gap: 12px;
}

.cookie-btn {
    background-color: #333;
    color: #fff;
    border: 1px solid #d4af37;
    padding: 10px 20px;
    border-radius: 6px;
    cursor: pointer;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.cookie-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(212, 175, 55, 0.3);
}

.cookie-accept {
    background: linear-gradient(135deg, #d4af37 0%, #b8860b 100%);
    color: #000;
    border: none;
}

.cookie-accept:hover {
    background: linear-gradient(135deg, #e5c14b 0%, #d4a017 100%);
}

.cookie-reject:hover {
    background-color: #444;
    border-color: #e5c14b;
}

/* List resets */
.custom-list {
    list-style-type: disc;
    margin-left: 25px;
    margin-bottom: 15px;
    margin-top: 15px;
}
.custom-list-item {
    margin-bottom: 8px;
    color: #ccc;
}

/* Utilities */
.mb-15 { margin-bottom: 15px; }
.mt-0 { margin-top: 0; }
.mb-0 { margin-bottom: 0px; }

/* Page Loader */
.page-loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: linear-gradient(135deg, #000000 0%, #1a1a1a 100%);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 99999;
    transition: opacity 0.5s ease;
}
.loader-brand {
    font-family: 'Cormorant Garamond', serif;
    font-size: 3rem;
    color: #d4af37;
    margin-bottom: 25px;
    margin-top: 0;
    animation: glow 1.5s infinite;
    text-shadow: 0 0 20px #d4af37;
}
@keyframes glow {
    0% { opacity: 0.7; text-shadow: 0 0 10px #d4af37; }
    50% { opacity: 1; text-shadow: 0 0 30px #d4af37; transform: scale(1.02); }
    100% { opacity: 0.7; text-shadow: 0 0 10px #d4af37; }
}
.loader-spinner {
    width: 50px;
    height: 50px;
    border: 3px solid rgba(212, 175, 55, 0.2);
    border-radius: 50%;
    border-top-color: #d4af37;
    animation: spin 1s ease-in-out infinite;
    box-shadow: 0 0 15px #d4af37;
}

/* ==============================
    MEDIA QUERIES
============================== */
@media (max-width: 992px) {
    .grid-layout {
        grid-template-columns: 1fr;
    }
    
    .sidebar {
        position: static;
    }
}

@media (max-width: 768px) {
    .nav-links, .desktop-only {
        display: none;
    }
    
    .hamburger-btn {
        display: flex;
    }

    .article-title {
        font-size: 1.8rem;
    }

    .footer-clean-content {
        flex-direction: column;
        text-align: left;
        align-items: flex-start;
        gap: 30px;
    }
    
    .footer-links-inline {
        flex-wrap: wrap;
    }

    .cookie-banner {
        flex-direction: column;
        text-align: center;
        padding: 20px;
    }

    .modal-content {
        padding: 40px 20px 25px;
        width: 95%;
        border-radius: 15px;
    }

    .section-header {
        font-size: 1.6rem;
    }
}

/* Smooth scroll */
html {
    scroll-behavior: smooth;
}

/* Custom scrollbar */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: #1a1a1a;
}

::-webkit-scrollbar-thumb {
    background: #d4af37;
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: #e5c14b;
}