/*
Theme Name: OXBALLS Custom Theme
Theme URI: https://officialoxballs.com
Description: Custom WordPress theme for OXBALLS with manual BTC payments
Author: OXBALLS
Author URI: https://officialoxballs.com
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: oxballs
Tags: woocommerce, ecommerce, adult, custom

OXBALLS - Best Weird Gear
Manual Payments: BTC, WhatsApp, Email
*/

/* ==============================================================
   RESET & BASE STYLES
   ============================================================== */

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

body {
    font-family: 'Inter', 'Segoe UI', Arial, sans-serif;
    background: #000;
    color: #ddd;
    line-height: 1.7;
    font-size: 16px;
}

a {
    color: #ff6600;
    text-decoration: none;
    transition: color 0.3s;
}

a:hover {
    color: #ff8533;
}

img {
    max-width: 100%;
    height: auto;
}

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

.container-wide {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ==============================================================
   BUTTONS
   ============================================================== */

.btn,
button,
input[type="submit"],
.button,
.woocommerce-Button {
    background: #ff6600;
    color: white;
    padding: 15px 35px;
    border: 2px solid #ff6600;
    border-radius: 8px;
    font-weight: 700;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: inline-block;
}

.btn:hover,
button:hover,
input[type="submit"]:hover,
.button:hover,
.woocommerce-Button:hover {
    background: #ff8533;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 102, 0, 0.3);
}

.btn-secondary {
    background: transparent;
    color: #ff6600;
    border: 2px solid #ff6600;
}

.btn-secondary:hover {
    background: #ff6600;
    color: white;
}

/* ==============================================================
   HEADER
   ============================================================== */

.site-header {
    background: #0a0a0a;
    padding: 15px 0;
    border-bottom: 3px solid #ff6600;
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

.site-logo img {
    height: 60px;
    width: auto;
}

.main-navigation ul {
    list-style: none;
    display: flex;
    gap: 30px;
    margin: 0;
}

.main-navigation a {
    color: #ddd;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 14px;
    letter-spacing: 1px;
}

.main-navigation a:hover {
    color: #ff6600;
}

.header-cart {
    position: relative;
}

.cart-icon {
    color: #ff6600;
    font-size: 24px;
}

.cart-count {
    position: absolute;
    top: -8px;
    right: -8px;
    background: #ff6600;
    color: white;
    border-radius: 50%;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: bold;
}

/* ==============================================================
   HERO
   ============================================================== */

.hero-section {
    background: linear-gradient(135deg, #1a0a00, #0a0000);
    padding: 100px 20px;
    text-align: center;
    border-bottom: 3px solid #ff6600;
}

.hero-content h1 {
    font-size: 56px;
    color: #ff6600;
    margin-bottom: 25px;
    font-weight: 900;
    letter-spacing: 3px;
    text-transform: uppercase;
}

.hero-content p {
    font-size: 22px;
    color: #ccc;
    margin-bottom: 40px;
}

/* ==============================================================
   PRODUCT GRID
   ============================================================== */

.woocommerce ul.products {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 30px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.woocommerce ul.products li.product {
    background: #1a1a1a;
    border: 2px solid #333;
    border-radius: 12px;
    padding: 20px;
    text-align: center;
    transition: all 0.3s;
}

.woocommerce ul.products li.product:hover {
    border-color: #ff6600;
    transform: translateY(-5px);
}

.woocommerce ul.products li.product img {
    border-radius: 8px;
    margin-bottom: 15px;
}

.woocommerce ul.products li.product .woocommerce-loop-product__title {
    color: #ff6600;
    font-size: 20px;
    margin-bottom: 10px;
    font-weight: 700;
    text-transform: uppercase;
}

.woocommerce ul.products li.product .price {
    color: #fff;
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 15px;
}

.woocommerce ul.products li.product .price del {
    color: #777;
    font-size: 18px;
}

.woocommerce ul.products li.product .button {
    width: 100%;
    padding: 12px 20px;
}

/* ==============================================================
   SINGLE PRODUCT
   ============================================================== */

.woocommerce div.product {
    background: #1a1a1a;
    padding: 40px;
    border-radius: 12px;
    border: 2px solid #333;
    margin-top: 40px;
}

.woocommerce div.product .product_title {
    color: #ff6600;
    font-size: 36px;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.woocommerce div.product .price {
    color: #fff;
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 20px;
}

.woocommerce div.product .woocommerce-product-details__short-description {
    color: #ccc;
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 30px;
}

.woocommerce div.product form.cart {
    margin-bottom: 30px;
}

.woocommerce div.product form.cart .quantity {
    margin-right: 15px;
}

.woocommerce div.product form.cart input[type="number"] {
    background: #0a0a0a;
    border: 2px solid #333;
    color: white;
    padding: 12px 15px;
    border-radius: 8px;
    font-size: 16px;
    width: 80px;
}

/* ==============================================================
   CART & CHECKOUT
   ============================================================== */

.woocommerce-cart,
.woocommerce-checkout {
    background: #1a1a1a;
    padding: 40px;
    border-radius: 12px;
    margin-top: 40px;
}

.woocommerce table.shop_table {
    background: #0a0a0a;
    border: 2px solid #333;
    border-radius: 8px;
    width: 100%;
}

.woocommerce table.shop_table th {
    background: #1a1a1a;
    color: #ff6600;
    padding: 15px;
    text-transform: uppercase;
    font-weight: 700;
    border-bottom: 2px solid #ff6600;
}

.woocommerce table.shop_table td {
    padding: 20px 15px;
    color: #ccc;
    border-bottom: 1px solid #333;
}

.woocommerce table.shop_table td.product-name a {
    color: #fff;
    font-weight: 600;
}

.woocommerce table.shop_table td.product-price,
.woocommerce table.shop_table td.product-subtotal {
    color: #ff6600;
    font-weight: 700;
    font-size: 18px;
}

.woocommerce-cart-form .actions {
    text-align: right;
    margin-top: 20px;
}

/* Checkout Payment Methods */
.woocommerce-checkout #payment {
    background: #1a1a1a;
    border: 2px solid #ff6600;
    border-radius: 8px;
    padding: 30px;
    margin-top: 30px;
}

.woocommerce-checkout #payment ul.payment_methods {
    list-style: none;
    margin: 0;
    padding: 0;
}

.woocommerce-checkout #payment ul.payment_methods li {
    background: #0a0a0a;
    border: 2px solid #333;
    border-radius: 8px;
    padding: 20px;
    margin-bottom: 15px;
    transition: all 0.3s;
}

.woocommerce-checkout #payment ul.payment_methods li:hover,
.woocommerce-checkout #payment ul.payment_methods li.wc_payment_method input:checked + label {
    border-color: #ff6600;
}

.woocommerce-checkout #payment ul.payment_methods li label {
    color: #ff6600;
    font-weight: 700;
    font-size: 18px;
    cursor: pointer;
}

.woocommerce-checkout #payment div.payment_box {
    background: #0a0a0a;
    border: 2px solid #ff6600;
    border-radius: 8px;
    padding: 20px;
    margin-top: 15px;
    color: #ccc;
}

.woocommerce-checkout #payment div.payment_box p {
    margin-bottom: 10px;
}

/* ==============================================================
   FOOTER
   ============================================================== */

.site-footer {
    background: #000;
    padding: 60px 20px 30px;
    border-top: 3px solid #ff6600;
    margin-top: 80px;
}

.footer-widgets {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-widget h4 {
    color: #ff6600;
    margin-bottom: 20px;
    font-size: 20px;
    text-transform: uppercase;
    font-weight: 700;
}

.footer-widget ul {
    list-style: none;
}

.footer-widget li {
    margin-bottom: 12px;
}

.footer-widget a {
    color: #aaa;
    transition: color 0.3s;
}

.footer-widget a:hover {
    color: #ff6600;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid #333;
    color: #777;
}

/* ==============================================================
   RESPONSIVE
   ============================================================== */

@media (max-width: 768px) {
    .site-logo img {
        height: 45px;
    }
    
    .main-navigation ul {
        flex-direction: column;
        gap: 15px;
    }
    
    .hero-content h1 {
        font-size: 36px;
    }
    
    .hero-content p {
        font-size: 18px;
    }
    
    .woocommerce ul.products {
        grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    }
    
    .woocommerce div.product {
        padding: 20px;
    }
    
    .woocommerce div.product .product_title {
        font-size: 28px;
    }
}

/* ==============================================================
   UTILITY CLASSES
   ============================================================== */

.text-center {
    text-align: center;
}

.mt-20 {
    margin-top: 20px;
}

.mt-40 {
    margin-top: 40px;
}

.mb-20 {
    margin-bottom: 20px;
}

.mb-40 {
    margin-bottom: 40px;
}

.section-title {
    font-size: 42px;
    color: #ff6600;
    text-align: center;
    margin-bottom: 50px;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 800;
}

.section-spacing {
    padding: 80px 0;
}
