@charset "UTF-8";

/*
Theme Name: Spicy
Theme URI: https://wordpress.org/themes/twentytwentyfive/
Author: the Apear team
Author URI: https://apear.nl/
Description: Twenty Twenty-five is a blank canvas for your ideas and it makes the block editor your best brush. With new block patterns, which allow you to create a beautiful layout in a matter of seconds, this theme’s soft colors and eye-catching — yet timeless — design will let your work shine. Take it for a spin! See how Twenty Twenty-One elevates your portfolio, business website, or personal blog.
Requires at least: 5.3
Tested up to: 6.8
Requires PHP: 5.6
Version: 2.6
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: twentytwentyfive
Tags: one-column, accessibility-ready, custom-colors, custom-menu, custom-logo, editor-style, featured-images, footer-widgets, block-patterns, rtl-language-support, sticky-post, threaded-comments, translation-ready, blog, portfolio

Twenty Twenty-Five WordPress Theme, (C) 2020 WordPress.org
Twenty Twenty-Five is distributed under the terms of the GNU GPL.
*/

/**
 * SETTINGS
 * File-header..........The file header for the themes style.css file.
 * Fonts................Any font files, if the project needs specific fonts.
 * Global...............Project-specific, globally available variables.
 *
 * TOOLS
 * Functions............Global functions.
 * Mixins...............Global mixins.
 *
 * GENERIC
 * Normalize.css........Normalise browser defaults.
 * Breakpoints..........Mixins and variables for responsive styles
 * Vertical-margins.....Vertical spacing for the main components.
 * Reset................Reset specific elements to make them easier to style in other contexts.
 * Clearings............Clearings for the main components.
 *
 * ELEMENTS
 * Blockquote...........Default blockquote.
 * Forms................Element-level form styling.
 * Headings.............H1–H6
 * Links................Default links.
 * Lists................Default lists.
 * Media................Images, Figure, Figcaption, Embed, iFrame, Objects, Video.
 *
 * BLOCKS
 * Audio................Specific styles for the audio block.
 * Button...............Specific styles for the button block.
 * Code.................Specific styles for the code block.
 * Columns..............Specific styles for the columns block.
 * Cover................Specific styles for the cover block.
 * File.................Specific styles for the file block.
 * Gallery..............Specific styles for the gallery block.
 * Group................Specific styles for the group block.
 * Heading..............Specific styles for the heading block.
 * Image................Specific styles for the image block.
 * Latest comments......Specific styles for the latest comments block.
 * Latest posts.........Specific styles for the latest posts block.
 * Legacy...............Specific styles for the legacy gallery.
 * List.................Specific styles for the list block.
 * Media text...........Specific styles for the media and text block.
 * Navigation...........Specific styles for the navigation block.
 * Paragraph............Specific styles for the paragraph block.
 * Pullquote............Specific styles for the pullquote block.
 * Quote................Specific styles for the quote block.
 * Search...............Specific styles for the search block.
 * Separator............Specific styles for the separator block.
 * Table................Specific styles for the table block.
 * Verse................Specific styles for the verse block.
 * Video................Specific styles for the video block.
 * Utilities............Block alignments.
 *
 * COMPONENTS
 * Header...............Header styles.
 * Footer...............Footer styles.
 * Comments.............Comment styles.
 * Archives.............Archive styles.
 * 404..................404 styles.
 * Search...............Search styles.
 * Navigation...........Navigation styles.
 * Footer Navigation....Footer Navigation styles.
 * Pagination...........Pagination styles.
 * Single...............Single page and post styles.
 * Posts and pages......Misc, sticky post styles.
 * Entry................Entry, author biography.
 * Widget...............Widget styles.
 * Editor...............Editor styles.
 *
 * UTILITIES
 * A11y.................Screen reader text, prefers reduced motion etc.
 * Color Palette........Classes for the color palette colors.
 * Editor Font Sizes....Editor Font Sizes.
 * Measure..............The width of a line of text, in characters.
 */

/* Categories 01 to 03 are the basics. */

/* Variables */

/* Center checkout */

/* =====================================
   GLOBAL RESET
===================================== */

.wpcf7 form.sent .wpcf7-response-output{color:#fff;}

.woocommerce{
    color: #fff;
    padding: 40px;
    margin: 80px 0 0 0;
}

body.woocommerce-checkout {
    background: #050505 !important;
    color: #ffffff;
}

.woocommerce-checkout {
    padding: 30px 20px !important;
    min-height: 100vh;
}

/* Fix title spacing */
.woocommerce-checkout .entry-title,
.woocommerce-checkout .entry-header {
    margin-top: 0 !important;
    padding-top: 0 !important;
}

.site-main {
    padding-top: 20px !important;
}


/* =====================================
   MAIN GRID LAYOUT
===================================== */

.woocommerce-checkout form.checkout {
    max-width: 1200px;
    margin: auto;
    display: grid !important;
    grid-template-columns: 1fr 420px;
    gap: 40px;
    align-items: flex-start;
}

/* Disable default Woo columns */
.woocommerce-checkout .col2-set {
    display: block !important;
}


/* Left Column */
.woocommerce-checkout .woocommerce-billing-fields,
.woocommerce-checkout .woocommerce-account-fields {
    grid-column: 1;
}


/* Right Column (Custom) */
#custom-order-column {
    grid-column: 2;
    position: sticky;
    top: 40px;
}


/* =====================================
   SECTION BOXES
===================================== */

.woocommerce-billing-fields,
#custom-order-column #order_review,
#custom-order-column #payment {
    background: #0e0e0e;
    border-radius: 14px;
    padding: 30px;
    margin-bottom: 25px;
    border: 1px solid #1f1f1f;
    box-shadow: 0 0 25px rgba(0,0,0,0.6);
}


/* Hide additional info */
.woocommerce-additional-fields {
    display: none !important;
}


/* =====================================
   HEADINGS
===================================== */

.woocommerce-checkout h3,
.woocommerce-checkout h4,
#custom-order-column h3 {
    color: #ff2f43;
    font-weight: 600;
    margin-bottom: 25px;
}


/* =====================================
   LABELS
===================================== */

.woocommerce-checkout label {
    color: #ffffff;
    font-size: 14px;
    margin-bottom: 6px;
    display: block;
}


/* =====================================
   INPUT FIELDS
===================================== */

.woocommerce-checkout input,
.woocommerce-checkout select,
.woocommerce-checkout textarea {
    background: #1a1a1a;
    color: #ffffff;
    border: 1px solid #2a2a2a;
    border-radius: 8px;
    padding: 12px;
    width: 100%;
    transition: all 0.2s ease;
}

.woocommerce-checkout input::placeholder,
.woocommerce-checkout textarea::placeholder {
    color: #888;
}

.woocommerce-checkout input:focus,
.woocommerce-checkout select:focus,
.woocommerce-checkout textarea:focus {
    border-color: #ff2f43;
    outline: none;
    box-shadow: 0 0 0 1px #ff2f43;
}


/* =====================================
   ORDER TABLE
===================================== */

.woocommerce-checkout-review-order-table {
    background: transparent;
    color: #fff;
    border: none;
    width: 100%;
}

.woocommerce-checkout-review-order-table th,
.woocommerce-checkout-review-order-table td {
    border-color: #222;
    padding: 12px 0;
}

.woocommerce-checkout-review-order-table tfoot tr:last-child th,
.woocommerce-checkout-review-order-table tfoot tr:last-child td {
    font-size: 18px;
    font-weight: 600;
    color: #ff2f43;
}


/* =====================================
   PAYMENT
===================================== */

#custom-order-column #payment {
    margin-top: 15px;
}

#payment label {
    color: #fff !important;
}

.payment_box {
    background: #1a1a1a !important;
    color: #ccc !important;
    border-radius: 8px;
    padding: 15px;
    border: 1px solid #222;
}

.woocommerce-checkout input[type="radio"] {
    accent-color: #ff2f43;
}


/* =====================================
   PLACE ORDER BUTTON
===================================== */

#place_order {
    width: 100%;
    background: #ff2f43;
    color: #fff;
    font-size: 17px;
    padding: 16px;
    border-radius: 12px;
    border: none;
    margin-top: 25px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
}

#place_order:hover {
    background: #e6263a;
    transform: translateY(-1px);
}


/* =====================================
   NOTICES
===================================== */

.woocommerce-error,
.woocommerce-info,
.woocommerce-message {
    background: #1a1a1a;
    color: #fff;
    border-left: 4px solid #ff2f43;
    padding: 15px 20px;
    margin-bottom: 20px;
}


/* =====================================
   REMOVE SHIPPING
===================================== */

.woocommerce-shipping-fields {
    display: none !important;
}


/* =====================================
   COUPON BOX
===================================== */

.woocommerce-form-coupon-toggle {
    margin-bottom: 25px;
}

.woocommerce-form-coupon {
    background: #0e0e0e;
    padding: 20px;
    border-radius: 10px;
    border: 1px solid #222;
}

.custom-dark-orders {
    background: #000;
    padding: 20px;
    border-radius: 10px;
}

.custom-dark-orders table {
    width: 100%;
    border-collapse: collapse;
    background: transparent;
}

/* Header */

.custom-dark-orders thead th {
    background: #111;
    color: #fff;
    padding: 12px;
    border-bottom: 1px solid #333;
    font-weight: 600;
}

/* Rows */

.custom-dark-orders tbody tr {
    border-bottom: 1px solid #222;
}

.custom-dark-orders tbody tr:hover {
    background: #111;
}

/* Cells */

.custom-dark-orders td {
    color: #fff;
    padding: 12px;
}

/* Links */

.custom-dark-orders a {
    color: #fff;
    text-decoration: none;
}

/* Buttons */

.custom-dark-orders .button,
.custom-dark-orders .woocommerce-button {
    background: #F9364C !important;
    color: #fff !important;
    border: none;
    padding: 6px 14px;
    border-radius: 4px;
    font-size: 14px;
    transition: 0.3s;
}

.custom-dark-orders .button:hover {
    background: #fff !important;
    color: #F9364C !important;
}

/* Mobile Responsive */

@media (max-width: 768px) {

    .custom-dark-orders table,
    .custom-dark-orders thead,
    .custom-dark-orders tbody,
    .custom-dark-orders th,
    .custom-dark-orders td,
    .custom-dark-orders tr {
        display: block;
    }

    .custom-dark-orders thead {
        display: none;
    }

    .custom-dark-orders tr {
        margin-bottom: 20px;
        padding: 10px;
        border: 1px solid #222;
        border-radius: 6px;
    }

    .custom-dark-orders td {
        padding: 8px 0;
    }

}

/* =====================================
   MOBILE
===================================== */

@media (max-width: 900px) {

    .woocommerce-checkout form.checkout {
        grid-template-columns: 1fr !important;
    }

    #custom-order-column {
        grid-column: 1 !important;
        position: static !important;
        margin-top: 30px;
    }

    .woocommerce-billing-fields,
    #custom-order-column #order_review,
    #custom-order-column #payment {
        padding: 20px;
    }

    #place_order {
        font-size: 16px;
        padding: 14px;
    }
}

