/* Shop Hero Section */
.shop-hero {
    position: relative;
    width: 100%;
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 60px;
    overflow: hidden;
}

.shop-hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 25%;
    z-index: 1;
    background-color: var(--dark-bg);
}

.shop-hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 4rem 2rem;
}

.shop-hero-title {
    font-family: 'Orbitron', sans-serif;
    font-size: 6rem;
    font-weight: 900;
    color: var(--text-primary);
    text-transform: uppercase;
    letter-spacing: 4px;
    text-shadow: 0 0 30px rgba(167, 146, 119, 0.5),
                 0 0 60px rgba(167, 146, 119, 0.3),
                 2px 2px 10px rgba(0, 0, 0, 0.8);
    margin: 0;
}

/* Shop Separator Line */
.shop-separator {
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, 
        transparent 0%, 
        rgba(167, 146, 119, 0.3) 20%, 
        rgba(167, 146, 119, 0.6) 50%, 
        rgba(167, 146, 119, 0.3) 80%, 
        transparent 100%);
    margin: 0;
    position: relative;
    z-index: 3;
}

.shop-separator::before,
.shop-separator::after {
    content: '';
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 12px;
    height: 12px;
    background: var(--primary-color);
    border-radius: 50%;
    box-shadow: 0 0 10px rgba(167, 146, 119, 0.5);
}

.shop-separator::before {
    left: 20%;
}

.shop-separator::after {
    right: 20%;
}

/* Category Frames Grid */
.shop-categories-grid {
    background: var(--dark-bg);
    padding: 4rem 0;
    min-height: 60vh;
}

.category-frames-wrapper {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.category-frame-link {
    text-decoration: none;
    display: block;
    transition: transform 0.3s ease;
}

.category-frame-link:hover {
    transform: translateY(-5px);
}

.category-frame-link:hover .shop-page-frame {
    background: rgba(167, 146, 119, 0.05);
    border-color: rgba(167, 146, 119, 0.4);
    box-shadow: 0 5px 20px rgba(167, 146, 119, 0.2);
}

.category-frame {
    background: var(--card-bg);
    border: 2px solid rgba(167, 146, 119, 0.2);
    border-radius: 8px;
    padding: 2.5rem;
    transition: all 0.3s ease;
    cursor: pointer;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    gap: 1.5rem;
}

.category-frame .shop-page-icon {
    width: 100px;
    height: 100px;
    font-size: 4rem;
    margin: 0 auto;
}

.category-frame .shop-page-title {
    font-size: 2rem;
    margin: 0;
}

/* Category Navigation */
.shop-categories {
    background: var(--dark-bg);
    padding: 1rem 0;
    border-bottom: 1px solid rgba(167, 146, 119, 0.2);
    margin-top: 60px;
}

.category-nav {
    display: flex;
    align-items: center;
    gap: 0;
    overflow-x: auto;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.category-nav::-webkit-scrollbar {
    display: none;
}

.category-btn {
    padding: 0.75rem 1.5rem;
    background: transparent;
    border: none;
    color: var(--text-secondary);
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    white-space: nowrap;
    border-bottom: 2px solid transparent;
}

.category-btn:hover {
    color: var(--text-primary);
    background: rgba(167, 146, 119, 0.05);
}

.category-btn.active {
    color: var(--accent-color);
    border-bottom-color: var(--primary-color);
    background: rgba(167, 146, 119, 0.1);
}

/* Shop Page Frame */
.shop-page-frame {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 2rem 0;
    margin-bottom: 2rem;
    border-bottom: 1px solid rgba(167, 146, 119, 0.2);
}

.shop-page-icon {
    font-size: 3rem;
    color: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    width: 80px;
    height: 80px;
    background: rgba(167, 146, 119, 0.1);
    border: 2px solid rgba(167, 146, 119, 0.3);
    border-radius: 8px;
    flex-shrink: 0;
}

.shop-page-title {
    font-family: 'Rajdhani', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-primary);
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Manufacturer Navigation */
.manufacturer-nav {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin: 2rem 0 1rem;
    padding: 1rem 0;
    border-bottom: 1px solid rgba(167, 146, 119, 0.2);
    overflow-x: auto;
    overflow-y: hidden;
    scrollbar-width: thin;
    scrollbar-color: rgba(167, 146, 119, 0.3) transparent;
    -ms-overflow-style: -ms-autohiding-scrollbar;
    position: relative;
}

.manufacturer-nav::-webkit-scrollbar {
    height: 6px;
}

.manufacturer-nav::-webkit-scrollbar-track {
    background: transparent;
}

.manufacturer-nav::-webkit-scrollbar-thumb {
    background: rgba(167, 146, 119, 0.3);
    border-radius: 3px;
}

.manufacturer-nav::-webkit-scrollbar-thumb:hover {
    background: rgba(167, 146, 119, 0.5);
}

.manufacturer-scroll {
    display: flex;
    gap: 1rem;
    flex: 1;
    min-width: max-content;
    padding-right: 1rem;
}

.manufacturer-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    min-width: 100px;
    padding: 0.75rem 1rem;
    background: var(--card-bg);
    border: 1px solid rgba(167, 146, 119, 0.2);
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.manufacturer-btn:hover {
    background: var(--card-hover);
    border-color: rgba(167, 146, 119, 0.4);
}

.manufacturer-btn.active {
    background: rgba(167, 146, 119, 0.2);
    border-color: var(--primary-color);
}

.manufacturer-icon {
    font-size: 1.5rem;
}

.manufacturer-text {
    font-size: 0.75rem;
    color: var(--text-secondary);
    text-align: center;
    font-weight: 500;
}

.manufacturer-btn.active .manufacturer-text {
    color: var(--accent-color);
}

.manufacturer-all-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    min-width: 80px;
    padding: 0.75rem 1rem;
    background: var(--card-bg);
    border: 1px solid rgba(167, 146, 119, 0.2);
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.manufacturer-all-btn:hover {
    background: var(--card-hover);
    border-color: rgba(167, 146, 119, 0.4);
}

.manufacturer-all-icon {
    font-size: 1.5rem;
    color: var(--text-primary);
}

.manufacturer-all-text {
    font-size: 0.75rem;
    color: var(--text-primary);
    font-weight: 500;
}

/* Role Navigation */
.role-nav {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin: 1rem 0 2rem;
    padding: 1rem 0;
    border-bottom: 1px solid rgba(167, 146, 119, 0.2);
    overflow-x: auto;
    overflow-y: hidden;
    scrollbar-width: thin;
    scrollbar-color: rgba(167, 146, 119, 0.3) transparent;
    -ms-overflow-style: -ms-autohiding-scrollbar;
    position: relative;
}

.role-nav::-webkit-scrollbar {
    height: 6px;
}

.role-nav::-webkit-scrollbar-track {
    background: transparent;
}

.role-nav::-webkit-scrollbar-thumb {
    background: rgba(167, 146, 119, 0.3);
    border-radius: 3px;
}

.role-nav::-webkit-scrollbar-thumb:hover {
    background: rgba(167, 146, 119, 0.5);
}

.role-btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: transparent;
    border: none;
    color: var(--text-secondary);
    font-size: 0.9rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
    font-family: 'Rajdhani', sans-serif;
}

.role-btn:hover {
    color: var(--text-primary);
}

.role-btn.active {
    color: var(--accent-color);
}

.role-circle {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: 2px solid var(--text-secondary);
    transition: all 0.3s ease;
}

.role-btn.active .role-circle {
    background: var(--primary-color);
    border-color: var(--primary-color);
}

.role-text {
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Search and Sort Bar */
.search-sort-bar {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin: 1.5rem 0;
    padding: 1rem 0;
    flex-wrap: wrap;
}

.filter-toggle-btn {
    padding: 0.75rem 1.5rem;
    background: var(--card-bg);
    border: 1px solid rgba(167, 146, 119, 0.2);
    color: var(--text-primary);
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-radius: 4px;
    font-family: 'Rajdhani', sans-serif;
}

.filter-toggle-btn:hover {
    background: var(--card-hover);
    border-color: rgba(167, 146, 119, 0.4);
}

.sort-container {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.sort-container label {
    color: var(--text-secondary);
    font-size: 0.9rem;
    font-weight: 500;
}

.sort-select {
    padding: 0.5rem 1rem;
    background: var(--card-bg);
    border: 1px solid rgba(167, 146, 119, 0.2);
    color: var(--text-primary);
    font-size: 0.9rem;
    border-radius: 4px;
    cursor: pointer;
    font-family: 'Rajdhani', sans-serif;
}

.search-container {
    flex: 1;
    position: relative;
    max-width: 400px;
    margin-left: auto;
}

.search-input {
    width: 100%;
    padding: 0.75rem 2.5rem 0.75rem 1rem;
    background: var(--card-bg);
    border: 1px solid rgba(167, 146, 119, 0.2);
    color: var(--text-primary);
    font-size: 0.9rem;
    border-radius: 4px;
    font-family: 'Rajdhani', sans-serif;
}

.search-input::placeholder {
    color: var(--text-muted);
}

.search-icon {
    position: absolute;
    right: 1rem;
    top: 50%;
    transform: translateY(-50%);
    color: var(--text-secondary);
    pointer-events: none;
}

/* Vehicle Content Wrapper */
.vehicle-content-wrapper {
    display: flex;
    gap: 2rem;
    margin-top: 2rem;
}

/* Filter Panel */
.filter-panel {
    width: 380px;
    min-width: 380px;
    background: var(--card-bg);
    border: 1px solid rgba(167, 146, 119, 0.2);
    border-radius: 4px;
    padding: 1.75rem;
    height: fit-content;
    position: sticky;
    top: 100px;
    flex-shrink: 0;
}

.filter-panel-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(167, 146, 119, 0.2);
}

.filter-panel-header h3 {
    margin: 0;
    color: var(--text-primary);
    font-size: 1.1rem;
    font-weight: 600;
    font-family: 'Rajdhani', sans-serif;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    flex: 1;
}

.clear-all-btn {
    background: transparent;
    border: none;
    color: var(--text-secondary);
    font-size: 0.85rem;
    cursor: pointer;
    transition: color 0.3s ease;
    text-decoration: underline;
    padding: 0.25rem 0.5rem;
    white-space: nowrap;
    margin-left: 1rem;
}

.clear-all-btn:hover {
    color: var(--text-primary);
}

.filter-section {
    margin-bottom: 1.75rem;
}

.filter-section:last-child {
    margin-bottom: 0;
}

.filter-section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.75rem;
    padding: 0.5rem 0;
    color: var(--text-primary);
    font-size: 0.95rem;
    font-weight: 600;
    cursor: default;
    font-family: 'Rajdhani', sans-serif;
    user-select: none;
    pointer-events: auto;
}

.filter-section-header.collapsible {
    cursor: pointer;
    pointer-events: auto;
}

.filter-section-header.collapsible * {
    pointer-events: none;
}

.filter-section-header.collapsible:hover {
    color: var(--accent-color);
}

.collapse-icon {
    font-size: 0.75rem;
    color: var(--text-secondary);
    transition: transform 0.3s ease;
    display: inline-block;
    width: 12px;
    text-align: center;
}

.filter-section-header.collapsed .collapse-icon {
    transform: rotate(0deg);
}

.filter-section-header:not(.collapsed) .collapse-icon {
    transform: rotate(90deg);
}

.filter-options {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    max-height: 1000px;
    overflow: hidden;
    transition: max-height 0.3s ease, opacity 0.3s ease, margin 0.3s ease, padding 0.3s ease;
    opacity: 1;
    margin-bottom: 0;
}

.filter-options.collapsed {
    max-height: 0;
    opacity: 0;
    margin: 0;
    padding: 0;
    overflow: hidden;
}

.filter-checkbox {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--text-secondary);
    font-size: 0.9rem;
    cursor: pointer;
    transition: color 0.3s ease;
    padding: 0.35rem 0;
    width: 100%;
}

.filter-checkbox:hover {
    color: var(--text-primary);
}

.filter-checkbox input[type="checkbox"] {
    width: 18px;
    height: 18px;
    min-width: 18px;
    cursor: pointer;
    accent-color: var(--primary-color);
    flex-shrink: 0;
}

.filter-checkbox span,
.filter-checkbox label {
    flex: 1;
    word-wrap: break-word;
    line-height: 1.4;
}

.price-inputs {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    width: 100%;
}

.price-input {
    flex: 1;
    min-width: 0;
    padding: 0.6rem 0.75rem;
    background: var(--dark-bg);
    border: 1px solid rgba(167, 146, 119, 0.2);
    color: var(--text-primary);
    font-size: 0.9rem;
    border-radius: 4px;
    font-family: 'Rajdhani', sans-serif;
    width: 100%;
}

.price-inputs span {
    color: var(--text-secondary);
    flex-shrink: 0;
}

/* Vehicle Grid Container */
.vehicle-grid-container {
    flex: 1;
    min-width: 0;
}

/* Cart Icon Button */
.cart-icon-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0.5rem;
    color: var(--text-primary);
    transition: all 0.3s ease;
}

.cart-icon-btn svg {
    stroke: var(--text-primary);
}

.cart-icon-btn:hover {
    color: var(--primary-color);
}

.cart-icon-btn:hover svg {
    stroke: var(--primary-color);
}

/* Shop Section Styles */
.shop {
    padding: 4rem 0 6rem;
    background: var(--dark-bg);
    min-height: 60vh;
}

.shop-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.product-card {
    background: var(--card-bg);
    border: 1px solid rgba(167, 146, 119, 0.2);
    border-radius: 4px;
    overflow: hidden;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    position: relative;
}

.product-card:hover {
    transform: translateY(-5px);
    border-color: rgba(167, 146, 119, 0.4);
    box-shadow: 0 10px 30px rgba(167, 146, 119, 0.2);
}

.product-tags {
    position: absolute;
    top: 1rem;
    right: 1rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    z-index: 2;
}

.product-tag {
    padding: 0.4rem 0.8rem;
    border-radius: 4px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.product-tag.warbond {
    background: #ff6b35;
    color: #fff;
}

.product-tag.limited {
    background: rgba(167, 146, 119, 0.8);
    color: var(--accent-color);
}

.product-tag.new {
    background: var(--primary-color);
    color: var(--accent-color);
}

.product-image {
    width: 100%;
    height: 250px;
    background: rgba(167, 146, 119, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    position: relative;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.product-placeholder {
    font-size: 4rem;
    color: var(--text-muted);
}

.product-info {
    padding: 1.5rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.product-name {
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--text-primary);
    margin: 0 0 0.75rem 0;
    font-family: 'Rajdhani', sans-serif;
}

.product-description {
    color: var(--text-secondary);
    font-size: 0.95rem;
    margin: 0 0 1.5rem 0;
    flex: 1;
    line-height: 1.6;
}

.product-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: auto;
    padding-top: 1rem;
    border-top: 1px solid rgba(167, 146, 119, 0.1);
}

.product-price {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--accent-color);
    font-family: 'Rajdhani', sans-serif;
}

.product-price-old {
    font-size: 1.2rem;
    color: var(--text-muted);
    text-decoration: line-through;
    margin-right: 0.5rem;
}

.btn-add-cart {
    padding: 0.75rem 1.5rem;
    background: transparent;
    border: 1px solid var(--primary-color);
    color: var(--text-primary);
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 4px;
}

.btn-add-cart:hover {
    background: var(--primary-color);
    color: var(--accent-color);
}

.shop-loading {
    grid-column: 1 / -1;
    text-align: center;
    padding: 4rem;
    color: var(--text-secondary);
}

.no-products {
    grid-column: 1 / -1;
    text-align: center;
    padding: 4rem;
    color: var(--text-secondary);
    font-size: 1.2rem;
}

/* Shopping Cart Sidebar */
.cart-sidebar {
    position: fixed;
    top: 0;
    right: -400px;
    width: 380px;
    height: 100vh;
    background: var(--card-bg);
    border-left: 1px solid rgba(167, 146, 119, 0.2);
    z-index: 9998;
    display: flex;
    flex-direction: column;
    transition: right 0.3s ease;
    box-shadow: -5px 0 20px rgba(0, 0, 0, 0.3);
}

.cart-sidebar.active {
    right: 0;
}

.cart-header {
    padding: 1.5rem;
    border-bottom: 1px solid rgba(167, 146, 119, 0.2);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.cart-header h3 {
    margin: 0;
    color: var(--text-primary);
    font-size: 1.3rem;
    font-family: 'Rajdhani', sans-serif;
}

.cart-close {
    background: transparent;
    border: none;
    color: var(--text-secondary);
    font-size: 1.5rem;
    cursor: pointer;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: color 0.3s ease;
}

.cart-close:hover {
    color: var(--text-primary);
}

.cart-content {
    flex: 1;
    overflow-y: auto;
    padding: 1rem;
}

.cart-empty {
    text-align: center;
    padding: 3rem 1rem;
    color: var(--text-secondary);
}

.cart-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem;
    border-bottom: 1px solid rgba(167, 146, 119, 0.1);
    margin-bottom: 0.5rem;
}

.cart-item-info h4 {
    margin: 0 0 0.25rem 0;
    color: var(--text-primary);
    font-size: 1rem;
}

.cart-item-info p {
    margin: 0;
    color: var(--text-secondary);
    font-size: 0.85rem;
}

.cart-item-actions {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.cart-quantity-btn {
    background: rgba(167, 146, 119, 0.1);
    border: 1px solid rgba(167, 146, 119, 0.3);
    color: var(--text-primary);
    width: 28px;
    height: 28px;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.2s ease;
    font-size: 1rem;
}

.cart-quantity-btn:hover {
    background: rgba(167, 146, 119, 0.2);
}

.cart-remove-btn {
    background: transparent;
    border: none;
    color: #ff4444;
    font-size: 1.5rem;
    cursor: pointer;
    padding: 0 0.5rem;
    transition: color 0.2s ease;
}

.cart-remove-btn:hover {
    color: #ff6666;
}

.cart-footer {
    padding: 1.5rem;
    border-top: 1px solid rgba(167, 146, 119, 0.2);
}

.cart-total {
    margin-bottom: 1rem;
    font-size: 1.2rem;
    color: var(--text-primary);
    text-align: center;
}

.cart-total strong {
    color: var(--accent-color);
    font-size: 1.5rem;
}

/* Checkout Modal */
.checkout-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    z-index: 10000;
    display: none;
    align-items: center;
    justify-content: center;
}

.checkout-modal.active {
    display: flex;
}

.checkout-content {
    background: var(--card-bg);
    border: 1px solid rgba(167, 146, 119, 0.3);
    border-radius: 8px;
    padding: 2rem;
    max-width: 600px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
}

.checkout-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: transparent;
    border: none;
    color: var(--text-secondary);
    font-size: 2rem;
    cursor: pointer;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.checkout-close:hover {
    color: var(--text-primary);
}

.checkout-content h2 {
    color: var(--text-primary);
    margin: 0 0 1.5rem 0;
    font-family: 'Rajdhani', sans-serif;
}

.checkout-summary {
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid rgba(167, 146, 119, 0.2);
}

.checkout-summary h3 {
    color: var(--text-primary);
    margin-bottom: 1rem;
    font-family: 'Rajdhani', sans-serif;
}

.checkout-item {
    display: flex;
    justify-content: space-between;
    padding: 0.5rem 0;
    color: var(--text-secondary);
}

.checkout-total {
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(167, 146, 119, 0.2);
    display: flex;
    justify-content: space-between;
    font-size: 1.2rem;
    color: var(--text-primary);
}

.payment-methods {
    margin-bottom: 2rem;
}

.payment-methods h3 {
    color: var(--text-primary);
    margin-bottom: 1rem;
    font-family: 'Rajdhani', sans-serif;
}

.payment-option {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem;
    margin-bottom: 0.5rem;
    border: 1px solid rgba(167, 146, 119, 0.2);
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.payment-option:hover {
    background: rgba(167, 146, 119, 0.05);
}

.payment-option input[type="radio"] {
    width: 20px;
    height: 20px;
    cursor: pointer;
}

.payment-option label {
    color: var(--text-primary);
    cursor: pointer;
    font-size: 1rem;
}

#paypal-button-container {
    margin: 1.5rem 0;
}

#stripe-card-element {
    margin: 1.5rem 0;
    padding: 1rem;
    background: rgba(167, 146, 119, 0.05);
    border: 1px solid rgba(167, 146, 119, 0.2);
    border-radius: 4px;
}

.stripe-placeholder {
    text-align: center;
    color: var(--text-secondary);
    padding: 1rem;
}

/* Responsive */
@media (max-width: 768px) {
    .shop-hero-title {
        font-size: 3rem;
    }
    
    .category-card {
        min-width: 120px;
        height: 100px;
    }
    
    .category-icon {
        font-size: 2rem;
    }
    
    .category-text {
        font-size: 0.8rem;
    }
    
    .manufacturer-nav {
        gap: 0.5rem;
    }
    
    .manufacturer-btn {
        min-width: 80px;
        padding: 0.5rem 0.75rem;
    }
    
    .manufacturer-text {
        font-size: 0.65rem;
    }
    
    .role-nav {
        gap: 1rem;
    }
    
    .role-btn {
        padding: 0.4rem 0.75rem;
        font-size: 0.8rem;
    }
    
    .search-sort-bar {
        flex-direction: column;
        align-items: stretch;
        gap: 1rem;
    }
    
    .search-container {
        max-width: 100%;
        margin-left: 0;
    }
    
    .filter-panel {
        position: fixed;
        left: -100%;
        top: 0;
        width: 100%;
        height: 100vh;
        z-index: 9999;
        overflow-y: auto;
        transition: left 0.3s ease;
        box-shadow: 5px 0 20px rgba(0, 0, 0, 0.5);
    }
    
    .filter-panel.active {
        left: 0;
    }
    
    .vehicle-content-wrapper {
        flex-direction: column;
    }
    
    .vehicle-grid-container {
        width: 100%;
    }
    
    .cart-sidebar {
        width: 100%;
        right: -100%;
    }
    
    .shop-grid {
        grid-template-columns: 1fr;
    }
    
    .checkout-content {
        width: 95%;
        padding: 1.5rem;
    }
}

@media (max-width: 1024px) {
    .filter-panel {
        position: fixed;
        left: -100%;
        top: 0;
        width: 400px;
        min-width: 400px;
        height: 100vh;
        z-index: 9999;
        overflow-y: auto;
        transition: left 0.3s ease;
        box-shadow: 5px 0 20px rgba(0, 0, 0, 0.5);
    }
    
    .filter-panel.active {
        left: 0;
    }
    
    .vehicle-content-wrapper {
        flex-direction: column;
    }
    
    .vehicle-grid-container {
        width: 100%;
    }
    
    .shop-hero-title {
        font-size: 4rem;
    }
    
    .category-frames-wrapper {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 1.5rem;
    }
}

@media (max-width: 768px) {
    .shop-hero {
        min-height: 40vh;
    }
    
    .shop-hero-title {
        font-size: 3rem;
        letter-spacing: 2px;
    }
    
    .category-frames-wrapper {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .category-frame {
        padding: 2rem;
    }
    
    .category-frame .shop-page-icon {
        width: 80px;
        height: 80px;
        font-size: 3rem;
    }
    
    .category-frame .shop-page-title {
        font-size: 1.5rem;
    }
}
