/* ============================= */
/* GLOBAL */
/* ============================= */

body {
    background: #000000;
    color: #ffffff;
}

/* ============================= */
/* LAYOUT */
/* ============================= */

#page,
.site,
.site-content,
#content {
    display: block !important;
    min-height: auto !important;
    height: auto !important;
    padding-bottom: 0 !important;
    margin-bottom: 0 !important;
}

.separate-containers .inside-article,
.site-content,
#content,
.entry-content,
.page {
    background: #000000 !important;
    color: #ffffff !important;
}

.comments-area,
#comments {
    display: none !important;
}

/* ============================= */
/* CONTENT WRAPPER */
/* ============================= */

.fox-content {
    background: #000000;
    color: #ffffff;
    max-width: 1600px;
    margin: 0 auto;
    padding: 40px;
}

/* ============================= */
/* TYPOGRAPHY */
/* ============================= */

.entry-title,
.entry-title a {
    color: #ffffff;
    font-size: 18px;
    font-weight: 400;
    letter-spacing: 1px;
}

.entry-header {
    margin-bottom: 15px;
}

/* ============================= */
/* TWO COLUMNS */
/* ============================= */

.fox-two-columns {
    display: flex;
    gap: 60px;
}

.fox-col-left {
    width: 33%;
}

.fox-col-right {
    width: 67%;
}

/* ============================= */
/* BUTTONS */
/* ============================= */

.fox-home-link,
.fox-home-button {
    text-decoration: none;
    font-size: 16px;
    font-weight: 600;
    color: #ffffff;
    padding: 10px 20px;
    border: 1px solid #ffffff;
    transition: 0.3s ease;
}

.fox-home-link:hover,
.fox-home-button:hover {
    background: #ffffff;
    color: #000000;
}

.fox-order-button {
    display: inline-block;
    margin: 30px auto 0 auto;
    padding: 14px 28px;
    background: #ffffff;
    color: #000000;
    text-decoration: none;
    font-weight: 600;
    text-align: center;
}

.fox-order-box {
    max-width: 500px;
    margin: 80px auto;
    padding: 40px;
    border: 1px solid #ffffff;
    text-align: center;
}

/* ============================= */
/* FOOTER */
/* ============================= */

.site-footer,
.fox-footer {
    background: #000000;
    color: #ffffff;
    text-align: center;
}

.site-footer {
    padding: 35px 0;
    border-top: 1px solid #111;
}

.footer-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.footer-logo img {
    width: 170px;
    height: auto;
    margin-bottom: 15px;
}

.footer-line-1 {
    font-size: 13px;
    letter-spacing: 1px;
}

.footer-line-2 {
    font-size: 12px;
    color: #888;
    margin-top: 6px;
}

/* ============================= */
/* FOX CONTACT FORM – CLEAN */
/* ============================= */

.fox-contact-wrapper {
    max-width: 800px;
    margin: 80px auto;
    padding: 50px;
    border: 1px solid #222;
    background: #0a0a0a;
}

/* Layout */
.fox-row-2 {
    display: flex;
    gap: 30px;
    margin-bottom: 28px;
}

.fox-field {
    flex: 1;
    display: flex;
    flex-direction: column;
    margin-bottom: 28px;
}

/* Labels */
.fox-contact-form label {
    font-size: 13px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 10px;
    color: #C6A75E;
}

/* Inputs */
.fox-contact-form input,
.fox-contact-form textarea {
    background: #1a1a1a;
    border: 1px solid #333;
    color: #ffffff;
    padding: 16px;
    font-size: 14px;
    border-radius: 4px;
    box-shadow: inset 0 3px 6px rgba(0,0,0,0.6);
    transition: all 0.2s ease;
}

.fox-contact-form input:focus,
.fox-contact-form textarea:focus {
    border-color: #C6A75E;
    box-shadow: 0 0 0 2px rgba(198,167,94,0.15);
    outline: none;
}

/* Buttons */
.fox-buttons {
    margin-top: 40px;
    display: flex;
    gap: 20px;
}

.fox-buttons button {
    padding: 12px 28px;
    background: #C6A75E;
    color: #000;
    border: none;
    cursor: pointer;
}

.fox-home-button {
    padding: 12px 28px;
    border: 1px solid #C6A75E;
    color: #C6A75E;
    text-decoration: none;
}