/*
 * ORVoxel Core Styles
 * Brand Colors:
 * Electric Blue: #00AEEF
 * Tech Purple: #6A00FF
 * Fonts: Montserrat (Headings), Poppins (Body)
 */

:root {
    --or-blue: #00AEEF;
    --or-purple: #6A00FF;
    --or-dark: #111111;
    --or-light: #F4F4F4;
    --or-white: #FFFFFF;
    --or-gray: #E0E0E0;
    --or-gradient: linear-gradient(135deg, var(--or-blue) 0%, var(--or-purple) 100%);
    --or-font-heading: 'Montserrat', sans-serif;
    --or-font-body: 'Poppins', sans-serif;
}

body {
    font-family: var(--or-font-body);
    color: var(--or-dark);
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--or-font-heading);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: -0.5px;
}

/* --- Voxel/Tech Accents --- */
.or-voxel-accent {
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(0, 174, 239, 0.2);
    transition: all 0.3s ease;
}

.or-voxel-accent:hover {
    border-color: var(--or-blue);
    box-shadow: 0 0 20px rgba(0, 174, 239, 0.15);
}

.or-voxel-accent::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 20px;
    height: 20px;
    background: var(--or-gradient);
    clip-path: polygon(100% 0, 0% 100%, 100% 100%);
}

/* --- Utilities --- */
.or-btn-primary {
    background: var(--or-gradient);
    color: var(--or-white);
    padding: 12px 24px;
    border: none;
    border-radius: 4px;
    /* Minimal radius */
    font-family: var(--or-font-heading);
    font-weight: 600;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    display: inline-block;
    text-decoration: none;
}

.or-btn-primary:hover {
    box-shadow: 0 0 15px rgba(0, 174, 239, 0.5);
    transform: translateY(-2px);
    color: var(--or-white);
}

/* --- Product Badges & Logic --- */
.or-product-badges {
    margin-bottom: 10px;
}

.or-badge {
    display: inline-block;
    padding: 6px 12px;
    font-size: 0.85rem;
    font-weight: 600;
    border-radius: 4px;
    margin-right: 5px;
}

.or-badge-instock {
    background-color: rgba(0, 174, 239, 0.1);
    color: var(--or-blue);
    border: 1px solid var(--or-blue);
}

.or-badge-mto {
    background-color: rgba(106, 0, 255, 0.1);
    color: var(--or-purple);
    border: 1px solid var(--or-purple);
}

.or-delivery-estimation {
    background: var(--or-light);
    padding: 15px;
    border-radius: 8px;
    margin: 20px 0;
    border-left: 4px solid var(--or-blue);
}

.or-delivery-estimation p {
    margin: 0 0 5px;
}

/* --- Checkout Improvements --- */
.or-installment-sim {
    color: var(--or-purple);
    font-size: 0.95rem;
    margin-bottom: 5px;
}

.or-pix-discount {
    color: var(--or-dark);
    font-size: 0.9rem;
    background: #eaffea;
    border: 1px solid #ccffcc;
    padding: 5px 10px;
    display: inline-block;
    border-radius: 4px;
    margin-bottom: 15px;
}

/* --- Hero Section --- */
.or-hero-section {
    background: var(--or-dark);
    color: var(--or-white);
    padding: 100px 20px;
    text-align: center;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 500px;
}

.or-hero-content {
    z-index: 2;
    max-width: 800px;
}

.or-hero-title {
    font-size: 3.5rem;
    background: var(--or-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 20px;
    line-height: 1.1;
}

.or-hero-subtitle {
    font-size: 1.2rem;
    margin-bottom: 40px;
    color: var(--or-gray);
}

/* --- Collection Grid --- */
.or-collection-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    padding: 50px 0;
}

.or-collection-card {
    background: var(--or-light);
    padding: 40px 20px;
    text-align: center;
    border-radius: 8px;
}

.or-collection-card h3 {
    margin-bottom: 20px;
    font-size: 1.5rem;
}

.or-link-overlay {
    display: inline-block;
    margin-top: 15px;
    color: var(--or-blue);
    font-weight: 600;
    text-decoration: none;
    border-bottom: 2px solid transparent;
    transition: border-color 0.3s;
}

.or-link-overlay:hover {
    border-bottom-color: var(--or-blue);
}

/* --- Features & Reviews --- */
.or-features-row {
    display: flex;
    justify-content: space-around;
    padding: 50px 0;
    background: var(--or-white);
    flex-wrap: wrap;
}

.or-feature-item {
    text-align: center;
    flex: 1;
    min-width: 250px;
    padding: 20px;
}

.or-feature-item i {
    font-size: 2.5rem;
    color: var(--or-blue);
    margin-bottom: 20px;
}

.or-reviews-section {
    padding: 60px 0;
    background: var(--or-light);
    text-align: center;
}

.or-reviews-grid {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-top: 40px;
    flex-wrap: wrap;
}

.or-review-card {
    background: var(--or-white);
    padding: 30px;
    border-radius: 8px;
    max-width: 400px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.or-review-card .stars {
    color: #FFD700;
    margin-bottom: 15px;
}

/* --- Animations --- */
@keyframes float {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-10px);
    }

    100% {
        transform: translateY(0px);
    }
}

.or-anim-float {
    animation: float 4s ease-in-out infinite;
}

/* --- Mobile Sticky --- */
.or-mobile-sticky-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: var(--or-white);
    padding: 15px;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
    z-index: 9999;
    text-align: center;
}

.or-mobile-sticky-bar.visible {
    display: block !important;
}

.or-sticky-inner button {
    width: 100%;
    background: var(--or-blue);
    color: white;
    border: none;
    padding: 12px;
    border-radius: 4px;
    font-weight: bold;
    text-transform: uppercase;
}