/* style.css - Golden & White Luxury Theme for Glanztasche */

/* Global Reset Classes */
.gt-reset {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Playfair Display', Georgia, 'Times New Roman', serif;
}

.gt-page {
    background-color: #fffef8;
    color: #2d2d2d;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

/* Typography Classes */
.gt-heading-1 {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 3rem;
    font-weight: 700;
    color: #2d2d2d;
    line-height: 1.15;
    margin-bottom: 1.5rem;
}

.gt-heading-2 {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 2.25rem;
    font-weight: 600;
    color: #2d2d2d;
    line-height: 1.3;
    margin-bottom: 1rem;
}

.gt-heading-3 {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 1.5rem;
    font-weight: 600;
    color: #3d3d3d;
    margin-bottom: 0.75rem;
}

.gt-text {
    font-size: 1.1rem;
    color: #555;
    margin-bottom: 1rem;
    line-height: 1.75;
}

.gt-text-small {
    font-size: 0.9rem;
    color: #888;
}

.gt-link {
    color: #b8860b;
    text-decoration: none;
    transition: color 0.3s ease;
}

.gt-link:hover {
    color: #daa520;
    text-decoration: underline;
}

/* Layout Classes */
.gt-container {
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 1.5rem;
    padding-right: 1.5rem;
}

.gt-section {
    padding-top: 5rem;
    padding-bottom: 5rem;
}

.gt-section-alt {
    background-color: #fff;
}

.gt-section-gold {
    background: linear-gradient(135deg, #fdf6e3 0%, #fef9ef 100%);
}

.gt-flex-center {
    display: flex;
    align-items: center;
    justify-content: center;
}

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

.gt-grid-2 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
}

.gt-grid-3 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

/* UI Elements */
.gt-btn {
    display: inline-block;
    padding: 1rem 2.5rem;
    font-size: 1rem;
    font-weight: 600;
    text-align: center;
    text-decoration: none;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    font-family: 'Inter', sans-serif;
}

.gt-btn-primary {
    background: linear-gradient(135deg, #daa520 0%, #b8860b 100%);
    color: #fff;
    box-shadow: 0 4px 15px rgba(218, 165, 32, 0.35);
}

.gt-btn-primary:hover {
    background: linear-gradient(135deg, #ffd700 0%, #daa520 100%);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(218, 165, 32, 0.45);
    color: #fff;
    text-decoration: none;
}

.gt-btn-secondary {
    background-color: transparent;
    color: #b8860b;
    border: 2px solid #b8860b;
}

.gt-btn-secondary:hover {
    background-color: #b8860b;
    color: #fff;
    text-decoration: none;
}

.gt-img-fluid {
    max-width: 100%;
    height: auto;
    display: block;
    border-radius: 12px;
}

.gt-list {
    list-style-type: none;
    padding-left: 0;
    margin-bottom: 1.5rem;
}

.gt-list-item {
    position: relative;
    padding-left: 1.75rem;
    margin-bottom: 0.6rem;
    color: #555;
    font-size: 1rem;
}

.gt-list-item::before {
    content: "✦";
    position: absolute;
    left: 0;
    color: #daa520;
    font-size: 0.9rem;
}

/* Badge */
.gt-badge {
    display: inline-block;
    text-transform: uppercase;
    font-weight: 600;
    font-size: 0.75rem;
    letter-spacing: 2px;
    color: #fff;
    background: linear-gradient(135deg, #daa520 0%, #b8860b 100%);
    padding: 0.5rem 1.25rem;
    border-radius: 25px;
    margin-bottom: 1rem;
}

/* Header - Golden gradient */
.gt-header {
    background: linear-gradient(135deg, #2d2d2d 0%, #1a1a1a 100%);
    padding-top: 1.25rem;
    padding-bottom: 1.25rem;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.15);
}

.gt-logo {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 1.75rem;
    font-weight: 700;
    color: #daa520;
    text-decoration: none;
    letter-spacing: 1px;
}

.gt-disclosure {
    background-color: #1a1a1a;
    padding: 0.6rem 0;
    text-align: center;
    border-bottom: 1px solid #333;
}

.gt-disclosure-text {
    font-size: 0.8rem;
    color: #aaa;
    margin: 0;
}

.gt-hero {
    background: linear-gradient(135deg, #fef9ef 0%, #fdf6e3 50%, #fffef8 100%);
    padding-top: 6rem;
    padding-bottom: 6rem;
    position: relative;
    overflow: hidden;
}

.gt-hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(218, 165, 32, 0.1) 0%, transparent 70%);
    border-radius: 50%;
}

.gt-card {
    background-color: #fff;
    border-radius: 20px;
    padding: 2.5rem;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.06);
    transition: all 0.4s ease;
    border: 1px solid rgba(218, 165, 32, 0.15);
}

.gt-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
    border-color: rgba(218, 165, 32, 0.3);
}

/* Footer - Elegant dark */
.gt-footer {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    color: #ccc;
    padding-top: 4rem;
    padding-bottom: 2rem;
}

.gt-footer-link {
    color: #aaa;
    text-decoration: none;
    margin-right: 1.5rem;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.gt-footer-link:hover {
    color: #daa520;
    text-decoration: none;
}

.gt-table-wrapper {
    overflow-x: auto;
    margin-bottom: 2rem;
    border-radius: 16px;
}

.gt-table {
    width: 100%;
    border-collapse: collapse;
    background-color: #fff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.gt-th, .gt-td {
    padding: 1.25rem 1rem;
    text-align: left;
    border-bottom: 1px solid #f0e6d2;
}

.gt-th {
    background-color: #fdf6e3;
    font-weight: 600;
    color: #b8860b;
    font-size: 0.95rem;
}

.gt-td {
    color: #555;
}

.gt-text-center {
    text-align: center;
}

/* Spacing */
.gt-mt-2 { margin-top: 0.5rem; }
.gt-mt-4 { margin-top: 1.25rem; }
.gt-mt-8 { margin-top: 2.5rem; }
.gt-mb-2 { margin-bottom: 0.5rem; }
.gt-mb-4 { margin-bottom: 1.25rem; }
.gt-mb-8 { margin-bottom: 2.5rem; }

/* ===== Hamburger Menu ===== */
.gt-hamburger {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    z-index: 200;
    position: relative;
}

.gt-hamburger-line {
    display: block;
    width: 26px;
    height: 3px;
    background-color: #daa520;
    border-radius: 3px;
    margin: 5px 0;
    transition: all 0.3s ease;
}

.gt-hamburger.active .gt-hamburger-line:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}

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

.gt-hamburger.active .gt-hamburger-line:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}

.gt-nav-desktop {
    display: flex;
    align-items: center;
}

.gt-nav-desktop .gt-link {
    color: #ccc;
    font-weight: 500;
}

.gt-nav-desktop .gt-link:hover {
    color: #daa520;
}

.gt-nav-mobile-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(4px);
    z-index: 150;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.gt-nav-mobile-overlay.active {
    display: block;
    opacity: 1;
}

.gt-nav-mobile {
    display: none;
    position: fixed;
    top: 0;
    right: -100%;
    width: 300px;
    height: 100%;
    background-color: #2d2d2d;
    z-index: 160;
    padding: 5rem 2rem 2rem;
    box-shadow: -4px 0 30px rgba(0, 0, 0, 0.5);
    transition: right 0.3s ease;
    overflow-y: auto;
}

.gt-nav-mobile.active {
    right: 0;
}

.gt-nav-mobile a {
    display: block;
    padding: 1.25rem 0;
    color: #ccc;
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 500;
    border-bottom: 1px solid #444;
    transition: all 0.2s ease;
}

.gt-nav-mobile a:hover {
    color: #daa520;
    padding-left: 0.75rem;
}

.gt-nav-mobile a:last-child {
    border-bottom: none;
}

/* ===== Price Components ===== */
.gt-price-box {
    background: linear-gradient(135deg, #fdf6e3 0%, #fff 100%);
    border: 2px solid #daa520;
    border-radius: 20px;
    padding: 2rem 2.5rem;
    display: inline-block;
    text-align: center;
    box-shadow: 0 10px 40px rgba(218, 165, 32, 0.2);
}

.gt-price-box-centered {
    display: inline-block;
}

.gt-price-main {
    display: flex;
    align-items: baseline;
    justify-content: center;
    margin-bottom: 0.75rem;
}

.gt-price-currency {
    font-size: 1.5rem;
    font-weight: 600;
    color: #b8860b;
    margin-right: 2px;
}

.gt-price-value {
    font-size: 3rem;
    font-weight: 800;
    color: #2d2d2d;
    line-height: 1;
}

.gt-price-decimal {
    font-size: 1.5rem;
    font-weight: 700;
    color: #2d2d2d;
}

.gt-price-info {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 0.5rem;
}

.gt-price-original {
    font-size: 1rem;
    color: #999;
    text-decoration: line-through;
}

.gt-price-discount {
    background: linear-gradient(135deg, #daa520 0%, #b8860b 100%);
    color: #fff;
    font-size: 0.85rem;
    font-weight: 700;
    padding: 0.35rem 0.85rem;
    border-radius: 20px;
}

.gt-price-tax {
    font-size: 0.85rem;
    color: #888;
}

.gt-offer-badge {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.gt-offer-price {
    font-size: 2.25rem;
    font-weight: 800;
    color: #b8860b;
}

.gt-offer-original {
    font-size: 1rem;
    color: #999;
    text-decoration: line-through;
}

/* Feature Icons */
.gt-feature-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #fdf6e3 0%, #fff 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

/* ===== Responsive Design ===== */
@media (max-width: 768px) {
    .gt-heading-1 {
        font-size: 2.25rem;
    }

    .gt-heading-2 {
        font-size: 1.75rem;
    }

    .gt-heading-3 {
        font-size: 1.3rem;
    }

    .gt-hero {
        padding-top: 3rem;
        padding-bottom: 3rem;
    }

    .gt-section {
        padding-top: 3rem;
        padding-bottom: 3rem;
    }

    .gt-grid-2 {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .gt-grid-3 {
        grid-template-columns: 1fr;
    }

    .gt-hamburger {
        display: block;
    }

    .gt-nav-desktop {
        display: none;
    }

    .gt-nav-mobile {
        display: block;
    }

    .gt-btn {
        padding: 0.9rem 2rem;
        font-size: 0.95rem;
    }

    .gt-disclosure-text {
        font-size: 0.7rem;
    }

    .gt-table {
        font-size: 0.85rem;
    }

    .gt-th, .gt-td {
        padding: 0.85rem 0.6rem;
    }

    .gt-footer {
        padding-top: 3rem;
    }

    .gt-price-value {
        font-size: 2.5rem;
    }

    .gt-card {
        padding: 1.75rem;
    }
}

@media (max-width: 480px) {
    .gt-heading-1 {
        font-size: 1.85rem;
    }

    .gt-heading-2 {
        font-size: 1.45rem;
    }

    .gt-container {
        padding-left: 1rem;
        padding-right: 1rem;
    }

    .gt-hero {
        padding-top: 2rem;
        padding-bottom: 2rem;
    }

    .gt-section {
        padding-top: 2.5rem;
        padding-bottom: 2.5rem;
    }

    .gt-card {
        padding: 1.25rem;
    }

    .gt-text {
        font-size: 1rem;
    }

    .gt-btn {
        padding: 0.85rem 1.75rem;
        font-size: 0.9rem;
        width: 100%;
    }

    .gt-footer .gt-grid-3 {
        gap: 2rem;
    }

    .gt-price-value {
        font-size: 2rem;
    }

    .gt-price-box {
        padding: 1.25rem 1.5rem;
        width: 100%;
    }
}

/* Editorial Classes */
.gt-article-container {
    max-width: 850px;
    margin-left: auto;
    margin-right: auto;
    background-color: #fff;
    padding: 3.5rem;
    border-radius: 24px;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.06);
    border: 1px solid rgba(218, 165, 32, 0.1);
}

@media (max-width: 768px) {
    .gt-article-container {
        padding: 2rem;
    }
}

@media (max-width: 480px) {
    .gt-article-container {
        padding: 1.5rem;
        border-radius: 16px;
    }
}

.gt-author-meta {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding-top: 1.5rem;
    border-top: 1px solid #f0e6d2;
}

.gt-author-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    object-fit: cover;
}

.gt-article-body {
    margin-top: 2rem;
}

.gt-article-text {
    font-size: 1.15rem;
    line-height: 1.85;
    color: #555;
    margin-bottom: 1.75rem;
}

@media (max-width: 480px) {
    .gt-article-text {
        font-size: 1rem;
        line-height: 1.7;
    }
}

.gt-pros-cons-box {
    background: linear-gradient(135deg, #fdf6e3 0%, #fff 100%);
    border: 1px solid #e6dcc0;
    border-radius: 20px;
    padding: 2rem;
}

@media (max-width: 480px) {
    .gt-pros-cons-box {
        padding: 1.25rem;
    }
}

/* Body no-scroll when menu open */
body.gt-menu-open {
    overflow: hidden;
}

/* ===== Preloader ===== */
.gt-preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #fdf6e3 0%, #fffef8 100%);
    z-index: 9999;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

.gt-preloader.gt-hidden {
    opacity: 0;
    visibility: hidden;
}

.gt-loader {
    border: 4px solid #f0e6d2;
    border-top: 4px solid #daa520;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    animation: gt-spin 1s linear infinite;
    margin-bottom: 1rem;
}

.gt-preloader-text {
    font-size: 1.1rem;
    color: #b8860b;
    font-weight: 600;
    font-family: 'Playfair Display', serif;
}

@keyframes gt-spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* ===== Strong text ===== */
strong {
    color: #2d2d2d;
    font-weight: 700;
}

/* Decorative Elements */
.gt-divider {
    width: 60px;
    height: 3px;
    background: linear-gradient(135deg, #daa520 0%, #b8860b 100%);
    margin: 2rem auto;
    border-radius: 3px;
}

.gt-divider-full {
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent, #daa520, transparent);
    margin: 3rem 0;
}

/* Stats Section */
.gt-stats {
    display: flex;
    justify-content: center;
    gap: 3rem;
    flex-wrap: wrap;
    margin: 2rem 0;
}

.gt-stat {
    text-align: center;
}

.gt-stat-value {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: #b8860b;
}

.gt-stat-label {
    font-size: 0.9rem;
    color: #888;
}

/* Review Stars */
.gt-stars {
    color: #daa520;
    font-size: 1.25rem;
    letter-spacing: 2px;
}

.gt-review-count {
    font-size: 0.9rem;
    color: #888;
    margin-left: 0.5rem;
}