:root {
    --bg-color: #0d0d0d;
    --card-bg: #151515;
    --card-bg-hover: #1e1e1e;
    --text-primary: #ffffff;
    --text-secondary: #909090;

    /* Gradients & Accents */
    --accent-gradient: linear-gradient(92deg, #FF0055 0%, #FF264D 25%, #FF8800 100%);
    --accent-gradient-hover: linear-gradient(92deg, #ff1a66 0%, #ff4060 25%, #ffa333 100%);
    --accent-color: #FF264D;

    /* Layout & Borders */
    --border-radius-base: 16px;
    --border-radius-pill: 50px;
    --border-soft: rgba(255, 255, 255, 0.08);
    --border-hover: rgba(255, 136, 0, 0.3);
    --glass-bg: rgba(20, 20, 20, 0.95);
    --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}

.glass {
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    border: 1px solid var(--border-soft);
}

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

body {
    background-color: var(--bg-color);
    color: var(--text-primary);
    font-family: 'Inter', sans-serif;
    line-height: 1.5;
    overflow-x: hidden;
    /* padding-bottom: 80px; */
    /* Space for mobile floating cart if needed */
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition-fast);
}

ul {
    list-style: none;
}

button {
    border: none;
    outline: none;
    background: none;
    font-family: inherit;
    cursor: pointer;
}

/* --- Container --- */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* --- Header --- */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    height: 70px;
    background: rgba(13, 13, 13, 0.8);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border-soft);
    display: flex;
    align-items: center;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.logo {
    font-size: 24px;
    font-weight: 800;
    letter-spacing: -0.5px;
    height: auto;
    display: flex;
    align-items: center;
}

.logo img {
    height: 25px !important;
}

.logo span {
    color: #FF8800;
    /* Orange part of TUP based on image */
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.lang-switch-wrapper {
    display: none;
}

.header-actions {
    display: flex;
    gap: 15px;
    align-items: center;
}

.lang-switch {
    background: #111;
    color: #fff;
    height: 44px;
    /* Matches my-purchases-btn */
    padding: 0 16px;
    border-radius: 14px;
    font-weight: 600;
    font-size: 14px;
    border: 1.5px solid var(--border-soft);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
}

.lang-switch:hover {
    background: #1A1A1A;
    border-color: #333;
}

.my-purchases-btn {
    background: linear-gradient(#111, #111) padding-box,
        linear-gradient(to right, #FF3D67, #FF8A00) border-box;
    border: 1.5px solid transparent;
    color: #fff;
    height: 42px;
    /* Same height as lang-switch */
    padding: 0 20px;
    border-radius: 14px;
    font-size: 14px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 12px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.5);
    text-decoration: none;
}

.my-purchases-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 61, 103, 0.2);
    filter: brightness(1.1);
}

.my-purchases-btn svg {
    opacity: 0.9;
}

.nav-link {
    color: var(--text-secondary);
    font-size: 14px;
    font-weight: 600;
    transition: color 0.2s;
    margin-right: 15px;
}

.nav-link:hover {
    color: #fff;
}

/* --- Hero --- */
.hero {
    text-align: center;
    padding: 140px 0 60px;
}

.hero p {
    color: var(--text-secondary);
    font-size: 16px;
    margin-bottom: 30px;
}

/* Updated centering */
.platform-toggle-container {
    display: flex;
    justify-content: center;
    width: 100%;
    margin: 0 auto;
}

.section {
    padding: 20px 0px 40px 0;
}

h2 {
    text-align: center;
    font-size: 28px;
    font-weight: 800;
    margin-bottom: 50px;
}

/* Platform Toggle Pill (from image) */
.platform-pill-toggle {
    background: #111;
    border-radius: 50px;
    display: flex;
    position: relative;
    padding: 4px;
    width: 240px;
    height: 50px;
}

.toggle-bg {
    position: absolute;
    top: 4px;
    left: 4px;
    width: calc(50% - 4px);
    height: calc(100% - 8px);
    background: var(--accent-gradient);
    border-radius: 40px;
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1;
}

.platform-pill-toggle label {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-secondary);
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    z-index: 2;
    transition: color 0.3s;
}

.platform-pill-toggle label input {
    display: none;
}

.platform-pill-toggle label.active {
    color: #fff;
}

.platform-pill-toggle label:not(.active):hover {
    color: #fff;
}

.platform-pill-toggle[data-active="console"] .toggle-bg {
    transform: translateX(100%);
}

/* Small version for cart */
.platform-pill-toggle.small {
    width: 100%;
    height: 44px;
    padding: 4px;
}

.platform-pill-toggle.small .toggle-bg {
    top: 4px;
    left: 4px;
    width: calc(50% - 4px);
    height: calc(100% - 8px);
}

.platform-pill-toggle.small label {
    font-size: 13px;
}

.cart-platform-switch {
    padding: 10px 0 20px 0;
}

.step-icon img {
    width: 32px;
    height: 32px;
}

/* --- Sets Section (Carousel) --- */
.section h2 {
    font-size: 24px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 40px;
}

.sets-carousel-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    /* max-width: 1000px; */
    /* Constrain width for 3 items */
    margin: 0 auto;
}

.sets-viewport {
    overflow: visible;
    /* Changed to visible to allow scaled items to overflow slightly if needed, but track centering usually keeps it in */
    overflow-x: hidden;
    width: 90%;
    padding: 40px 0;
    /* More padding for scaled item */
}

.sets-track {
    display: flex;
    gap: 0;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    width: 100%;
    will-change: transform;
}

.set-card {
    background: #111;
    border: 1px solid var(--border-soft);
    border-radius: 20px;
    padding: 30px 20px;
    text-align: center;
    position: relative;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    min-height: 380px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;

    /* Carousel sizing */
    flex: 0 0 300px;
    /* Fixed width for better centering logic */
    margin: 0 20px;
    opacity: 0.4;
    transform: scale(0.9);
    filter: blur(1px);
}

.set-card.focused {
    opacity: 1;
    transform: scale(1.1);
    border-color: rgba(255, 136, 0, 0.5);
    background: #151515;
    z-index: 5;
    filter: blur(0);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

/* Nav Buttons */
.nav-btn {
    background: rgba(255, 255, 255, 0.05);
    color: #fff;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: 0.3s;
    font-size: 20px;
    z-index: 10;
    flex-shrink: 0;
    border: 1px solid var(--border-soft);
}

.nav-btn:hover {
    background: var(--accent-gradient);
    border-color: transparent;
    transform: scale(1.1);
}

.set-card.active {
    border-color: #FF8800;
}

.set-card.active::after {
    content: 'ВЫБРАНО';
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--accent-gradient);
    font-size: 10px;
    font-weight: 800;
    padding: 4px 12px;
    border-radius: 100px;
    color: #fff;
}

/* Mobile Carousel */
@media (max-width: 900px) {
    .set-card {
        flex: 0 0 260px;
        margin: 0 10px;
    }

    .nav-btn {
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        background: rgba(0, 0, 0, 0.7);
        width: 40px;
        height: 40px;
    }
}


.set-btn {
    width: 100%;
    padding: 12px;
    border-radius: 12px;
    font-weight: 700;
    background: #222;
    color: #fff;
    border: 1px solid var(--border-soft);
    margin-top: auto;
}

.set-card.active .set-btn {
    background: var(--accent-gradient);
    border: none;
}

/* --- Constructor Layout --- */
.constructor-layout {
    display: grid;
    grid-template-columns: 2fr 1fr;
    /* Options : Summary */
    gap: 40px;
    align-items: start;
}

.option-group {
    background: #111;
    padding: 25px;
    border-radius: 20px;
    margin-bottom: 24px;
}

.option-group h3 {
    font-size: 18px;
    margin-bottom: 20px;
    font-weight: 700;
}

/* Pills Grid (Money/Level) */
.pills-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(100px, 1fr));
    gap: 12px;
}

.option-pill {
    background: #1A1A1A;
    border-radius: 50px;
    padding: 10px 4px;
    font-size: 12px;
    letter-spacing: -0.02em;
    color: var(--text-secondary);
    text-align: center;
    cursor: pointer;
    transition: var(--transition-fast);
    font-weight: 600;
    white-space: nowrap;
}

.option-pill:hover {
    background: #252525;
    color: #fff;
}

.option-pill.active {
    background: #fff;
    color: #000;
    border-color: #fff;
    font-weight: 700;
}

/* Checkboxes */
.checkbox-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
    gap: 15px;
}

.checkbox-item {
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    font-size: 14px;
    color: var(--text-secondary);
}

.checkbox-circle {
    width: 20px;
    height: 20px;
    border-radius: 6px;
    border: 1px solid var(--border-soft);
    background: #1A1A1A;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-fast);
}

.checkbox-item.active .checkbox-circle {
    background: #fff;
    /* Design shows simple white tick or fill? Or gradient? Keeping simple for now */
    border-color: #fff;
}

.checkbox-item.active .checkbox-circle::after {
    content: '✓';
    font-size: 12px;
    color: #000;
    font-weight: bold;
}

.checkbox-item.active {
    color: #fff;
}

/* List style for columns (Other) */
.checkbox-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

/* Custom Input Wrapper */
.custom-input-wrapper {
    margin-top: 15px;
    position: relative;
    background: #1A1A1A;
    border-radius: 12px;
    padding: 4px 12px;
    display: flex;
    align-items: center;
    border: 1px solid var(--border-soft);
}

.custom-input-wrapper .icon {
    font-size: 18px;
    margin-right: 10px;
    color: #555;
}

.custom-input-wrapper input {
    width: 100%;
    background: none;
    border: none;
    color: #fff;
    padding: 10px 0;
    outline: none;
}

/* --- Summary Sticky Card --- */
.summary-column {
    position: sticky;
    top: 90px;
}

.summary-card {
    background: #111111;
    border-radius: 24px;
    padding: 32px;
    min-height: 200px;
    margin-bottom: 20px;
}

.summary-title {
    font-size: 32px;
    font-weight: 700;
    margin: 20px 0;
    display: block;
}

.cart-empty-desc {
    color: var(--text-secondary);
    font-size: 15px;
    line-height: 1.5;
}

.summary-list {
    margin: 20px 0;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

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

.cart-item-info {
    font-size: 16px;
    display: flex;
    gap: 6px;
}

.cart-item-text {
    color: #fff;
    font-weight: 600;
}

.cart-email-wrapper {
    background: #151515;
    border-radius: 12px;
    padding: 12px 16px;
    margin: 15px 0;
    display: flex;
    align-items: center;
    gap: 10px;
    border: 1px solid var(--border-soft);
}

.cart-email-wrapper input {
    background: none;
    border: none;
    color: #fff;
    outline: none;
    width: 100%;
}

.summary-trigger,
.sheet-handle,
.sheet-close {
    display: none;
}

.cart-item-side {
    display: flex;
    align-items: center;
    gap: 12px;
}

.cart-item-price {
    width: max-content;
    font-weight: 600;
    font-size: 16px;
}

.cart-item-remove {
    background: #1A1A1A;
    border: none;
    color: #555;
    cursor: pointer;
    padding: 8px;
    border-radius: 10px;
    transition: all 0.2s;
    display: flex;
    align-items: center;
}

.cart-item-remove:hover {
    color: #FF264D;
    background: rgba(255, 38, 77, 0.1);
}

.summary-divider {
    height: 1px;
    background: #222;
    margin: 24px 0;
}

.total-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 24px;
}

.total-row span:first-child {
    font-size: 32px;
    font-weight: 700;
}

.total-price {
    font-size: 32px;
    font-weight: 700;
    color: #fff;
}

.checkout-btn {
    width: 100%;
    background: var(--accent-gradient);
    border: none;
    color: #fff;
    padding: 20px;
    border-radius: 16px;
    font-size: 20px;
    font-weight: 700;
    cursor: pointer;
    transition: transform 0.2s, box-shadow 0.2s;
    margin-bottom: 16px;
}

.checkout-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 38, 77, 0.4);
}

.agreement-text {
    font-size: 12px;
    color: #555;
    text-align: center;
    line-height: 1.4;
}

.agreement-text a {
    color: #FF264D;
    text-decoration: none;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
}

.step-card {
    background: #111;
    border-radius: 20px;
    padding: 24px;
    text-align: center;
}

.step-icon {
    font-size: 32px;
    margin-bottom: 15px;
}

.step-card h3 {
    font-size: 16px;
    margin-bottom: 5px;
}

.step-card p {
    font-size: 13px;
    color: #666;
}

/* --- Reviews --- */
.reviews-grid-home {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.review-card {
    background: #111;
    border-radius: 16px;
    padding: 20px;
}

.review-header {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
    font-size: 14px;
    font-weight: 600;
}

.badge-success {
    color: #4CAF50;
}

.review-text {
    font-size: 13px;
    color: #aaa;
    line-height: 1.5;
    margin-bottom: 15px;
}

.review-date {
    font-size: 11px;
    color: #555;
}

.btn-primary {
    background: var(--accent-gradient);
    color: white;
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 700;
    display: inline-block;
}

/* --- FAQ Redesign --- */
.faq-list {
    max-width: 900px;
    margin: 40px auto;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.faq-item {
    background: #111111;
    border-radius: 20px;
    padding: 24px;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    overflow: hidden;
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 18px;
    font-weight: 700;
    color: #fff;
}

.faq-plus {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

/* Custom FAQ rotation */
.faq-item.active .faq-plus svg {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    transition: all 0.3s ease;
    font-size: 15px;
    color: #aaa;
    line-height: 1.6;
    margin-top: 0;
}

.faq-item.active {
    background: #161616;
}

.faq-item.active .faq-answer {
    max-height: 200px;
    opacity: 1;
    margin-top: 16px;
}

.faq-read-more {
    margin-top: 16px;
}

.btn-link {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border-soft);
    color: #fff;
    padding: 8px 20px;
    border-radius: 12px;
    font-size: 14px;
    font-weight: 600;
    transition: all 0.3s;
    display: inline-block;
    cursor: pointer;
    text-decoration: none;
}

.btn-link:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
}

/* --- FAQ Detail Page --- */
.faq-detail-page {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    padding-bottom: 0;
    padding-top: 80px;
}

.faq-detail-container {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px 20px;
}

.faq-detail-card {
    background: #111111;
    border-radius: 32px;
    padding: 60px;
    max-width: 900px;
    width: 100%;
    border: 1px solid var(--border-soft);
    text-align: center;
}

.faq-detail-card h1 {
    font-size: 48px;
    margin-bottom: 24px;
}

.faq-detail-content {
    font-size: 18px;
    line-height: 1.8;
    color: #aaa;
    text-align: left;
    margin-bottom: 40px;
}

.faq-detail-content h2,
.faq-detail-content h3,
.faq-detail-content strong {
    display: block;
    font-size: 22px;
    color: #fff;
    margin-top: 40px;
    margin-bottom: 15px;
    font-weight: 700;
}

/* If strong is used inline, don't make it a block */
p strong {
    display: inline !important;
    font-size: inherit !important;
    margin: 0 !important;
}

.faq-detail-content p {
    margin-bottom: 20px;
}

.faq-detail-content ul {
    margin-top: 15px;
    margin-bottom: 25px;
    list-style: none;
    padding-left: 0;
}

.faq-detail-content li {
    position: relative;
    padding-left: 20px;
    margin-bottom: 12px;
}

.faq-detail-content li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-weight: bold;
}

.back-home-btn {
    background: var(--accent-gradient);
    color: white;
    padding: 18px 48px;
    border-radius: 16px;
    font-weight: 700;
    font-size: 18px;
    border: none;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    text-decoration: none;
    display: inline-block;
}

.back-home-btn:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 40px rgba(255, 61, 103, 0.3);
}


/* --- Footer --- */
footer {
    border-top: 1px solid #222;
    padding: 40px 0;
    /* margin-top: 80px; */
    color: #555;
    font-size: 12px;
    padding-bottom: 80px;
}

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.footer-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px 20px;
}

.footer-links a {
    transition: color 0.2s;
}

.footer-links a:hover {
    color: #fff;
}

.footer-legal {
    font-size: 11px;
    color: #444;
    text-align: center;
}

.support-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 64px;
    height: 64px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
    transition: all 0.3s ease;
    padding: 0;
    border: none;
}

.support-float:hover {
    transform: scale(1.1);
    box-shadow: 0 10px 40px rgba(255, 38, 77, 0.4);
}

.support-float img {
    width: 32px;
    height: 32px;
}

.support-float img {
    width: 32px;
    height: 32px;
}

/* --- Modals --- */
.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(5px);
}

.modal-content {
    background: #111;
    margin: 10% auto;
    padding: 30px;
    border: 1px solid #333;
    width: 90%;
    max-width: 600px;
    border-radius: 24px;
    position: relative;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.8);
}

.reviews-modal-content {
    max-width: 800px;
}

.close-reviews {
    color: #555;
    float: right;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
    line-height: 1;
}

.close-reviews:hover {
    color: #fff;
}

.reviews-body {
    margin-top: 20px;
    max-height: 70vh;
    overflow-y: auto;
    padding-right: 10px;
}

/* Modal Review Cards */
.reviews-body .review-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid #222;
    margin-bottom: 16px;
    padding: 24px;
    border-radius: 20px;
}

.review-type.good {
    color: #4caf50;
    font-weight: 700;
    margin-bottom: 8px;
}

.review-type.bad {
    color: #ff264d;
    font-weight: 700;
    margin-bottom: 8px;
}

.review-content {
    line-height: 1.6;
    margin-bottom: 16px;
    color: #eee;
}

.review-reply {
    background: rgba(255, 255, 255, 0.05);
    padding: 16px;
    border-radius: 12px;
    font-size: 14px;
    border-left: 3px solid var(--accent-color);
}

.reply-label {
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 4px;
}

/* --- Mobile Responsive --- */
@media (max-width: 900px) {
    .container {
        padding: 0 16px;
    }

    .hero {
        padding: 80px 16px 20px;
    }

    .section {
        padding: 40px 16px;
    }

    /* Re-enable and style nav buttons for mobile slider look */
    .nav-btn {
        display: flex !important;
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        width: 36px;
        height: 36px;
        background: rgba(40, 40, 40, 0.8);
        border: 1px solid rgba(255, 255, 255, 0.1);
        font-size: 16px;
        z-index: 10;
        margin: 0;
    }

    .nav-btn:hover {
        transform: translateY(-50%) !important;
        background: var(--accent-gradient);
        border-color: transparent;
    }

    .nav-btn.prev {
        left: 0;
    }

    .nav-btn.next {
        right: 0;
    }

    .sets-carousel-wrapper {
        padding: 0 40px;
        /* Space for buttons */
        position: relative;
    }

    .sets-track {
        transform: translateX(0);
        /* Re-enabled JS control */
        display: flex;
        overflow-x: visible !important;
        /* Allow overflow for smooth JS slide or hiding? JS handles positioning */
        padding: 0 !important;
        width: 100%;
        gap: 0;
        scroll-snap-type: none;
        /* Disable CSS snap, use JS transform */
    }

    .sets-viewport {
        overflow: hidden !important;
        /* Hide non-active */
        width: 100%;
        margin: 0 auto;
    }

    .set-card {
        flex: 0 0 280px !important;
        /* Fixed width for calculation stability */
        margin: 0 20px !important;
        /* Fixed margin to match JS assumption */
        max-width: none;
        /* Let flex-basis rule */
        opacity: 0.4 !important;
        transform: scale(0.9) !important;
        filter: blur(2px) !important;
        transition: all 0.3s ease;
    }

    .set-card.focused {
        opacity: 1 !important;
        transform: scale(1) !important;
        filter: blur(0) !important;
    }

    .set-btn {
        background: var(--accent-gradient);
        border: none;
        color: white;
        margin-top: 15px;
        height: 50px;
    }

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

    /* Dots */
    .carousel-dots {
        display: flex;
        justify-content: center;
        gap: 8px;
        margin-top: 20px;
    }

    .dot {
        width: 8px;
        height: 8px;
        border-radius: 50%;
        background: rgba(255, 255, 255, 0.2);
        cursor: pointer;
        transition: all 0.3s;
    }

    .dot.active {
        background: var(--accent-color);
        transform: none;
    }


    .set-btn {
        margin-top: 15px;
        height: 50px;
    }

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

    .option-group {
        padding: 20px 15px;
        margin-bottom: 16px;
    }

    .pills-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 8px;
    }

    .checkbox-grid {
        grid-template-columns: repeat(auto-fill, minmax(130px, 1fr));
        gap: 10px;
    }

    .option-pill {
        padding: 10px 4px;
        font-size: 12px;
        letter-spacing: -0.02em;
    }

    .summary-column {
        position: fixed;
        bottom: 0;
        left: 0;
        width: 100%;
        top: auto;
        z-index: 1000;
        padding: 0;
        pointer-events: none;
    }

    .summary-column.has-items {
        pointer-events: auto;
    }

    .summary-trigger {
        background: #0D0D0D;
        height: 64px;
        padding: 0 24px;
        display: none;
        align-items: center;
        justify-content: space-between;
        border: 1px solid var(--border-soft);
        cursor: pointer;
        position: relative;
        z-index: 2;
        border-radius: 20px;
        width: 90%;
        margin: 0 auto 15px;
        box-shadow: 0 8px 32px rgba(0, 0, 0, 0.6);
        backdrop-filter: blur(10px);
    }

    .summary-column.has-items .summary-trigger {
        display: flex;
    }

    .trigger-left,
    .trigger-right {
        display: flex;
        align-items: center;
        gap: 12px;
    }

    .trigger-icon {
        width: 24px;
        height: 24px;
        filter: brightness(0) invert(1);
    }

    .trigger-title {
        font-weight: 700;
        font-size: 18px;
    }

    .trigger-price {
        font-weight: 700;
        font-size: 18px;
    }

    .trigger-arrow {
        color: var(--accent-color);
        font-weight: 800;
        font-size: 20px;
        transform: rotate(-90deg);
        display: inline-block;
    }

    .summary-card {
        border-radius: 25px;
        padding: 30px 20px 20px;
        background: #0F0F0F;
        backdrop-filter: blur(20px);
        min-height: auto;
        box-shadow: 0 10px 50px rgba(0, 0, 0, 0.8);
        border: 1px solid var(--border-soft);
        position: absolute;
        bottom: 15px;
        left: 4.5%;
        width: 91%;
        z-index: 3;
        transform: translateY(calc(100% + 50px));
        transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
        max-height: 85vh;
        overflow-y: auto;
    }

    .summary-column.expanded .summary-card {
        transform: translateY(0);
    }

    .summary-column.expanded .summary-trigger {
        display: none;
    }

    .cart-platform-switch {
        display: none;
    }

    .sheet-handle {
        width: 40px;
        height: 4px;
        background: rgba(255, 255, 255, 0.1);
        border-radius: 2px;
        position: absolute;
        top: 12px;
        left: 50%;
        transform: translateX(-50%);
    }

    .sheet-close {
        position: absolute;
        top: 20px;
        right: 20px;
        width: 36px;
        height: 36px;
        background: rgba(255, 255, 255, 0.05);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        color: #fff;
        font-size: 16px;
        border: none;
        cursor: pointer;
        z-index: 5;
    }

    .summary-items,
    .summary-header,
    .summary-title {
        display: block !important;
    }

    .summary-list {
        display: flex !important;
        gap: 15px;
        margin-bottom: 25px;
    }

    .cart-item {
        padding-bottom: 12px;
        border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    }

    .cart-item-remove {
        background: rgba(255, 61, 103, 0.1) !important;
        border: 1px solid rgba(255, 61, 103, 0.3) !important;
        color: #FF3D67 !important;
        width: 36px;
        height: 36px;
        border-radius: 10px;
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 0;
    }

    .cart-item-side {
        display: flex;
        align-items: center;
        gap: 12px;
    }

    .cart-email-wrapper {
        background: #151515;
        border-radius: 16px;
        padding: 18px;
        margin: 20px 0;
        display: flex;
        align-items: center;
        gap: 12px;
        border: 1px solid rgba(255, 255, 255, 0.03);
    }

    .cart-email-wrapper img {
        width: 20px;
        height: 20px;
        opacity: 0.7;
    }

    .cart-email-wrapper input {
        background: none;
        border: none;
        color: #fff;
        font-size: 16px;
        outline: none;
        width: 100%;
    }

    .summary-footer {
        display: block !important;
        margin-top: 20px;
        padding-top: 20px;
    }

    .total-row {
        display: flex;
        justify-content: space-between;
        align-items: center;
        margin-bottom: 20px;
    }

    .total-price {
        margin: 0;
        font-size: 24px !important;
        font-weight: 700;
        color: #fff !important;
    }

    .checkout-btn {
        width: 100%;
        padding: 20px;
        font-size: 18px;
        border-radius: 16px;
        margin-bottom: 10px;
        background: var(--accent-gradient);
    }

    .agreement-text {
        font-size: 11px;
        text-align: center;
        color: #666;
    }

    .agreement-text a {
        color: #999;
    }

    .review-card.mobile-hide {
        display: none;
    }

    .reviews-grid-home {
        grid-template-columns: 1fr;
    }

    .set-card {
        padding: 24px 16px;
    }

    .feature-item {
        font-size: 13px;
        color: var(--text-secondary);
    }

    .support-float {
        bottom: 20px !important;
        right: 20px !important;
    }

    body.cart-visible .support-float {
        bottom: 90px !important;
    }

    .faq-detail-card {
        padding: 40px 20px;
        border-radius: 24px;
    }

    .faq-detail-card h1 {
        font-size: 28px;
    }

    .faq-detail-content {
        font-size: 15px;
        line-height: 1.6;
    }

    .back-home-btn {
        width: 100%;
        padding: 16px;
        font-size: 16px;
    }

    .footer-links {
        flex-direction: column;
        align-items: center;
        gap: 12px;
    }

    .footer-links a {
        font-size: 14px;
        text-align: center;
    }
}

.set-features {
    display: flex;
    flex-direction: column;
    align-items: center;
}