/*
Theme Name: Onekit Bootstrap
Description: A premium, light-themed custom Bootstrap 5 WooCommerce theme for Onekit Inc with glassmorphism.
Author: Antigravity AI
Version: 2.1.0
*/

body {
    background-color: #f4f6f9;
    color: #333333;
    font-family: 'Inter', sans-serif;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    color: #1a1a1a;
    font-weight: 800;
    font-family: 'Playfair Display', serif;
}

/* Custom Navbar */
.navbar-custom {
    background-color: rgba(255, 255, 255, 0.75);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    padding: 1rem 0;
    transition: all 0.3s ease;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.02);
}
.navbar-custom .navbar-brand {
    color: #1a1a1a;
    font-weight: 900;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-size: 1.5rem;
    font-family: 'Inter', sans-serif;
}
.navbar-custom .navbar-brand span {
    color: #e50914; /* Racing Red accent */
    font-size: 0.65em;
    vertical-align: middle;
}
.navbar-custom .nav-link {
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.85rem;
    color: #333;
    transition: color 0.3s ease;
    position: relative;
}
.navbar-custom .nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 5px;
    left: 50%;
    transform: translateX(-50%);
    background-color: #e50914;
    transition: width 0.3s ease;
}
.navbar-custom .nav-link:hover {
    color: #e50914 !important;
}
.navbar-custom .nav-link:hover::after {
    width: 60%;
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 65vh;
    padding-top: 100px;
    padding-bottom: 80px;
    display: flex;
    align-items: center;
    background: url('./assets/images/hero.png') center center / cover no-repeat;
    border-bottom: 1px solid rgba(0,0,0,0.05);
}
.hero::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: linear-gradient(to right, rgba(255, 255, 255, 0.95) 0%, rgba(255, 255, 255, 0.4) 100%);
    z-index: 1;
}
.hero .container {
    position: relative;
    z-index: 2;
}
.hero h1 {
    font-size: 4.5rem;
    line-height: 1.1;
    margin-bottom: 1.5rem;
}
.hero .text-accent {
    color: #e50914;
}
.hero p {
    font-size: 1.4rem;
    color: #444;
    max-width: 600px;
    margin-bottom: 2.5rem;
    font-family: 'Inter', sans-serif;
}

/* Glassmorphism Cards */
.glass-card {
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.8);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.05);
    border-radius: 16px;
    padding: 2.5rem;
    transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}
.glass-card:hover {
    transform: translateY(-10px);
    border-color: rgba(229, 9, 20, 0.4);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
}

/* Product Cards */
.card-product {
    background-color: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.8);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.03);
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
.card-product:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 15px 30px rgba(229, 9, 20, 0.15);
    border-color: rgba(229, 9, 20, 0.3);
}
.card-product img {
    height: 280px;
    object-fit: cover;
    transition: transform 0.5s ease;
}
.card-product:hover img {
    transform: scale(1.05);
}
.card-product .card-title {
    font-size: 1.15rem;
    margin-bottom: 0.5rem;
    line-height: 1.4;
    font-family: 'Playfair Display', serif;
}
.card-product .price {
    font-size: 1.35rem;
    color: #e50914;
    font-weight: 800;
}

/* Section Headings */
.section-title {
    font-size: 3rem;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}
.section-subtitle {
    color: #666;
    font-size: 1.1rem;
    margin-bottom: 4rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    font-family: 'Inter', sans-serif;
}

/* Service Icons */
.service-icon {
    font-size: 3rem;
    color: #e50914;
    margin-bottom: 1.5rem;
}

/* Gallery Masonry */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    grid-gap: 20px;
}
.gallery-item {
    border-radius: 12px;
    overflow: hidden;
    position: relative;
    cursor: pointer;
    border: 1px solid rgba(0,0,0,0.05);
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}
.gallery-item img {
    width: 100%;
    height: 350px;
    object-fit: cover;
    transition: transform 0.5s ease;
}
.gallery-item:hover img {
    transform: scale(1.1);
}
.gallery-item .overlay {
    position: absolute;
    bottom: 0; left: 0; right: 0;
    background: linear-gradient(to top, rgba(255,255,255,0.95), transparent);
    padding: 20px;
    opacity: 0;
    transition: opacity 0.3s ease;
}
.gallery-item:hover .overlay {
    opacity: 1;
}

/* Testimonials */
.testimonial-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid #e50914;
    margin-bottom: 1rem;
}

/* Buttons */
.btn-primary {
    background-color: #e50914;
    border-color: #e50914;
    color: #fff;
    transition: all 0.3s ease;
}
.btn-primary:hover, .btn-primary:focus {
    background-color: #bf0811;
    border-color: #bf0811;
    box-shadow: 0 0 20px rgba(229, 9, 20, 0.4);
}
.btn-outline-primary {
    color: #e50914;
    border-color: #e50914;
}
.btn-outline-primary:hover {
    background-color: #e50914;
    color: #fff;
    border-color: #e50914;
}

/* Footer */
footer {
    background-color: #f8f9fa;
    padding: 80px 0 40px;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
}
footer h5 {
    color: #1a1a1a;
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    letter-spacing: 1px;
}
footer ul {
    list-style: none;
    padding: 0;
}
footer ul li {
    margin-bottom: 0.8rem;
}
footer a {
    color: #555;
    text-decoration: none;
    transition: color 0.3s ease;
}
footer a:hover {
    color: #e50914;
}
.social-icons a {
    display: inline-block;
    width: 40px;
    height: 40px;
    background: rgba(0,0,0,0.05);
    color: #333;
    border-radius: 50%;
    text-align: center;
    line-height: 40px;
    margin-right: 10px;
    font-size: 1.2rem;
    transition: all 0.3s ease;
}
.social-icons a:hover {
    background: #e50914;
    color: #fff;
}

/* WooCommerce My Account Styling */
.woocommerce {
    max-width: 1200px;
    margin: 0 auto;
}
.woocommerce form.login, .woocommerce form.register {
    background: rgba(255, 255, 255, 0.75);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 1);
    border-radius: 16px;
    padding: 3rem;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
    margin: 3rem auto;
    max-width: 500px;
    width: 100%;
}
.woocommerce-account h2 {
    text-align: center;
    margin-bottom: 1.5rem;
}
#customer_login {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}
#customer_login .u-column1, #customer_login .u-column2 {
    flex: 1 1 400px;
    max-width: 500px;
    width: 100%;
}
#customer_login form {
    margin: 0 !important;
}
.woocommerce-account .woocommerce {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    margin-top: 2rem;
}
.woocommerce-MyAccount-navigation {
    flex: 1 1 250px;
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.8);
    border-radius: 12px;
    padding: 1.5rem 0;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
}
.woocommerce-MyAccount-navigation ul {
    list-style: none;
    padding: 0;
    margin: 0;
}
.woocommerce-MyAccount-navigation ul li {
    border-bottom: 1px solid rgba(0,0,0,0.05);
}
.woocommerce-MyAccount-navigation ul li:last-child {
    border-bottom: none;
}
.woocommerce-MyAccount-navigation ul li a {
    display: block;
    padding: 1rem 2rem;
    color: #444;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}
.woocommerce-MyAccount-navigation ul li.is-active a, .woocommerce-MyAccount-navigation ul li a:hover {
    background: rgba(229, 9, 20, 0.05);
    color: #e50914;
    border-left: 4px solid #e50914;
    padding-left: calc(2rem - 4px);
}
.woocommerce-MyAccount-content {
    flex: 3 1 600px;
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.8);
    border-radius: 12px;
    padding: 2.5rem;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
}
.woocommerce form .form-row input.input-text, .woocommerce form .form-row textarea {
    background: #fdfdfd;
    border: 1px solid #dee2e6;
    border-radius: 8px;
    padding: 0.75rem 1rem;
    color: #333;
    transition: border-color 0.3s ease;
}
.woocommerce form .form-row input.input-text:focus, .woocommerce form .form-row textarea:focus {
    border-color: #e50914;
    outline: none;
    box-shadow: 0 0 0 3px rgba(229, 9, 20, 0.1);
}
.woocommerce button.button {
    background-color: #e50914 !important;
    color: #fff !important;
    border-radius: 50px;
    padding: 0.75rem 2rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: none;
    transition: background-color 0.3s ease, transform 0.2s ease;
}
.woocommerce button.button:hover {
    background-color: #b90710 !important;
    transform: translateY(-2px);
}
.woocommerce table.my_account_orders {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    margin-bottom: 2rem;
}
.woocommerce table.my_account_orders th, .woocommerce table.my_account_orders td {
    padding: 1rem;
    border-bottom: 1px solid rgba(0,0,0,0.05);
    text-align: left;
}
.woocommerce table.my_account_orders th {
    background: rgba(0,0,0,0.02);
    font-weight: 700;
}
.woocommerce-info, .woocommerce-message, .woocommerce-error {
    border-top-color: #e50914;
    background-color: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
}
.woocommerce-info::before, .woocommerce-message::before {
    color: #e50914;
}

/* Single Product Page Styling */
.woocommerce div.product {
    background: rgba(255, 255, 255, 0.75);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 1);
    border-radius: 16px;
    padding: 3rem;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.05);
    margin-bottom: 3rem;
}
.woocommerce div.product div.images img {
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}
.trust-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}
.trust-badge-item {
    background: #fff;
    border: 1px solid #eee;
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    color: #444;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    box-shadow: 0 4px 10px rgba(0,0,0,0.02);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.trust-badge-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(0,0,0,0.05);
}
.trust-badge-item i {
    font-size: 1.1rem;
}
.value-prop-block {
    background: rgba(255,255,255,0.8) !important;
    backdrop-filter: blur(10px);
    border-color: rgba(0,0,0,0.05) !important;
}
.woocommerce div.product .woocommerce-tabs ul.tabs {
    border-bottom: 2px solid rgba(0,0,0,0.05) !important;
    padding: 0 !important;
    margin-bottom: 2rem !important;
    display: flex !important;
    gap: 2rem !important;
    background: transparent !important;
    box-shadow: none !important;
}
.woocommerce div.product .woocommerce-tabs ul.tabs li {
    background: transparent !important;
    border: none !important;
    padding: 0 !important;
    margin: 0 !important;
    border-radius: 0 !important;
    box-shadow: none !important;
}
.woocommerce div.product .woocommerce-tabs ul.tabs li::before,
.woocommerce div.product .woocommerce-tabs ul.tabs li::after {
    display: none !important;
}
.woocommerce div.product .woocommerce-tabs ul.tabs li a {
    padding: 1rem 0 !important;
    color: #666 !important;
    font-weight: 600 !important;
    text-transform: uppercase !important;
    letter-spacing: 1px !important;
    font-size: 0.9rem !important;
    position: relative !important;
    transition: color 0.3s ease !important;
}
.woocommerce div.product .woocommerce-tabs ul.tabs li.active a,
.woocommerce div.product .woocommerce-tabs ul.tabs li a:hover {
    color: #e50914 !important;
}
.woocommerce div.product .woocommerce-tabs ul.tabs li.active a::after {
    content: '' !important;
    position: absolute !important;
    bottom: -2px !important;
    left: 0 !important;
    width: 100% !important;
    height: 2px !important;
    background: #e50914 !important;
}

/* Homepage Enhancements & Vibrancy */
.gradient-text {
    color: #e50914; /* Fallback */
    background: linear-gradient(135deg, #e50914 0%, #ff4b2b 100%) !important;
    -webkit-background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
    display: inline-block;
}
.gradient-icon i {
    color: #e50914; /* Fallback */
    background: linear-gradient(135deg, #e50914 0%, #ff4b2b 100%) !important;
    -webkit-background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
}
.hover-lift {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.hover-lift:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(229, 9, 20, 0.2) !important;
}
.hover-lift-card {
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275), box-shadow 0.4s ease;
}
.hover-lift-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}
.glow-card {
    position: relative;
}
.glow-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: inherit;
    box-shadow: 0 0 30px rgba(229, 9, 20, 0.1);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: -1;
}
.glow-card:hover::after {
    opacity: 1;
}
.btn-glow {
    box-shadow: 0 8px 20px rgba(229, 9, 20, 0.3) !important;
    border: none;
    background: linear-gradient(135deg, #e50914 0%, #ff4b2b 100%) !important;
}
.btn-glow:hover {
    box-shadow: 0 12px 30px rgba(229, 9, 20, 0.4) !important;
}
.hover-zoom-img {
    transition: transform 0.7s ease;
}
.gallery-item:hover .hover-zoom-img,
.card-product:hover .hover-zoom-img,
.image-glow-wrapper:hover .hover-zoom-img {
    transform: scale(1.08);
}
.image-glow-wrapper {
    position: relative;
    border-radius: 1rem;
}
.image-glow-wrapper::before {
    content: '';
    position: absolute;
    top: -15px;
    bottom: -15px;
    left: -15px;
    right: -15px;
    background: radial-gradient(circle, rgba(229,9,20,0.1) 0%, transparent 70%);
    z-index: -1;
    border-radius: 2rem;
}
.trust-banner h4 {
    color: #333;
}
.stats-section {
    border-top: 5px solid #e50914;
    border-bottom: 5px solid #e50914;
}
.z-index-1 {
    z-index: 1;
}
