/* B2B Automotive Detailing Retailer - Shared Styles */
.spacer {
    display: none !important;
}

body>div.container {
    min-height: 1050px;
}

/* Color Variables */
:root {
    --primary-dark: #000000;
    --primary-darker: #1a1a1a;
    --accent-red: #000000;
    --text-dark: #000000;
    --text-gray: #333333;
    --text-light: #666666;
    --border-gray: #cccccc;
    --bg-light: #f5f5f5;
    --bg-lighter: #e8e8e8;
    --white: #ffffff;
    --black: #000000;
    --gray-dark: #1a1a1a;
    --gray-medium: #4d4d4d;
    --gray-light: #d9d9d9;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
}

.nav-item.account,
.nav-folder.account {
    display: none;
}

.nav-item.user,
.nav-folder.user {
    display: none;
}

.nav-item.admin,
.nav-folder.admin {
    display: none;
}

.navigation.bar {
    font-weight: bold;
    backdrop-filter: blur(2px);
    background-color: rgba(255, 255, 255, 0.288);
}

/* Common Containers */
.container-max {
    max-width: 1200px;
    margin: 0 auto;
}

.container-padded {
    padding: 0 20px;
}

.container-section {
    padding: 60px 20px;
}

/* Gradient Background */
.gradient-primary {
    background: linear-gradient(135deg, #000000 0%, #1a1a1a 100%);
}

.gradient-accent-1 {
    background: linear-gradient(135deg, #1a1a1a 0%, #333333 100%);
}

.gradient-accent-2 {
    background: linear-gradient(135deg, #2d2d2d 0%, #4d4d4d 100%);
}

.gradient-accent-3 {
    background: linear-gradient(135deg, #3d3d3d 0%, #5d5d5d 100%);
}

.gradient-accent-4 {
    background: linear-gradient(135deg, #1f1f1f 0%, #3a3a3a 100%);
}

/* Typography */
h1,
h2,
h3,
h4,
h5,
h6 {
    color: white;
    font-weight: 700;
}

h2 {
    font-size: 2.5em;
    margin-bottom: 40px;
    letter-spacing: -0.5px;
}

h3 {
    color: white;
    font-size: 1.5em;
}

h4 {
    font-size: 1.2em;
    color: white;
}

p {
    color: rgb(185 185 185);
    line-height: 1.6;
}

/* Buttons */
.btn {
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 1.1em;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-primary {
    background-color: var(--black);
    color: var(--white);
    padding: 14px 40px;
    border: 2px solid var(--black);
}

.btn-primary:hover {
    background-color: var(--white);
    color: var(--black);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.btn-primary-lg {
    padding: 15px 50px;
    font-size: 1.1em;
}

.btn-inverse {
    background-color: var(--white);
    color: var(--black);
    border: 2px solid var(--white);
}

.btn-inverse:hover {
    background-color: var(--black);
    color: var(--white);
}

.btn-small {
    padding: 8px 12px;
    font-size: 0.95em;
}

/* Form Elements */
input[type="text"],
input[type="email"],
input[type="password"],
select {
    padding: 12px;
    border: 1px solid var(--gray-light);
    border-radius: 4px;
    font-size: 1em;
    transition: border-color 0.3s ease;
}

input[type="text"]:focus,
input[type="email"]:focus,
input[type="password"]:focus,
select:focus {
    outline: none;
    border-color: var(--black);
    box-shadow: 0 0 0 3px rgba(0, 0, 0, 0.1);
}

input[type="checkbox"] {
    margin-right: 8px;
    cursor: pointer;
}

label {
    display: block;
    margin-bottom: 8px;
    color: var(--text-dark);
    font-weight: 600;
}

.form-group {
    margin-bottom: 20px;
}

/* Cards */
.card {
    background: var(--white);
    border-radius: 8px;
    border: 1px solid var(--gray-light);
    overflow: hidden;
    transition: all 0.3s ease;
}

.card:hover {
    transform: translateY(-5px);
    border-color: var(--primary-dark);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.card-padding {
    padding: 30px;
}

.card-content {
    padding: 20px;
}

.card-image {
    background: var(--bg-lighter);
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-light);
    font-size: 3em;
}

/* Grid Layouts */
.grid-3 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.grid-4 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
}

.grid-products {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 25px;
}

/* Hero Section */
.hero-content {
    height: 500px;
    color: var(--white);
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.hero-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at top right, rgba(255, 255, 255, 0.1), transparent);
    pointer-events: none;
}

.hero-content .text {
    position: relative;
    z-index: 1;
}

.hero-title {
    font-size: 3em;
    margin: 0;
    font-weight: 700;
    letter-spacing: -1px;
}

.hero-subtitle {
    font-size: 1.2em;
    margin: 20px 0;
    opacity: 0.85;
    font-weight: 500;
}

/* Carousel / Slideshow */
.carousel-container {
    position: relative;
    height: 500px;
    overflow: hidden;
    background-color: #000;
}

.carousel-slides {
    position: relative;
    width: 100%;
    height: 100%;
}

.carousel-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.8s ease-in-out;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.carousel-slide.active {
    opacity: 1;
}

.carousel-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.6) 0%, rgba(0, 0, 0, 0.3) 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 2;
    text-align: center;
    color: var(--white);
}

.carousel-controls {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    display: flex;
    gap: 10px;
}

.carousel-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.4);
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.carousel-dot.active {
    background-color: var(--white);
    width: 30px;
    border-radius: 6px;
}

.carousel-dot:hover {
    background-color: rgba(255, 255, 255, 0.8);
}

/* Section Styles */
.section-light-bg {
    padding: 60px 20px;
    background-color: var(--white);
    border-top: 1px solid var(--gray-light);
    border-bottom: 1px solid var(--gray-light);
    text-align: center;
}

.section-dark-bg {
    background: linear-gradient(135deg, #000000 0%, #1a1a1a 100%);
    color: var(--white);
    padding: 60px 20px;
    text-align: center;
}

.section-dark-bg h2 {
    color: var(--white);
}

.section-dark-bg p {
    color: rgba(255, 255, 255, 0.85);
}

.section-title-center {
    font-size: 2.5em;
    text-align: center;
    color: var(--primary-dark);
}

/* Pricing Display */
.pricing-section {
    background-color: var(--white);
    padding: 40px 20px;
    margin-top: 40px;
    border-radius: 8px;
    border: 1px solid var(--gray-light);
}

.price-old {
    margin: 0;
    color: var(--text-light);
    text-decoration: line-through;
    font-size: 0.9em;
}

.price-new {
    margin: 5px 0 0 0;
    font-size: 1.5em;
    color: var(--black);
    font-weight: bold;
}

/* Product Card Pricing */
.product-price-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Search & Filter */
.search-filter-container {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    align-items: center;
    margin-bottom: 30px;
}

.search-filter-container input,
.search-filter-container select {
    flex: 1;
    min-width: 200px;
}

/* Flex Utilities */
.flex-row {
    display: flex;
}

.flex-space-between {
    justify-content: space-between;
    align-items: center;
}

.flex-center {
    justify-content: center;
    align-items: center;
}

.flex-column {
    flex-direction: column;
}

/* Text Utilities */
.text-center {
    text-align: center;
}

.text-white {
    color: var(--white);
}

.text-primary {
    color: var(--primary-dark);
}

.text-accent {
    color: var(--accent-red);
}

.text-muted {
    color: var(--text-gray);
}

.text-small {
    font-size: 0.85em;
    color: var(--text-light);
}

/* Spacing */
.margin-top-20 {
    margin-top: 20px;
}

.margin-top-30 {
    margin-top: 30px;
}

.margin-bottom-20 {
    margin-bottom: 20px;
}

.margin-bottom-30 {
    margin-bottom: 30px;
}

.margin-bottom-40 {
    margin-bottom: 40px;
}

.padding-20 {
    padding: 20px;
}

.padding-30 {
    padding: 30px;
}

.padding-40 {
    padding: 40px;
}

/* Border Radius */
.rounded-4 {
    border-radius: 4px;
}

.rounded-8 {
    border-radius: 8px;
}

.rounded-5 {
    border-radius: 5px;
}

/* Links */
a {
    color: var(--black);
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: var(--text-gray);
}

a.underline {
    text-decoration: underline;
}

a.accent {
    color: var(--black);
    font-weight: 600;
}

a.accent:hover {
    text-decoration: underline;
    color: var(--text-gray);
}

/* HR Styling */
hr.light {
    border: 1px solid rgba(255, 255, 255, 0.2);
    margin: 30px 0;
}

/* Info Box */
.info-box {
    background-color: rgba(255, 255, 255, 0.08);
    padding: 20px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 4px;
}

.info-box p {
    margin: 0 0 10px 0;
    color: var(--white);
    font-weight: 500;
}

.info-box p:last-child {
    margin-bottom: 0;
}

/* Features/Benefits */
.feature-item {
    margin-bottom: 30px;
}

.feature-item h4 {
    margin-bottom: 10px;
}

/* Flex Container for Login */
.login-container {
    display: flex;
    min-height: 600px;
    max-width: 1200px;
    margin: 0 auto;
    border: 1px solid var(--gray-light);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.login-form-section {
    flex: 1;
    padding: 60px 40px;
    background-color: var(--white);
}

.login-info-section {
    flex: 1;
    padding: 60px 40px;
    background: linear-gradient(135deg, #000000 0%, #1a1a1a 100%);
    color: var(--white);
}

/* Form Styling */
.form-full-width {
    width: 100%;
}

.form-group-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
}

.checkbox-label {
    display: flex;
    align-items: center;
    color: var(--text-gray);
}

.form-divider {
    text-align: center;
    color: var(--text-gray);
}

/* Volume Pricing */
.volume-pricing-item {
    background: var(--white);
    padding: 20px;
    border-radius: 4px;
    border: 1px solid var(--gray-light);
    text-align: center;
    transition: all 0.3s ease;
}

.volume-pricing-item:hover {
    border-color: var(--black);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.volume-pricing-item p {
    margin: 0;
}

.volume-pricing-title {
    font-size: 1.2em;
    font-weight: bold;
    color: var(--black);
    margin-bottom: 10px;
}

.nav-folder.owner {
    display: none;
}

.navigation .logo {
    height: 40px;
    width: auto;
}