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

html {
    scroll-behavior: smooth;
}

body {
    background: #000;
    color: #fff;
    font-family: 'Inter', Arial, sans-serif;
    line-height: 1.6;
}

a {
    text-decoration: none;
    transition: 0.3s ease;
}

img {
    max-width: 100%;
    display: block;
}

/* HEADER */
.site-header,
.admin-header {
    background: #000;
    border-bottom: 1px solid #111;
    position: sticky;
    top: 0;
    z-index: 9999;
    backdrop-filter: blur(6px);
}

.nav-wrap {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    min-height: 88px;
    position: relative;
}

/* LOGO */
.logo {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    flex: 0 0 auto;
    width: 260px;
    height: 88px;
    overflow: hidden;
    line-height: 1;
}

.logo img {
    display: block;
    width: 100%;
    height: 150px;
    max-width: none;
    object-fit: contain;
    object-position: center 52%;
}

/* NAV */
.main-nav {
    margin-left: auto;
}

.main-nav ul {
    display: flex;
    align-items: center;
    list-style: none;
    gap: 24px;
    margin: 0;
    padding: 0;
}

.main-nav li {
    list-style: none;
}

.main-nav a {
    color: #ccc;
    font-weight: 500;
    font-size: 15px;
    padding: 8px 0;
}

.main-nav a:hover {
    color: #d4af37;
}

/* HAMBURGER */
.menu-toggle {
    display: none;
    width: 46px;
    height: 46px;
    border: 1px solid #222;
    border-radius: 10px;
    background: #111;
    color: #fff;
    cursor: pointer;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    padding: 0;
}

.menu-toggle:hover {
    border-color: #333;
    color: #d4af37;
}

/* PAGE */
.page-section {
    padding: 40px 0 56px;
}

.section-head h1 {
    font-size: 34px;
    margin-bottom: 8px;
}

.section-head p {
    color: #a3a3a3;
}

/* GRID */
.container-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
}

/* MODEL CARD */
.model-card {
    background: #111;
    border: 1px solid #222;
    border-radius: 14px;
    overflow: hidden;
    transition: 0.25s ease;
}

.model-card:hover {
    transform: translateY(-5px);
    border-color: #d4af37;
}

.model-card img {
    width: 100%;
    height: 420px;
    object-fit: cover;
}

.model-info {
    padding: 16px;
    text-align: center;
}

.model-info h2,
.model-info h3 {
    color: #d4af37;
    margin-bottom: 6px;
    font-size: 20px;
}

.model-info p {
    color: #bbb;
    font-size: 14px;
    margin: 0;
}

/* DETAIL PAGE */
.detail-wrap {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 30px;
    align-items: start;
}

.detail-gallery {
    width: 100%;
    display: block;
}

.main-image-box {
    width: 100%;
    background: #111;
    border: 1px solid #222;
    border-radius: 12px;
    overflow: hidden;
}

.main-gallery-image {
    width: 100%;
    height: 720px;
    object-fit: cover;
    display: block;
    transition: 0.35s ease;
}

.thumb-gallery {
    display: flex;
    gap: 10px;
    margin-top: 15px;
    overflow-x: auto;
    padding-bottom: 6px;
    scroll-behavior: smooth;
}

.thumb-gallery::-webkit-scrollbar {
    height: 6px;
}

.thumb-gallery::-webkit-scrollbar-thumb {
    background: #333;
    border-radius: 10px;
}

.thumb-image {
    width: 85px;
    height: 105px;
    object-fit: cover;
    cursor: pointer;
    border: 2px solid #222;
    border-radius: 10px;
    flex-shrink: 0;
    opacity: 0.75;
    transition: 0.25s ease;
}

.thumb-image:hover {
    border-color: #d4af37;
    opacity: 1;
    transform: translateY(-2px);
}

.active-thumb {
    border-color: #d4af37;
    opacity: 1;
}

/* DETAIL INFO */
.detail-info {
    background: #111;
    border: 1px solid #222;
    padding: 24px;
    border-radius: 12px;
}

.detail-info h1 {
    color: #d4af37;
    margin-bottom: 20px;
    font-size: 32px;
}

.info-list p {
    margin-bottom: 10px;
    color: #fff;
}

.about-box {
    margin-top: 24px;
    padding-top: 20px;
    border-top: 1px solid #222;
}

.about-box h2 {
    color: #d4af37;
    margin-bottom: 12px;
    font-size: 22px;
}

.about-box p {
    color: #ddd;
    line-height: 1.7;
}

/* BUTTONS */
.btn-gold,
.btn-whatsapp {
    display: inline-block;
    padding: 12px 20px;
    border: none;
    border-radius: 999px;
    font-weight: 800;
    cursor: pointer;
}

.btn-gold {
    background: #d4af37;
    color: #000;
}

.btn-whatsapp {
    background: #25D366;
    color: #fff;
}

/* WHATSAPP */
.whatsapp-inline,
.whatsapp-fixed {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #25D366;
    color: #fff;
    font-weight: 700;
    border-radius: 999px;
}

.whatsapp-inline {
    margin-top: 20px;
    padding: 14px 20px;
}

.whatsapp-fixed {
    position: fixed;
    right: 16px;
    bottom: 16px;
    padding: 14px 18px;
    z-index: 9999;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25);
}

.whatsapp-inline:hover,
.whatsapp-fixed:hover {
    color: #fff;
    opacity: 0.92;
}

.whatsapp-inline i,
.whatsapp-fixed i {
    font-size: 20px;
    line-height: 1;
}

/* FORM */
.form-box,
.admin-box {
    background: #111;
    border: 1px solid #222;
    padding: 22px;
    border-radius: 16px;
}

.form-box input,
.form-box textarea,
.form-box select,
.admin-box input,
.admin-box textarea {
    width: 100%;
    margin-bottom: 14px;
    padding: 12px;
    background: #000;
    border: 1px solid #333;
    color: #fff;
    border-radius: 10px;
}

.table {
    border-color: #222;
}

/* FOOTER */
.site-footer {
    border-top: 1px solid #222;
    padding: 22px 0;
    margin-top: 20px;
}

.footer-wrap {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    flex-wrap: wrap;
}

.footer-wrap p {
    margin: 0;
    color: #aaa;
}

.footer-wrap a {
    color: #d4af37;
}

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

/* TABLET */
@media (max-width: 992px) {
    .container-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .detail-wrap {
        grid-template-columns: 1fr;
    }

    .main-gallery-image {
        height: 560px;
    }

    .logo {
        width: 220px;
        height: 76px;
    }

    .logo img {
        height: 128px;
        object-position: center 52%;
    }

    .main-nav ul {
        gap: 16px;
    }
}

/* MOBILE */
@media (max-width: 768px) {
    .nav-wrap {
        min-height: 74px;
    }

    .logo {
        width: 170px;
        height: 58px;
    }

    .logo img {
        width: 100%;
        height: 98px;
        object-position: center 52%;
    }

    .menu-toggle {
        display: inline-flex;
    }

    .main-nav {
        display: none;
        position: absolute;
        top: 100%;
        right: 0;
        left: 0;
        width: 100%;
        background: #000;
        border-top: 1px solid #111;
        border-bottom: 1px solid #111;
        padding: 10px 0;
    }

    .main-nav.active {
        display: block;
    }

    .main-nav ul {
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        width: 100%;
    }

    .main-nav li {
        width: 100%;
    }

    .main-nav a {
        display: block;
        width: 100%;
        padding: 14px 20px;
        border-bottom: 1px solid #111;
    }

    .main-nav li:last-child a {
        border-bottom: none;
    }

    .container-grid {
        grid-template-columns: 1fr;
    }

    .model-card img {
        height: 500px;
    }

    .section-head h1 {
        font-size: 28px;
    }

    .main-gallery-image {
        height: 420px;
    }

    .thumb-image {
        width: 72px;
        height: 88px;
    }

    .whatsapp-fixed {
        left: 12px;
        right: 12px;
        bottom: 12px;
        justify-content: center;
        text-align: center;
        font-size: 14px;
        padding: 12px 16px;
    }

    .whatsapp-inline {
        width: 100%;
        justify-content: center;
    }

    .footer-wrap {
        flex-direction: column;
        align-items: flex-start;
    }
}
.modal-content {
    background: #111 !important;
    color: #fff;
    border: 1px solid #222 !important;
}

.modal-header,
.modal-footer {
    border-color: #222 !important;
}

.modal-body p {
    color: #ddd;
    margin-bottom: 12px;
}

.btn-close:focus {
    box-shadow: none;
}
.legal-btn {
    background: linear-gradient(135deg, #c8a96b, #9f7a3b);
    color: #111;
    border: none;
    border-radius: 12px;
    padding: 12px 18px;
    font-weight: 700;
    transition: 0.25s ease;
}

.legal-btn:hover {
    transform: translateY(-2px);
    opacity: 0.92;
    color: #111;
}