/* Store Page Styles */
:root {
  --golden: #d4af37;
  --golden-light: #f8e9a1;
  --golden-dark: #b8860b;
  --black: #121212;
  --dark-gray: #1a1a1a;
  --light-gray: #333333;
}

/* Hero Section */
.store-hero-section {
    padding: 180px 0 100px;
    background-color: var(--black);
    position: relative;
    overflow: hidden;
}

.store-hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('/images/hero/5.webp');
    background-size: cover;
    background-position: center;
    opacity: 0.4;
    z-index: -1;
}

.store-hero-section h1 {
    font-size: 4rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-shadow: 0px 2px 10px rgba(0, 0, 0, 0.5);
}

.hero-subtitle {
    font-size: 1.5rem;
    color: #ccc;
    margin-bottom: 2.5rem;
}

.text-highlight {
    color: var(--golden);
    position: relative;
}

.text-highlight::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 0;
    width: 100%;
    height: 10px;
    background: rgba(212, 175, 55, 0.2);
    z-index: -1;
    transform: skewX(-15deg);
}

.hero-features {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-top: 2rem;
}

.hero-feature {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
}

.hero-feature i {
    font-size: 2.5rem;
    color: var(--golden);
}

.hero-feature span {
    font-size: 1.2rem;
    color: #fff;
    font-weight: 500;
}

/* Section Styles */
section {
    padding: 80px 0;
    position: relative;
    background-color: var(--dark-gray);
}

section:nth-child(even) {
    background-color: var(--black);
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    font-size: 2.8rem;
    font-weight: 700;
    color: white;
    margin-bottom: 1rem;
    position: relative;
    display: inline-block;
    text-transform: uppercase;
    background: linear-gradient(to right, var(--golden-dark), var(--golden), var(--golden-dark));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    letter-spacing: 2px;
}

.section-header h2:after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(to right, transparent, var(--golden), transparent);
    border-radius: 5px;
}

.section-header p {
    font-size: 1.2rem;
    color: #b0b0b0;
    max-width: 800px;
    margin: 0 auto;
}

/* Fancy Separator */
.fancy-separator {
    height: 4px;
    width: 80px;
    background: linear-gradient(to right, var(--golden-dark), var(--golden), var(--golden-dark));
    margin: 0 auto 25px;
    border-radius: 2px;
    box-shadow: 0 0 10px rgba(212, 175, 55, 0.7);
    animation: pulse-gold 2s infinite alternate;
}

.fancy-separator::before, .fancy-separator::after {
    content: '';
    position: absolute;
    width: 15px;
    height: 4px;
    background: var(--golden);
    top: 0;
    border-radius: 2px;
    box-shadow: 0 0 8px rgba(212, 175, 55, 0.5);
}

.fancy-separator::before {
    left: -25px;
}

.fancy-separator::after {
    right: -25px;
}

@keyframes pulse-gold {
    0% {
        box-shadow: 0 0 5px rgba(212, 175, 55, 0.5);
    }
    100% {
        box-shadow: 0 0 15px rgba(212, 175, 55, 0.8);
    }
}

/* HTB Content (Header Top Bottom) */
.htb-content {
    text-align: center;
    margin-bottom: 50px;
}

.htb-item-subtitle {
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 2px;
    color: var(--golden);
    margin-bottom: 10px;
    text-transform: uppercase;
    text-shadow: 0 0 10px rgba(212, 175, 55, 0.5);
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 15px;
    background: linear-gradient(to right, var(--golden-dark), var(--golden), var(--golden-dark));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    letter-spacing: 2px;
}

.section-description {
    font-size: 1.1rem;
    color: #b0b0b0;
    max-width: 800px;
    margin: 0 auto 30px;
    line-height: 1.6;
}

/* Buttons */
.hero-btn {
    padding: 12px 30px;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    display: inline-block;
}

.hero-btn.primary {
    background: linear-gradient(145deg, var(--golden), var(--golden-dark));
    color: var(--black);
    border: none;
    box-shadow: 0 10px 30px rgba(184, 134, 11, 0.3);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.hero-btn.primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(145deg, var(--golden-dark), var(--golden));
    transition: all 0.4s ease;
    z-index: -1;
}

.hero-btn.primary:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(184, 134, 11, 0.5);
    color: var(--black);
}

.hero-btn.primary:hover::before {
    left: 0;
}

.hero-btn.secondary {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.hero-btn.secondary:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}

/* Points Section */
.points-section {
    background-color: var(--black);
    position: relative;
}

.points-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('https://www.transparenttextures.com/patterns/carbon-fibre.png');
    opacity: 0.1;
    z-index: 0;
}

.points-card {
    background-color: rgba(51, 51, 51, 0.5);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 15px;
    padding: 30px 20px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    transition: all 0.5s ease;
    position: relative;
    height: 100%;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    border: 1px solid rgba(212, 175, 55, 0.1);
    margin-bottom: 30px;
}

.points-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
    border-color: rgba(212, 175, 55, 0.3);
}

.points-card::before {
    content: '';
    position: absolute;
    top: -100%;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.1) 0%, transparent 100%);
    transition: all 0.7s ease;
}

.points-card:hover::before {
    top: 0;
    left: 0;
}

.points-card.featured {
    border: 2px solid var(--golden);
    transform: scale(1.05);
}

.points-card.featured:hover {
    transform: scale(1.05) translateY(-10px);
}

.points-card-badge {
    position: absolute;
    top: 20px;
    right: -35px;
    background: var(--golden);
    color: var(--black);
    font-size: 0.8rem;
    font-weight: 600;
    padding: 5px 40px;
    transform: rotate(45deg);
    z-index: 1;
}

.points-card-icon {
    width: 80px;
    height: 80px;
    background: rgba(212, 175, 55, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    transition: all 0.5s ease;
}

.points-card:hover .points-card-icon {
    transform: scale(1.1) rotate(10deg);
}

.points-card-icon i {
    font-size: 2.5rem;
    color: var(--golden);
}

.points-amount {
    font-size: 2.8rem;
    font-weight: 700;
    color: white;
    margin-bottom: 5px;
}

.points-name {
    font-size: 1.1rem;
    color: #b0b0b0;
    margin-bottom: 10px;
}

.points-price {
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--golden);
    margin-bottom: 5px;
}

.points-bonus {
    font-size: 0.9rem;
    color: #28a745;
    font-weight: 600;
    margin-bottom: 20px;
}

.points-features {
    list-style: none;
    padding: 0;
    margin: 20px 0;
    flex-grow: 1;
}

.points-features li {
    font-size: 0.95rem;
    color: #b0b0b0;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.points-features li i {
    color: #28a745;
    margin-right: 8px;
}

/* Vehicles Section */
.vehicles-section {
    background-color: var(--dark-gray);
    position: relative;
}

.vehicles-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('https://www.transparenttextures.com/patterns/carbon-fibre.png');
    opacity: 0.1;
    z-index: 0;
}

.vehicle-filters {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

.filter-btn {
    background: transparent;
    border: 2px solid rgba(212, 175, 55, 0.3);
    border-radius: 30px;
    padding: 8px 25px;
    margin: 0 8px 10px;
    font-size: 0.95rem;
    font-weight: 600;
    color: #b0b0b0;
    cursor: pointer;
    transition: all 0.3s ease;
}

.filter-btn:hover,
.filter-btn.active {
    background: var(--golden);
    border-color: var(--golden);
    color: var(--black);
    box-shadow: 0 0 15px rgba(212, 175, 55, 0.5);
}

.vehicle-card {
    background-color: rgba(51, 51, 51, 0.5);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    transition: all 0.5s ease;
    margin-bottom: 30px;
    border: 1px solid rgba(212, 175, 55, 0.1);
    position: relative;
}

.vehicle-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
    border-color: rgba(212, 175, 55, 0.3);
}

.vehicle-card::before {
    content: '';
    position: absolute;
    top: -100%;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.1) 0%, transparent 100%);
    transition: all 0.7s ease;
    z-index: 1;
}

.vehicle-card:hover::before {
    top: 0;
    left: 0;
}

.vehicle-image {
    position: relative;
    overflow: hidden;
    height: 220px;
}

.vehicle-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.vehicle-card:hover .vehicle-image img {
    transform: scale(1.1);
}

.vehicle-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background: rgba(0, 0, 0, 0.7);
    color: #fff;
    padding: 5px 15px;
    border-radius: 30px;
    font-size: 0.8rem;
    font-weight: 600;
    z-index: 2;
}

.vehicle-price {
    position: absolute;
    bottom: 15px;
    right: 15px;
    background: rgba(212, 175, 55, 0.9);
    color: var(--black);
    padding: 5px 15px;
    border-radius: 30px;
    font-size: 0.9rem;
    font-weight: 700;
    z-index: 2;
}

.vehicle-details {
    padding: 25px;
}

.vehicle-details h3 {
    font-size: 1.4rem;
    font-weight: 700;
    color: white;
    margin-bottom: 15px;
}

.vehicle-specs {
    display: flex;
    justify-content: space-between;
    margin-bottom: 15px;
    padding: 10px 0;
    border-top: 1px solid rgba(212, 175, 55, 0.1);
    border-bottom: 1px solid rgba(212, 175, 55, 0.1);
}

.spec {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.spec i {
    font-size: 1.2rem;
    color: var(--golden);
    margin-bottom: 5px;
}

.spec span {
    font-size: 0.85rem;
    color: #b0b0b0;
    font-weight: 600;
}

.vehicle-details p {
    font-size: 0.95rem;
    color: #b0b0b0;
    margin-bottom: 20px;
    line-height: 1.6;
}

.vehicle-btn {
    display: block;
    width: 100%;
    padding: 12px;
    background: var(--golden);
    color: var(--black);
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    text-align: center;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.vehicle-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, var(--golden-dark), var(--golden));
    transition: all 0.4s ease;
    z-index: -1;
}

.vehicle-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.4);
}

.vehicle-btn:hover::before {
    left: 0;
}

/* Skins Section */
.skins-section {
    background-color: var(--black);
    position: relative;
}

.skins-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('https://www.transparenttextures.com/patterns/carbon-fibre.png');
    opacity: 0.1;
    z-index: 0;
}

.skin-card {
    background-color: rgba(51, 51, 51, 0.5);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    transition: all 0.5s ease;
    margin-bottom: 30px;
    height: 100%;
    border: 1px solid rgba(212, 175, 55, 0.1);
    position: relative;
}

.skin-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
    border-color: rgba(212, 175, 55, 0.3);
}

.skin-card::before {
    content: '';
    position: absolute;
    top: -100%;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.1) 0%, transparent 100%);
    transition: all 0.7s ease;
    z-index: 1;
}

.skin-card:hover::before {
    top: 0;
    left: 0;
}

.skin-image {
    position: relative;
    overflow: hidden;
    height: 300px;
}

.skin-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.skin-card:hover .skin-image img {
    transform: scale(1.1);
}

.skin-price {
    position: absolute;
    bottom: 15px;
    right: 15px;
    background: rgba(212, 175, 55, 0.9);
    color: var(--black);
    padding: 5px 15px;
    border-radius: 30px;
    font-size: 0.9rem;
    font-weight: 700;
    z-index: 2;
}

.skin-details {
    padding: 25px;
}

.skin-details h3 {
    font-size: 1.4rem;
    font-weight: 700;
    color: white;
    margin-bottom: 15px;
}

.skin-details p {
    font-size: 0.95rem;
    color: #b0b0b0;
    margin-bottom: 20px;
    line-height: 1.6;
}

.skin-btn {
    display: block;
    width: 100%;
    padding: 12px;
    background: var(--golden);
    color: var(--black);
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    text-align: center;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.skin-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, var(--golden-dark), var(--golden));
    transition: all 0.4s ease;
    z-index: -1;
}

.skin-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.4);
}

.skin-btn:hover::before {
    left: 0;
}

/* Properties Section */
.properties-section {
    background-color: var(--dark-gray);
    position: relative;
}

.properties-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('https://www.transparenttextures.com/patterns/carbon-fibre.png');
    opacity: 0.1;
    z-index: 0;
}

.property-card {
    background-color: rgba(51, 51, 51, 0.5);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    transition: all 0.5s ease;
    margin-bottom: 30px;
    border: 1px solid rgba(212, 175, 55, 0.1);
    position: relative;
}

.property-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
    border-color: rgba(212, 175, 55, 0.3);
}

.property-card::before {
    content: '';
    position: absolute;
    top: -100%;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.1) 0%, transparent 100%);
    transition: all 0.7s ease;
    z-index: 1;
}

.property-card:hover::before {
    top: 0;
    left: 0;
}

.property-card.featured {
    border: 2px solid var(--golden);
}

.property-badge {
    position: absolute;
    top: 20px;
    left: 20px;
    background: var(--golden);
    color: var(--black);
    padding: 8px 20px;
    border-radius: 30px;
    font-size: 0.9rem;
    font-weight: 700;
    z-index: 2;
}

.property-image {
    position: relative;
    overflow: hidden;
    height: 250px;
}

.property-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.property-card:hover .property-image img {
    transform: scale(1.1);
}

.property-details {
    padding: 30px;
}

.property-details h3 {
    font-size: 1.6rem;
    font-weight: 700;
    color: white;
    margin-bottom: 15px;
}

.property-features {
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 20px;
    padding: 15px 0;
    border-bottom: 1px solid rgba(212, 175, 55, 0.1);
}

.feature {
    display: flex;
    align-items: center;
    margin-right: 25px;
    margin-bottom: 10px;
}

.feature i {
    font-size: 1.1rem;
    color: var(--golden);
    margin-right: 8px;
}

.property-details p {
    font-size: 1rem;
    color: #b0b0b0;
    margin-bottom: 20px;
    line-height: 1.7;
}

.property-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.property-price {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--golden);
}

.property-btn {
    padding: 10px 25px;
    background: var(--golden);
    color: var(--black);
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.property-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, var(--golden-dark), var(--golden));
    transition: all 0.4s ease;
    z-index: -1;
}

.property-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.4);
}

.property-btn:hover::before {
    left: 0;
}

/* Donation Section */
.donation-section {
    background-color: var(--black);
    position: relative;
    overflow: hidden;
}

.donation-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('https://www.transparenttextures.com/patterns/carbon-fibre.png');
    opacity: 0.1;
    z-index: 0;
}

.donation-content {
    position: relative;
    z-index: 1;
    padding-right: 30px;
}

.donation-content h3 {
    font-size: 2rem;
    font-weight: 700;
    color: white;
    margin-bottom: 20px;
}

.donation-content p {
    font-size: 1.1rem;
    color: #b0b0b0;
    margin-bottom: 30px;
    line-height: 1.7;
}

.donation-benefits {
    margin-bottom: 30px;
}

.benefit-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 25px;
}

.benefit-icon {
    width: 50px;
    height: 50px;
    background: rgba(212, 175, 55, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 20px;
    flex-shrink: 0;
}

.benefit-icon i {
    font-size: 1.5rem;
    color: var(--golden);
}

.benefit-info h4 {
    font-size: 1.2rem;
    font-weight: 600;
    color: white;
    margin-bottom: 5px;
}

.benefit-info p {
    font-size: 1rem;
    color: #b0b0b0;
    margin-bottom: 0;
}

.donation-note {
    background: rgba(212, 175, 55, 0.1);
    border-left: 4px solid var(--golden);
    padding: 15px 20px;
    border-radius: 5px;
}

.donation-note p {
    margin-bottom: 0;
    font-size: 1rem;
    display: flex;
    align-items: center;
}

.donation-note i {
    color: var(--golden);
    font-size: 1.2rem;
    margin-right: 10px;
}

.donation-info-container {
    background-color: rgba(51, 51, 51, 0.5);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 15px;
    padding: 40px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    position: relative;
    z-index: 1;
    border: 1px solid rgba(212, 175, 55, 0.1);
}

.donation-info-container h3 {
    font-size: 1.8rem;
    font-weight: 700;
    color: white;
    margin-bottom: 30px;
    text-align: center;
}

.donation-info-item {
    margin-bottom: 25px;
    padding-bottom: 25px;
    border-bottom: 1px solid rgba(212, 175, 55, 0.1);
}

.donation-info-item:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.donation-info-item h4 {
    font-size: 1.2rem;
    font-weight: 600;
    color: white;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
}

.donation-info-item h4 i {
    color: var(--golden);
    margin-right: 10px;
    font-size: 1.4rem;
}

.donation-info-item p {
    font-size: 1.05rem;
    color: #b0b0b0;
    margin-bottom: 10px;
    line-height: 1.6;
}

.donation-info-value {
    background: rgba(212, 175, 55, 0.1);
    padding: 12px 15px;
    border-radius: 5px;
    margin: 15px 0;
    font-family: 'Courier New', monospace;
    font-size: 1.1rem;
    color: var(--golden);
    border-left: 3px solid var(--golden);
    word-wrap: break-word;
}

/* FAQs Section */
.faqs-section {
    background-color: var(--dark-gray);
    position: relative;
}

.faqs-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('https://www.transparenttextures.com/patterns/carbon-fibre.png');
    opacity: 0.1;
    z-index: 0;
}

.faq-item {
    margin-bottom: 20px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(212, 175, 55, 0.1);
    position: relative;
    z-index: 1;
}

.faq-header {
    width: 100%;
}

.faq-button {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 25px;
    background-color: rgba(51, 51, 51, 0.5);
    border: none;
    text-align: left;
    font-size: 1.1rem;
    font-weight: 600;
    color: white;
    cursor: pointer;
    transition: all 0.3s ease;
}

.faq-button:hover,
.faq-button:not(.collapsed) {
    background-color: rgba(212, 175, 55, 0.1);
    color: var(--golden);
}

.faq-button i {
    transition: transform 0.3s ease;
    color: var(--golden);
}

.faq-button:not(.collapsed) i {
    transform: rotate(180deg);
}

.faq-body {
    padding: 20px 25px;
    font-size: 1rem;
    color: #b0b0b0;
    background-color: rgba(30, 30, 30, 0.8);
    line-height: 1.7;
}

/* Scroll Progress */
.scroll-progress-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: rgba(255, 255, 255, 0.1);
    z-index: 9999;
}

.scroll-progress-bar {
    height: 100%;
    background: linear-gradient(to right, var(--golden-dark), var(--golden));
    width: 0%;
    transition: width 0.1s ease;
    box-shadow: 0 0 10px rgba(212, 175, 55, 0.5);
}

/* Custom Cursor */
.cursor-dot,
.cursor-outline {
    pointer-events: none;
    position: fixed;
    top: 0;
    left: 0;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 9999;
}

.cursor-dot {
    width: 8px;
    height: 8px;
    background-color: var(--golden);
}

.cursor-outline {
    width: 40px;
    height: 40px;
    border: 2px solid var(--golden);
    transition: width 0.3s ease, height 0.3s ease, border-color 0.3s ease;
}

/* Particle JS */
.particles-js {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    pointer-events: none;
}

/* Responsive Adjustments */
@media (max-width: 992px) {
    .hero-features {
        gap: 2rem;
    }
    
    .vehicle-card,
    .skin-card,
    .property-card {
        margin-bottom: 30px;
    }
    
    .donation-content {
        padding-right: 0;
        margin-bottom: 50px;
    }
}

@media (max-width: 768px) {
    .store-hero-section h1 {
        font-size: 3rem;
    }
    
    .hero-features {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .section-header h2 {
        font-size: 2.2rem;
    }
}

@media (max-width: 576px) {
    .store-hero-section h1 {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
    }
    
    .filter-btn {
        margin: 0 5px 10px;
        padding: 8px 15px;
        font-size: 0.85rem;
    }
    
    .section-header h2 {
        font-size: 1.8rem;
    }
}
