/* style.css */

:root {
    --background: #050505;
    --surface: rgba(255,255,255,0.05);
    --border: rgba(255,255,255,0.08);
    --gold: #30d5c8;
    --gold-light: #5d76cb;
    --text: #ffffff;
    --text-secondary: rgba(255,255,255,0.7);
    --shadow: 0 10px 40px rgba(0,0,0,0.45);
    --radius: 24px;
    --transition: 0.4s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    background: var(--background);
    color: var(--text);
    font-family: 'Inter', sans-serif;
    overflow-x: hidden;
}

img {
    width: 100%;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
}

.container {
    width: min(1200px, calc(100% - 40px));
    margin-inline: auto;
}

.section {
    padding: 120px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 70px;
}

.section-label {
    color: var(--gold);
    text-transform: uppercase;
    letter-spacing: 3px;
    font-size: 12px;
}

.section-header h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(42px, 6vw, 72px);
    margin-top: 20px;
}

.section-header p {
    max-width: 700px;
    margin: 20px auto 0;
    color: var(--text-secondary);
    line-height: 1.7;
}

.header {
    position: sticky;
    top: 0;
    z-index: 100;
    backdrop-filter: blur(20px);
    background: rgba(0,0,0,0.45);
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

.header-container {
    height: 82px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    font-size: 26px;
    font-weight: 700;
    letter-spacing: 2px;
}

.logo span {
    color: var(--gold);
}

.nav {
    display: flex;
    gap: 30px;
}

.nav a {
    position: relative;
    color: var(--text-secondary);
    transition: var(--transition);
}

.nav a:hover {
    color: var(--gold);
}

.header-button,
.primary-button {
    background: linear-gradient(
        135deg,
        var(--gold),
        var(--gold-light)
        );

    color: #000;
    padding: 15px 28px;
    border-radius: 999px;
    font-weight: 600;
    transition: var(--transition);
    box-shadow: 0 0 30px rgba(26,74,100,0.8);
}

.header-button:hover,
.primary-button:hover {
    transform: translateY(-4px);
    box-shadow: 0 0 40px rgba(26,74,100,0.8);
}

.secondary-button {
    border: 1px solid rgba(255,255,255,0.15);
    padding: 15px 28px;
    border-radius: 999px;
    transition: var(--transition);
}

.secondary-button:hover {
    border-color: var(--gold);
    color: var(--gold);
}

.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    transform: scale(1.05);
}

.hero-gradient {
    position: absolute;
    width: 700px;
    height: 700px;
    background: radial-gradient(
        circle,
        rgba(26,74,100,0.32),
        transparent 70%
        );

    top: -200px;
    right: -200px;
    filter: blur(50px);
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero-badge {
    display: inline-flex;
    padding: 10px 18px;
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 999px;
    background: rgba(255,255,255,0.04);
    backdrop-filter: blur(10px);
    margin-bottom: 30px;
}

.hero h1 {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(58px, 8vw, 110px);
    line-height: 0.95;
    max-width: 900px;
}

.hero-description {
    max-width: 640px;
    margin-top: 35px;
    font-size: 20px;
    color: var(--text-secondary);
    line-height: 1.7;
}

.hero-actions {
    margin-top: 45px;
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.hero-stats {
    display: flex;
    gap: 60px;
    margin-top: 80px;
}

.hero-stat strong {
    font-size: 36px;
    display: block;
    color: var(--gold);
}

.hero-stat span {
    color: var(--text-secondary);
}

.catalog-grid,
.benefits-grid,
.reviews-grid {
    display: grid;
    gap: 30px;
}

.catalog-grid {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

.product-card {
    position: relative;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
    backdrop-filter: blur(20px);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
}

.product-card:hover {
    transform: translateY(-10px);
    border-color: rgba(26,74,100,3.9);
}

.product-image-wrapper {
    overflow: hidden;
    height: 340px;
}

.product-image {
    height: 100%;
    object-fit: cover;
    transition: 1s ease;
}

.product-card:hover .product-image {
    transform: scale(1.08);
}

.product-content {
    padding: 28px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.product-brand {
    color: var(--gold);
    font-size: 13px;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.product-card h3 {
    font-size: 32px;
    margin-top: 12px;
    font-family: 'Cormorant Garamond', serif;
}

.product-description {
    margin-top: 14px;
    color: var(--text-secondary);
    line-height: 1.7;
    flex: 1;
}

.product-prices {
    margin-top: 24px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.product-button {
    width: 100%;
    margin-top: 24px;
    padding: 16px;
    border: none;
    cursor: pointer;
    border-radius: 14px;
    background: linear-gradient(
        135deg,
        var(--gold),
        var(--gold-light)
        );

    color: #000;
    font-weight: 700;
    transition: var(--transition);
}

.product-button:hover {
    transform: scale(1.03);
}

.product-badge {
    position: absolute;
    top: 20px;
    left: 20px;
    z-index: 5;

    background: rgba(0,0,0,0.8);
    border: 1px solid rgba(26,74,100,0.5);

    padding: 8px 14px;
    border-radius: 999px;

    color: var(--gold);
    font-size: 12px;
    text-transform: uppercase;
}

.benefits-grid,
.reviews-grid {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

.reviews-slider {
    position: relative;
    overflow: hidden;
    margin: 0 -10px;
}

.reviews-track {
    display: flex;
    transition: transform 0.5s ease;
    gap: 30px;
}

.review-card {
    min-width: calc(100% / 3 - 20px);
    background: transparent;
    border: none;
}

.reviews-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    width: 44px;
    height: 44px;
    border: none;
    border-radius: 50%;
    background: rgba(255,255,255,0.08);
    color: #fff;
    font-size: 28px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    backdrop-filter: blur(10px);
}

.reviews-btn:hover {
    background: rgba(255,255,255,0.18);
}

.reviews-prev {
    left: 0;
}
.reviews-next {
    right: 0;
}

.reviews-btn.hidden {
    display: none;
}

.reviews-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 30px;
}

.reviews-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255,255,255,0.15);
    border: none;
    cursor: pointer;
    transition: var(--transition);
}

.reviews-dot.active {
    background: var(--gold);
    width: 24px;
    border-radius: 4px;
}

@media (max-width: 900px) {
    .review-card {
        min-width: calc(100% / 2 - 25px);
    }
}

@media (max-width: 640px) {
    .review-card {
        min-width: 100%;
    }
    .reviews-track {
        gap: 0px;
    }
}

.benefit-card,
.review-card,
.cta-box {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    backdrop-filter: blur(18px);
}

.benefit-card,
.review-card {
    padding: 40px;
}

.benefit-number {
    color: var(--gold);
    font-size: 52px;
    font-family: 'Cormorant Garamond', serif;
}

.benefit-card h3,
.review-card strong {
    display: block;
    margin-top: 20px;
    font-size: 28px;
}

.review-card p {
    margin-top: 18px;
    color: var(--text-secondary);
    line-height: 1.7;
}

.benefit-card p,
.review-card p {
    margin-top: 18px;
    color: var(--text-secondary);
    line-height: 1.7;
}

.cta-section {
    padding: 40px 0 120px;
}

.cta-box {
    padding: 70px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
}

.cta-label {
    color: var(--gold);
    text-transform: uppercase;
    letter-spacing: 2px;
}

.cta-box h2 {
    font-size: clamp(42px, 5vw, 70px);
    margin-top: 20px;
    font-family: 'Cormorant Garamond', serif;
}

.cta-box p {
    margin-top: 20px;
    color: var(--text-secondary);
}

.review-stars {
    color: var(--gold);
    font-size: 22px;
}

.faq-list {
    max-width: 900px;
    margin-inline: auto;
}

.faq-item {
    border-bottom: 1px solid rgba(255,255,255,0.08);
    padding: 26px 0;
}

.faq-question {
    width: 100%;
    background: transparent;
    border: none;
    text-align: left;
    color: white;
    font-size: 22px;
    cursor: pointer;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: var(--transition);
    color: var(--text-secondary);
    line-height: 1.8;
}

.faq-item.active .faq-answer {
    max-height: 200px;
    margin-top: 20px;
}

.contact-form {
    max-width: 560px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 18px 22px;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 14px;
    color: #fff;
    font-size: 16px;
    font-family: 'Inter', sans-serif;
    outline: none;
    transition: var(--transition);
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: var(--gold);
}

.form-group textarea {
    resize: vertical;
}

.form-button {
    border: none;
    cursor: pointer;
    text-align: center;
}

.footer {
    padding: 60px 0;
    border-top: 1px solid rgba(255,255,255,0.08);
}

.footer-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-logo {
    font-size: 28px;
    font-weight: 700;
}

.footer-logo span {
    color: var(--gold);
}

.footer-socials {
    display: flex;
    gap: 24px;
}

.footer-socials a:hover {
    color: var(--gold);
}

.modal {
    position: fixed;
    inset: 0;
    z-index: 300;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.modal.active {
    display: flex;
}

.modal-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.8);
    backdrop-filter: blur(12px);
}

.modal-content {
    position: relative;
    width: min(900px, 100%);
    max-height: 85vh;
    overflow-y: auto;
    background: #111;
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 7px;
    z-index: 2;
}

.modal-content::-webkit-scrollbar {
    width: 6px;
}

.modal-content::-webkit-scrollbar-thumb {
    background: rgba(255,255,255,0.15);
    border-radius: 3px;
}

.modal-body {
    padding: 40px;
}

.modal-close {
    position: sticky;
    top: 18px;
    float: right;
    z-index: 5;
    width: 44px;
    height: 44px;
    border: none;
    border-radius: 50%;
    background: rgba(0,0,0,0.6);
    color: white;
    font-size: 28px;
    cursor: pointer;
    margin-bottom: -62px;
    margin-right: 8px;
}

.modal-close:hover {
    background: rgba(255,255,255,0.2);
}

.modal-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 6;
    width: 48px;
    height: 48px;
    border: none;
    border-radius: 50%;
    background: rgba(0,0,0,0.5);
    color: #fff;
    font-size: 32px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.modal-nav:hover {
    background: rgba(255,255,255,0.15);
}

.modal-prev {
    left: 16px;
}

.modal-next {
    right: 16px;
}

.toast-container {
    position: fixed;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 999;
    display: flex;
    flex-direction: column;
    gap: 10px;
    pointer-events: none;
}

.toast {
    padding: 16px 28px;
    border-radius: 14px;
    color: #fff;
    font-size: 15px;
    font-weight: 500;
    text-align: center;
    pointer-events: auto;
    animation: toastIn 0.3s ease, toastOut 0.3s ease 4.7s forwards;
    max-width: 480px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.4);
}

.toast-success {
    background: #1a7a3a;
    border: 1px solid #2ea85a;
}

.toast-error {
    background: #8a1a1a;
    border: 1px solid #cc2a2a;
}

@keyframes toastIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to   {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes toastOut {
    from {
        opacity: 1;
    }
    to   {
        opacity: 0;
        transform: translateY(10px);
    }
}

.scroll-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 200;
    width: 52px;
    height: 52px;
    border: none;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--gold), var(--gold-light));
    color: #000;
    font-size: 26px;
    cursor: pointer;
    box-shadow: 0 4px 20px rgba(0,0,0,0.4);
    transition: var(--transition);
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
}

.scroll-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.scroll-top:hover {
    transform: translateY(-4px);
    box-shadow: 0 6px 28px rgba(0,0,0,0.5);
}

@media (max-width: 640px) {
    .modal-body {
        padding: 24px;
    }

    .modal-nav {
        width: 36px;
        height: 36px;
        font-size: 24px;
    }

    .modal-prev {
        left: 8px;
    }

    .modal-next {
        right: 8px;
    }
}

.modal-product-img {
    width: 100%;
    height: 420px;
    object-fit: cover;
    border-radius: 20px;
    margin-bottom: 30px;
}

.modal-product-brand {
    color: var(--gold);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 13px;
}

.modal-product-title {
    font-size: 52px;
    margin-top: 16px;
    font-family: 'Cormorant Garamond', serif;
}

.modal-product-desc {
    margin-top: 24px;
    color: var(--text-secondary);
    line-height: 1.8;
    font-size: 18px;
}

.modal-product-prices {
    margin-top: 32px;
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
}

.modal-price-item {
    padding: 14px 22px;
    border-radius: 14px;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.08);
}

.modal-product-btn {
    margin-top: 36px;
    width: 100%;
    border: none;
    border-radius: 18px;
    padding: 20px;
    cursor: pointer;
    background: linear-gradient(135deg, var(--gold), var(--gold-light));
    color: #000;
    font-weight: 700;
    font-size: 18px;
    transition: var(--transition);
}

.modal-product-btn:hover {
    transform: scale(1.03);
}

.product-dupe {
    padding: 14px 18px;
    border-radius: 10px;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.08);
    margin-top: 14px;
}

.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: 1s ease;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

@media (max-width: 900px) {

    .nav {
        display: none;
    }

    .hero-stats {
        gap: 24px;
        flex-wrap: wrap;
    }

    .cta-box {
        padding: 40px;
        flex-direction: column;
        align-items: flex-start;
    }

    .footer-container {
        flex-direction: column;
        gap: 30px;
    }

}

@media (max-width: 640px) {

    .hero h1 {
        font-size: 3rem;
    }

    .hero-description {
        font-size: 17px;
    }

    .section {
        padding: 90px 0;
    }

    .header-button {
        display: none;
    }

}