/* ===== RESET & BASE ===== */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    width: 100%;
    height: 100%;
    background-color: #0a0a0a;
}

html,
body {
    min-height: 100%;
    min-height: -webkit-fill-available;
    font-family: 'Outfit', sans-serif;
    color: #fff;
    background-color: #0a0a0a;
}

body {
    width: 100%;
    min-height: 100%;
    min-height: 100dvh;
    position: relative;
    -webkit-overflow-scrolling: touch;
    /* Remove background-attachment: fixed — not supported on iOS Safari */
    background-color: #0a0a0a;
}

/* Background image as fixed pseudo-element (iOS Safari compatible) */
body::after {
    content: '';
    position: fixed;
    inset: 0;
    top: calc(-1 * env(safe-area-inset-top, 0px));
    right: calc(-1 * env(safe-area-inset-right, 0px));
    bottom: calc(-1 * env(safe-area-inset-bottom, 0px));
    left: calc(-1 * env(safe-area-inset-left, 0px));
    background: url('images/aydinlatmateklifialbg.jpg') no-repeat center center;
    background-size: cover;
    z-index: 0;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
    pointer-events: none;
}

/* Dark overlay */
body::before {
    content: '';
    position: fixed;
    inset: 0;
    top: calc(-1 * env(safe-area-inset-top, 0px));
    right: calc(-1 * env(safe-area-inset-right, 0px));
    bottom: calc(-1 * env(safe-area-inset-bottom, 0px));
    left: calc(-1 * env(safe-area-inset-left, 0px));
    background: rgba(0, 0, 0, 0.45);
    z-index: 1;
    pointer-events: none;
}

/* ===== MAIN WRAPPER ===== */
.main-wrapper {
    position: relative;
    z-index: 2;
    width: 100%;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: calc(30px + env(safe-area-inset-top)) 36px calc(36px + env(safe-area-inset-bottom));
}

/* ===== TOP SECTION ===== */
.top-section {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

/* ===== MAIN TITLE ===== */
.main-title {
    font-size: 2.2rem;
    font-weight: 400;
    letter-spacing: 1px;
    color: #fff;
    text-align: center;
}

/* ===== MUSIC TOGGLE BUTTON ===== */
.music-toggle-btn {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    border: 1px solid rgba(255, 255, 255, 0.22);
    border-radius: 14px;
    color: #fff;
    cursor: pointer;
    transition: all 0.3s ease;
    outline: none;
    z-index: 11;
}

.music-toggle-btn svg {
    width: 22px;
    height: 22px;
}

.music-toggle-btn:hover {
    background: rgba(255, 255, 255, 0.22);
    transform: translateY(-50%) scale(1.05);
}

.music-toggle-btn.active {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.4);
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {

    0%,
    100% {
        box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.15);
    }

    50% {
        box-shadow: 0 0 0 8px rgba(255, 255, 255, 0);
    }
}

/* ===== MINI PLAYER PANEL ===== */
.mini-player {
    position: absolute;
    right: 0;
    top: calc(50% + 36px);
    width: 280px;
    background: rgba(20, 20, 20, 0.9);
    backdrop-filter: blur(30px);
    -webkit-backdrop-filter: blur(30px);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 18px;
    padding: 18px 18px 16px;
    z-index: 10;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px) scale(0.95);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    pointer-events: none;
}

.mini-player.open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
    pointer-events: all;
}

/* Player Header */
.mini-player-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 16px;
}

.mini-player-title {
    font-size: 0.82rem;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.6);
    letter-spacing: 0.5px;
}

.mini-player-close {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 26px;
    height: 26px;
    background: rgba(255, 255, 255, 0.08);
    border: none;
    border-radius: 8px;
    color: rgba(255, 255, 255, 0.6);
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.2s ease;
    outline: none;
}

.mini-player-close:hover {
    background: rgba(255, 255, 255, 0.16);
    color: #fff;
}

/* Play/Pause Button */
.mini-player-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 14px;
}

.player-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 52px;
    height: 52px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
    outline: none;
}

.player-btn:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.35);
    transform: scale(1.08);
}

.player-btn:active {
    transform: scale(0.95);
}

.player-btn svg {
    width: 22px;
    height: 22px;
}

/* Progress Bar */
.mini-player-progress {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 14px;
}

.time-current,
.time-duration {
    font-size: 0.68rem;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.45);
    min-width: 30px;
    text-align: center;
    font-variant-numeric: tabular-nums;
}

.progress-bar-wrapper {
    flex: 1;
    cursor: pointer;
    padding: 6px 0;
}

.progress-bar-bg {
    width: 100%;
    height: 4px;
    background: rgba(255, 255, 255, 0.12);
    border-radius: 4px;
    overflow: hidden;
    position: relative;
}

.progress-bar-fill {
    height: 100%;
    width: 0%;
    background: linear-gradient(90deg, rgba(255, 255, 255, 0.5), rgba(255, 255, 255, 0.85));
    border-radius: 4px;
    transition: width 0.1s linear;
}

.progress-bar-wrapper:hover .progress-bar-bg {
    height: 6px;
}

.progress-bar-wrapper:hover .progress-bar-fill {
    background: linear-gradient(90deg, rgba(255, 255, 255, 0.7), #fff);
}

/* Volume Section */
.mini-player-volume {
    display: flex;
    align-items: center;
    gap: 8px;
}

.volume-mute-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    background: none;
    border: none;
    cursor: pointer;
    outline: none;
    flex-shrink: 0;
    transition: opacity 0.2s ease;
}

.volume-mute-btn:hover {
    opacity: 0.7;
}

.volume-mute-btn svg {
    width: 18px;
    height: 18px;
}

.volume-range {
    -webkit-appearance: none;
    appearance: none;
    flex: 1;
    height: 4px;
    background: rgba(255, 255, 255, 0.12);
    border-radius: 4px;
    outline: none;
    cursor: pointer;
}

.volume-range::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 14px;
    height: 14px;
    background: #fff;
    border-radius: 50%;
    cursor: pointer;
    box-shadow: 0 0 6px rgba(255, 255, 255, 0.25);
    transition: transform 0.2s ease;
}

.volume-range::-webkit-slider-thumb:hover {
    transform: scale(1.2);
}

.volume-range::-moz-range-track {
    height: 4px;
    background: rgba(255, 255, 255, 0.12);
    border-radius: 4px;
    border: none;
}

.volume-range::-moz-range-thumb {
    width: 14px;
    height: 14px;
    background: #fff;
    border-radius: 50%;
    border: none;
    cursor: pointer;
    box-shadow: 0 0 6px rgba(255, 255, 255, 0.25);
}

.volume-percent {
    font-size: 0.65rem;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.45);
    min-width: 28px;
    text-align: right;
}

.upload-label {
    font-size: 0.72rem;
    font-weight: 300;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.45);
    margin-top: 10px;
    text-align: center;
    line-height: 1.4;
    max-width: 180px;
}

.plus-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 90px;
    height: 90px;
    background: rgba(255, 255, 255, 0.14);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 2px solid rgba(255, 255, 255, 0.35);
    border-radius: 22px;
    color: #fff;
    font-size: 2.8rem;
    font-weight: 200;
    cursor: pointer;
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    outline: none;
    line-height: 1;
}

.plus-btn:hover {
    background: rgba(255, 255, 255, 0.24);
    border-color: rgba(255, 255, 255, 0.55);
    transform: scale(1.08);
    box-shadow: 0 8px 32px rgba(255, 255, 255, 0.1);
}

.plus-btn:active {
    transform: scale(0.96);
}

/* ===== NEW QUOTE FLOAT ===== */
.new-quote-float {
    position: absolute;
    right: 22%;
    bottom: 28%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    z-index: 2;
}

/* ===== BOTTOM SECTION ===== */
.bottom-section {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
}

.nav-links {
    display: flex;
    flex-direction: column;
    gap: 6px;
    list-style: none;
}

.nav-links a {
    color: rgba(255, 255, 255, 0.72);
    text-decoration: none;
    font-size: 0.88rem;
    font-weight: 300;
    letter-spacing: 0.3px;
    transition: all 0.25s ease;
    position: relative;
    padding-left: 0;
}

.nav-links a:hover {
    color: #fff;
    padding-left: 8px;
}

.nav-links a::before {
    content: '';
    position: absolute;
    left: -12px;
    top: 50%;
    transform: translateY(-50%);
    width: 0;
    height: 1px;
    background: #fff;
    transition: width 0.25s ease;
}

.nav-links a:hover::before {
    width: 8px;
}

.instagram-link {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    color: rgba(255, 255, 255, 0.72);
    text-decoration: none;
    font-size: 0.75rem;
    font-weight: 300;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
}

.instagram-link:hover {
    color: #fff;
    transform: translateY(-3px);
}

.instagram-link svg {
    width: 36px;
    height: 36px;
    fill: none;
    stroke: rgba(255, 255, 255, 0.72);
    stroke-width: 1.5;
    transition: stroke 0.3s ease;
}

.instagram-link:hover svg {
    stroke: #fff;
}

/* ===== MODAL OVERLAY ===== */
.modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

/* ===== MODAL CARD ===== */
.modal-card {
    background: rgba(30, 30, 30, 0.85);
    backdrop-filter: blur(30px);
    -webkit-backdrop-filter: blur(30px);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 24px;
    width: 92%;
    max-width: 520px;
    max-height: 88vh;
    overflow-y: auto;
    padding: 32px 28px 28px;
    transform: translateY(30px) scale(0.95);
    transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.modal-overlay.active .modal-card {
    transform: translateY(0) scale(1);
}

/* Custom scrollbar */
.modal-card::-webkit-scrollbar {
    width: 4px;
}

.modal-card::-webkit-scrollbar-track {
    background: transparent;
}

.modal-card::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.2);
    border-radius: 4px;
}

/* ===== MODAL HEADER ===== */
.modal-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 28px;
}

.modal-title {
    font-size: 1.2rem;
    font-weight: 500;
    letter-spacing: 0.3px;
}

.modal-close {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 10px;
    color: #fff;
    font-size: 1.2rem;
    cursor: pointer;
    transition: all 0.25s ease;
    outline: none;
}

.modal-close:hover {
    background: rgba(255, 255, 255, 0.16);
}

/* ===== PRODUCT ITEM ===== */
.product-item {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 18px;
    padding: 22px 20px;
    margin-bottom: 16px;
    position: relative;
    animation: slideIn 0.3s ease;
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateY(12px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.product-item-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 18px;
}

.product-number {
    font-size: 0.78rem;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.5);
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.remove-product {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    background: rgba(255, 80, 80, 0.12);
    border: none;
    border-radius: 8px;
    color: rgba(255, 100, 100, 0.8);
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.25s ease;
    outline: none;
}

.remove-product:hover {
    background: rgba(255, 80, 80, 0.25);
    color: #ff6464;
}

/* ===== FORM FIELDS ===== */
.form-group {
    margin-bottom: 14px;
}

.form-group label {
    display: block;
    font-size: 0.78rem;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.55);
    margin-bottom: 6px;
    letter-spacing: 0.3px;
}

.form-input {
    width: 100%;
    background: rgba(255, 255, 255, 0.07);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 12px;
    padding: 12px 16px;
    color: #fff;
    font-family: 'Outfit', sans-serif;
    font-size: 0.92rem;
    font-weight: 300;
    outline: none;
    transition: all 0.25s ease;
}

.form-input:focus {
    border-color: rgba(255, 255, 255, 0.35);
    background: rgba(255, 255, 255, 0.1);
}

.form-input::placeholder {
    color: rgba(255, 255, 255, 0.3);
}

textarea.form-input {
    resize: vertical;
    min-height: 80px;
}

/* ===== DIMENSIONS ===== */
.dimensions-group {
    margin-bottom: 14px;
}

.dimensions-label {
    font-size: 0.78rem;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.55);
    margin-bottom: 10px;
    letter-spacing: 0.3px;
}

.dimensions-row {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 10px;
}

.dim-field {
    position: relative;
}

.dim-field .form-input {
    padding-right: 36px;
}

.dim-unit {
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.35);
    pointer-events: none;
}

/* ===== FILE UPLOAD ===== */
.file-upload-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    width: 100%;
    background: rgba(255, 255, 255, 0.07);
    border: 1px dashed rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    padding: 12px 16px;
    color: rgba(255, 255, 255, 0.6);
    font-family: 'Outfit', sans-serif;
    font-size: 0.88rem;
    font-weight: 300;
    cursor: pointer;
    transition: all 0.25s ease;
    outline: none;
}

.file-upload-btn:hover {
    border-color: rgba(255, 255, 255, 0.4);
    background: rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.85);
}

.file-upload-btn .upload-icon {
    font-size: 1.1rem;
    font-weight: 300;
}

.file-upload-btn .file-name {
    flex: 1;
    text-align: left;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.file-input-hidden {
    display: none;
}

/* ===== MULTI UPLOAD GROUP ===== */
.multi-upload-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

/* ===== ADD PRODUCT BTN ===== */
.add-product-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    background: rgba(255, 255, 255, 0.06);
    border: 1px dashed rgba(255, 255, 255, 0.15);
    border-radius: 14px;
    padding: 14px;
    color: rgba(255, 255, 255, 0.5);
    font-family: 'Outfit', sans-serif;
    font-size: 0.88rem;
    font-weight: 300;
    cursor: pointer;
    transition: all 0.25s ease;
    outline: none;
    margin-bottom: 20px;
}

.add-product-btn:hover {
    border-color: rgba(255, 255, 255, 0.35);
    background: rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.8);
}

.add-product-btn .plus-icon {
    font-size: 1.2rem;
    font-weight: 300;
}

/* ===== SUBMIT BTN ===== */
.submit-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    background: #fff;
    border: none;
    border-radius: 14px;
    padding: 15px;
    color: #1a1a1a;
    font-family: 'Outfit', sans-serif;
    font-size: 1rem;
    font-weight: 500;
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    outline: none;
}

.submit-btn:hover {
    background: rgba(255, 255, 255, 0.9);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 255, 255, 0.15);
}

.submit-btn:active {
    transform: translateY(0);
}

/* ===== SUCCESS MESSAGE ===== */
.success-message {
    display: none;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 40px 20px;
    text-align: center;
    gap: 16px;
    animation: fadeUp 0.4s ease;
}

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(16px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.success-message.show {
    display: flex;
}

.success-icon {
    width: 64px;
    height: 64px;
    background: rgba(100, 220, 140, 0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
}

.success-text {
    font-size: 1.1rem;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.85);
}

.success-sub {
    font-size: 0.85rem;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.5);
}

/* ===== INFO MODAL (Nasıl Kullanılır & Hakkında) ===== */
.info-modal-card {
    max-width: 560px;
}

.info-modal-body {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.info-intro {
    font-size: 0.95rem;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.65;
    padding: 16px 18px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 14px;
    margin-bottom: 4px;
}

.info-intro strong {
    color: #fff;
    font-weight: 500;
    background: rgba(255, 255, 255, 0.12);
    padding: 2px 8px;
    border-radius: 6px;
    font-size: 1rem;
}

.info-step {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 12px 16px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 12px;
    transition: all 0.3s ease;
    animation: stepFadeIn 0.4s ease both;
}

.info-step:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.12);
    transform: translateX(4px);
}

@keyframes stepFadeIn {
    from {
        opacity: 0;
        transform: translateX(-8px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.info-step:nth-child(2) {
    animation-delay: 0.05s;
}

.info-step:nth-child(3) {
    animation-delay: 0.1s;
}

.info-step:nth-child(5) {
    animation-delay: 0.15s;
}

.info-step:nth-child(6) {
    animation-delay: 0.2s;
}

.info-step:nth-child(7) {
    animation-delay: 0.25s;
}

.info-step:nth-child(9) {
    animation-delay: 0.3s;
}

.info-step:nth-child(10) {
    animation-delay: 0.35s;
}

.info-step:nth-child(12) {
    animation-delay: 0.4s;
}

.info-step:nth-child(13) {
    animation-delay: 0.45s;
}

.step-check {
    font-size: 1rem;
    flex-shrink: 0;
    margin-top: 1px;
}

.info-step p {
    font-size: 0.88rem;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
}

.info-note {
    padding: 14px 18px;
    background: rgba(255, 180, 60, 0.08);
    border: 1px solid rgba(255, 180, 60, 0.18);
    border-left: 3px solid rgba(255, 180, 60, 0.5);
    border-radius: 10px;
    font-size: 0.82rem;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
}

.info-note strong {
    color: rgba(255, 200, 100, 0.9);
    font-weight: 500;
    margin-right: 4px;
}

/* About section paragraphs */
.about-paragraph {
    font-size: 0.92rem;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.78);
    line-height: 1.75;
    padding: 16px 18px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 14px;
    transition: all 0.3s ease;
}

.about-paragraph:hover {
    background: rgba(255, 255, 255, 0.07);
    border-color: rgba(255, 255, 255, 0.12);
}

.about-paragraph strong {
    color: #fff;
    font-weight: 500;
}

.about-paragraph+.about-paragraph {
    margin-top: 2px;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
    .main-wrapper {
        padding: calc(20px + env(safe-area-inset-top)) 22px calc(28px + env(safe-area-inset-bottom));
    }

    .main-title {
        font-size: 1.6rem;
    }

    .music-toggle-btn {
        width: 42px;
        height: 42px;
        border-radius: 12px;
    }

    .mini-player {
        width: 250px;
        right: -10px;
    }

    .plus-btn {
        width: 64px;
        height: 64px;
        font-size: 2rem;
        border-radius: 16px;
    }

    .upload-label {
        font-size: 0.65rem;
    }

    .nav-links a {
        font-size: 0.8rem;
    }

    .instagram-link {
        font-size: 0.7rem;
    }

    .instagram-link svg {
        width: 30px;
        height: 30px;
    }

    .modal-card {
        width: 96%;
        padding: 24px 20px 22px;
        border-radius: 20px;
        max-height: 92vh;
    }

    .dimensions-row {
        grid-template-columns: 1fr 1fr 1fr;
        gap: 8px;
    }
}

@media (max-width: 400px) {
    .main-wrapper {
        padding: calc(16px + env(safe-area-inset-top)) 16px calc(22px + env(safe-area-inset-bottom));
    }

    .main-title {
        font-size: 1.35rem;
    }

    .modal-card {
        padding: 20px 16px 18px;
    }
}

@media (min-width: 1200px) {
    .main-wrapper {
        padding: 40px 60px 50px;
    }

    .main-title {
        font-size: 2.8rem;
    }

    .plus-btn {
        width: 100px;
        height: 100px;
        font-size: 3rem;
        border-radius: 26px;
    }

    .nav-links a {
        font-size: 0.95rem;
    }
}

/* ===== DYNAMIC CONTENT ===== */
.dynamic-content {
    line-height: 1.6;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.9);
}

.dynamic-content p {
    margin-bottom: 12px;
}

.dynamic-content strong {
    color: #fff;
    font-weight: 500;
}

/* ==========================================================================
   SSS (FAQ) NEW DESIGN - WEB & MOBILE CONSISTENCY
   ========================================================================== */
.faq-accordion {
    display: flex;
    flex-direction: column;
    gap: 12px;
    width: 100%;
    margin-top: 10px;
}

.faq-item {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    overflow: hidden;
    transition: background 0.3s ease, border-color 0.3s ease;
}

.faq-item.active {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.2);
}

.faq-trigger {
    width: 100%;
    padding: 18px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
    background: none;
    border: none;
    cursor: pointer;
    text-align: left;
    color: #ffffff;
    font-family: 'Outfit', sans-serif;
    font-size: 1rem;
    font-weight: 500;
    line-height: 1.4;
    outline: none;
    -webkit-tap-highlight-color: transparent;
}

.faq-trigger:hover {
    background: rgba(255, 255, 255, 0.02);
}

.faq-trigger span {
    flex: 1;
    min-width: 0;
    text-align: left;
}

.faq-icon-box {
    width: 28px;
    height: 28px;
    min-width: 28px;
    min-height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    flex-shrink: 0;
    overflow: hidden;
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275), background 0.3s ease;
}

.faq-icon-box svg {
    width: 14px;
    height: 14px;
    display: block;
    stroke: #ffffff;
    transition: stroke 0.3s ease;
}

.faq-item.active .faq-icon-box {
    transform: rotate(180deg);
    background: #ffffff;
}

.faq-item.active .faq-icon-box svg {
    stroke: #0a0a0a;
}

.faq-content {
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.3s ease;
}

.faq-item.active .faq-content {
    opacity: 1;
}

.faq-inner {
    padding: 0 20px 22px;
    font-size: 0.92rem;
    font-weight: 300;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.75);
}

@media (max-width: 768px) {
    .faq-trigger {
        padding: 16px 18px;
        font-size: 0.95rem;
    }

    .faq-inner {
        padding: 0 18px 20px;
        font-size: 0.88rem;
    }

    .faq-icon-box {
        width: 24px;
        height: 24px;
        min-width: 24px;
        min-height: 24px;
        max-width: 24px;
        max-height: 24px;
    }
}

/* ===== SHOP SECTION ===== */
.shop-section {
    padding: 60px 0;
    width: 100%;
    margin: 0 auto;
}

.section-title-wrap {
    text-align: center;
    margin-bottom: 40px;
}

.section-title {
    font-size: 2rem;
    font-weight: 400;
    letter-spacing: 2px;
    color: #fff;
    margin-bottom: 15px;
}

.category-filters {
    display: flex;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

.category-btn {
    padding: 10px 24px;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 30px;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.15);
    outline: none;
}

.category-btn:hover,
.category-btn.active {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.4);
    color: #fff;
    transform: translateY(-2px);
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
}

.product-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 12px;
    transition: all 0.4s ease;
    animation: fadeInProduct 0.5s ease both;
}

.product-card:hover {
    transform: translateY(-8px);
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.2);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.product-image-wrap {
    width: 100%;
    aspect-ratio: 1;
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 12px;
    background: #000;
}

.product-image-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.product-card:hover .product-image-wrap img {
    transform: scale(1.1);
}

.product-info {
    text-align: center;
}

.product-name {
    font-size: 0.95rem;
    font-weight: 400;
    color: #fff;
    margin-bottom: 4px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.product-size {
    font-size: 0.8rem;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.5);
}

@keyframes fadeInProduct {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsiveness for Shop Section */
@media (max-width: 1024px) {
    .product-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .product-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }

    .shop-section {
        padding: 40px 16px;
    }

    .section-title {
        font-size: 1.6rem;
    }
}

.shop-modal-card {
    max-width: 1200px !important;
    width: 95% !important;
}

@media (max-width: 1200px) {
    .shop-modal-card {
        width: 98% !important;
    }
}

/* ===== ZOOM BUTTON & LIGHTBOX ===== */
.product-image-wrap {
    position: relative;
}

.zoom-btn {
    position: absolute;
    top: 10px;
    left: 10px;
    z-index: 5;
    width: 34px;
    height: 34px;
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0;
    outline: none;
}

.zoom-btn:hover {
    background: rgba(0, 0, 0, 0.6);
    transform: scale(1.1);
    border-color: rgba(255, 255, 255, 0.4);
}

.zoom-btn svg {
    width: 18px;
    height: 18px;
}

/* Lightbox */
.lightbox-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.92);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.lightbox-overlay.active {
    opacity: 1;
    visibility: visible;
}

.lightbox-content {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    transform: scale(0.9);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    pointer-events: none;
}

.lightbox-overlay.active .lightbox-content {
    transform: scale(1);
}

.lightbox-content img {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    border-radius: 8px;
    display: block;
    box-shadow: 0 30px 90px rgba(0, 0, 0, 0.8);
    object-fit: contain;
    pointer-events: auto;
}

.lightbox-close {
    position: absolute;
    top: 30px;
    right: 30px;
    width: 44px;
    height: 44px;
    background: rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    color: #fff;
    font-size: 1.8rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 2001;
    outline: none;
}

.lightbox-close:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: rotate(90deg);
}

@media (max-width: 768px) {
    .lightbox-content {
        padding: 10px;
    }

    .lightbox-close {
        top: 20px;
        right: 20px;
        width: 38px;
        height: 38px;
        font-size: 1.5rem;
    }
}