.card {
    background-color: white;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-sm);
    overflow: hidden;
    transition: var(--transition);
}

.card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-3px);
}

.card-image {
    width: 100%;
    height: 200px;
    overflow: hidden;
}

.card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.card:hover .card-image img {
    transform: scale(1.05);
}

.card-content {
    padding: 20px;
}

.card-title {
    font-size: 18px;
    font-weight: bold;
    color: var(--text-color);
    margin-bottom: 10px;
}

.card-text {
    font-size: 14px;
    color: var(--text-light);
    line-height: 1.6;
}

.card-footer {
    padding: 15px 20px;
    border-top: 1px solid var(--border-color);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.card-price {
    font-size: 24px;
    font-weight: bold;
    color: var(--danger-color);
}

.card-meta {
    display: flex;
    gap: 10px;
}

.icon-box {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--secondary-color), var(--warning-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 24px;
    margin-bottom: 15px;
}

.icon-box-secondary {
    background: linear-gradient(135deg, var(--accent-color), #2ECC71);
}

.icon-box-primary {
    background: linear-gradient(135deg, var(--primary-color), #34495E);
}

.stat-card {
    background-color: white;
    border-radius: var(--border-radius);
    padding: 30px;
    box-shadow: var(--shadow-sm);
    display: flex;
    align-items: center;
    gap: 20px;
}

.stat-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 36px;
    color: white;
}

.stat-icon.primary {
    background: linear-gradient(135deg, var(--primary-color), #34495E);
}

.stat-icon.secondary {
    background: linear-gradient(135deg, var(--secondary-color), var(--warning-color));
}

.stat-icon.accent {
    background: linear-gradient(135deg, var(--accent-color), #2ECC71);
}

.stat-icon.danger {
    background: linear-gradient(135deg, var(--danger-color), #C0392B);
}

.stat-info h3 {
    font-size: 32px;
    font-weight: bold;
    color: var(--text-color);
    margin-bottom: 5px;
}

.stat-info p {
    font-size: 14px;
    color: var(--text-light);
}

.progress-bar {
    width: 100%;
    height: 10px;
    background-color: var(--background-color);
    border-radius: 5px;
    overflow: hidden;
}

.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--secondary-color), var(--warning-color));
    transition: width 0.3s ease;
}

.stepper {
    display: flex;
    justify-content: space-between;
    margin-bottom: 40px;
    position: relative;
}

.stepper::before {
    content: '';
    position: absolute;
    top: 20px;
    left: 10%;
    right: 10%;
    height: 3px;
    background-color: var(--border-color);
}

.step {
    text-align: center;
    position: relative;
    z-index: 1;
    flex: 1;
}

.step-number {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: var(--border-color);
    color: var(--text-light);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    margin: 0 auto 10px;
    transition: var(--transition);
}

.step.active .step-number,
.step.completed .step-number {
    background-color: var(--secondary-color);
    color: white;
}

.step-label {
    font-size: 14px;
    color: var(--text-light);
    font-weight: 500;
}

.step.active .step-label,
.step.completed .step-label {
    color: var(--text-color);
}

.testimonial-card {
    background-color: white;
    border-radius: var(--border-radius);
    padding: 30px;
    box-shadow: var(--shadow-sm);
    position: relative;
}

.testimonial-card::before {
    content: '"';
    font-size: 80px;
    color: var(--secondary-color);
    opacity: 0.2;
    position: absolute;
    top: 10px;
    left: 20px;
    font-family: serif;
    line-height: 1;
}

.testimonial-content {
    font-size: 16px;
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
}

.testimonial-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    overflow: hidden;
}

.testimonial-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.testimonial-name {
    font-weight: bold;
    color: var(--text-color);
    margin-bottom: 3px;
}

.testimonial-title {
    font-size: 13px;
    color: var(--text-light);
}

.testimonial-rating {
    color: var(--warning-color);
    margin-top: 5px;
}

.price-table {
    width: 100%;
    background-color: white;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}

.price-table table {
    width: 100%;
    border-collapse: collapse;
}

.price-table th,
.price-table td {
    padding: 15px;
    text-align: left;
    border-bottom: 1px solid var(--border-color);
}

.price-table th {
    background-color: var(--background-color);
    font-weight: 600;
    color: var(--text-color);
}

.price-table tr:hover {
    background-color: var(--background-color);
}

.spec-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
}

.spec-item {
    display: flex;
    justify-content: space-between;
    padding: 12px;
    background-color: var(--background-color);
    border-radius: var(--border-radius);
}

.spec-label {
    color: var(--text-light);
    font-size: 14px;
}

.spec-value {
    font-weight: 500;
    color: var(--text-color);
    font-size: 14px;
}

.rating-stars {
    display: flex;
    gap: 3px;
    color: var(--warning-color);
}

.rating-stars i {
    font-size: 16px;
}

.rating-number {
    font-weight: bold;
    color: var(--text-color);
    margin-left: 5px;
}

.tag-list {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.tag {
    padding: 6px 12px;
    background-color: var(--background-color);
    border-radius: 20px;
    font-size: 13px;
    color: var(--text-color);
    cursor: pointer;
    transition: var(--transition);
}

.tag:hover {
    background-color: var(--secondary-color);
    color: white;
}

.tag.active {
    background-color: var(--secondary-color);
    color: white;
}

.badge-list {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.badge-item {
    padding: 8px 15px;
    background-color: var(--background-color);
    border: 2px solid var(--border-color);
    border-radius: var(--border-radius);
    font-size: 14px;
    cursor: pointer;
    transition: var(--transition);
}

.badge-item:hover {
    border-color: var(--secondary-color);
    background-color: rgba(230, 126, 34, 0.1);
}

.badge-item.active {
    border-color: var(--secondary-color);
    background-color: var(--secondary-color);
    color: white;
}

.avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    overflow: hidden;
}

.avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.avatar.lg {
    width: 60px;
    height: 60px;
}

.avatar.xl {
    width: 100px;
    height: 100px;
}

.avatar-group {
    display: flex;
}

.avatar-group .avatar {
    border: 2px solid white;
    margin-left: -10px;
}

.avatar-group .avatar:first-child {
    margin-left: 0;
}

.list-group {
    background-color: white;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}

.list-group-item {
    padding: 15px 20px;
    display: flex;
    align-items: center;
    gap: 15px;
    border-bottom: 1px solid var(--border-color);
    transition: var(--transition);
}

.list-group-item:last-child {
    border-bottom: none;
}

.list-group-item:hover {
    background-color: var(--background-color);
}

.list-group-icon {
    width: 40px;
    height: 40px;
    background-color: var(--background-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--secondary-color);
}

.list-group-content {
    flex: 1;
}

.list-group-title {
    font-weight: 500;
    color: var(--text-color);
    margin-bottom: 3px;
}

.list-group-text {
    font-size: 13px;
    color: var(--text-light);
}

.list-group-action {
    color: var(--secondary-color);
    font-weight: 500;
}

.timeline {
    position: relative;
    padding-left: 30px;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 10px;
    top: 0;
    bottom: 0;
    width: 2px;
    background-color: var(--border-color);
}

.timeline-item {
    position: relative;
    margin-bottom: 30px;
}

.timeline-item::before {
    content: '';
    position: absolute;
    left: -25px;
    top: 5px;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: var(--secondary-color);
    border: 3px solid white;
    box-shadow: var(--shadow-sm);
}

.timeline-content {
    background-color: white;
    padding: 20px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-sm);
}

.timeline-date {
    font-size: 13px;
    color: var(--text-light);
    margin-bottom: 8px;
}

.timeline-title {
    font-weight: bold;
    color: var(--text-color);
    margin-bottom: 5px;
}

.timeline-text {
    font-size: 14px;
    color: var(--text-light);
    line-height: 1.6;
}

.chart-container {
    background-color: white;
    padding: 20px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-sm);
}

.chart-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.chart-title {
    font-size: 18px;
    font-weight: bold;
    color: var(--text-color);
}

.chart-legend {
    display: flex;
    gap: 20px;
}

.legend-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: var(--text-light);
}

.legend-color {
    width: 12px;
    height: 12px;
    border-radius: 2px;
}

.counter {
    display: flex;
    align-items: center;
    gap: 10px;
}

.counter-btn {
    width: 30px;
    height: 30px;
    background-color: var(--background-color);
    border: 1px solid var(--border-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
}

.counter-btn:hover {
    background-color: var(--secondary-color);
    color: white;
    border-color: var(--secondary-color);
}

.counter-value {
    min-width: 40px;
    text-align: center;
    font-weight: bold;
    font-size: 16px;
}

.slider {
    position: relative;
    overflow: hidden;
}

.slider-container {
    display: flex;
    transition: transform 0.5s ease;
}

.slider-slide {
    min-width: 100%;
}

.slider-controls {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
}

.slider-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: rgba(255,255,255,0.5);
    cursor: pointer;
    transition: var(--transition);
}

.slider-dot.active {
    background-color: var(--secondary-color);
}

.slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    background-color: rgba(255,255,255,0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
    box-shadow: var(--shadow-md);
}

.slider-arrow:hover {
    background-color: white;
    box-shadow: var(--shadow-lg);
}

.slider-arrow.prev {
    left: 20px;
}

.slider-arrow.next {
    right: 20px;
}

.lightbox {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0,0,0,0.9);
    z-index: 10000;
    display: none;
    align-items: center;
    justify-content: center;
}

.lightbox.show {
    display: flex;
}

.lightbox-content {
    max-width: 90%;
    max-height: 90%;
}

.lightbox-close {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 50px;
    height: 50px;
    background-color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 24px;
}

.scroll-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background-color: var(--secondary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: var(--shadow-lg);
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    z-index: 1000;
}

.scroll-to-top.show {
    opacity: 1;
    visibility: visible;
}

.scroll-to-top:hover {
    background-color: var(--primary-color);
    transform: translateY(-5px);
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: var(--primary-color);
    color: white;
    padding: 20px;
    z-index: 9999;
    display: none;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.cookie-banner.show {
    display: flex;
}

.cookie-text {
    flex: 1;
    font-size: 14px;
}

.cookie-buttons {
    display: flex;
    gap: 10px;
}

.cookie-buttons button {
    padding: 10px 20px;
    border-radius: var(--border-radius);
    font-size: 14px;
}

.cookie-buttons .accept {
    background-color: var(--secondary-color);
    color: white;
}

.cookie-buttons .decline {
    background-color: transparent;
    color: white;
    border: 2px solid white;
}

.back-to-home {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    background-color: var(--secondary-color);
    color: white;
    border-radius: var(--border-radius);
    font-weight: 500;
    transition: var(--transition);
}

.back-to-home:hover {
    background-color: #D35400;
    color: white;
    transform: translateY(-2px);
}

.quick-view {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    opacity: 0;
    transition: var(--transition);
}

.product-card:hover .quick-view {
    opacity: 1;
}

.quick-view-btn {
    padding: 10px 20px;
    background-color: white;
    color: var(--text-color);
    border-radius: var(--border-radius);
    font-weight: 500;
    box-shadow: var(--shadow-md);
}

.quick-view-btn:hover {
    background-color: var(--secondary-color);
    color: white;
}

.wishlist-btn {
    position: relative;
}

.wishlist-btn.active i {
    color: var(--danger-color);
}

.wishlist-btn.active i::before {
    content: '\f004';
}

.comparison-table {
    width: 100%;
    background-color: white;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}

.comparison-table table {
    width: 100%;
    border-collapse: collapse;
}

.comparison-table th,
.comparison-table td {
    padding: 15px;
    text-align: center;
    border-bottom: 1px solid var(--border-color);
    border-right: 1px solid var(--border-color);
}

.comparison-table th:last-child,
.comparison-table td:last-child {
    border-right: none;
}

.comparison-table th {
    background-color: var(--background-color);
    font-weight: 600;
}

.comparison-table tr:hover {
    background-color: rgba(230, 126, 34, 0.05);
}

.feature-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.feature-icon {
    width: 24px;
    height: 24px;
    background-color: var(--accent-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    flex-shrink: 0;
}

.feature-text {
    flex: 1;
    font-size: 14px;
    color: var(--text-color);
    line-height: 1.6;
}

.help-card {
    background-color: white;
    border-radius: var(--border-radius);
    padding: 30px;
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.help-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.help-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--secondary-color), var(--warning-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 36px;
    margin: 0 auto 20px;
}

.help-title {
    font-size: 20px;
    font-weight: bold;
    color: var(--text-color);
    margin-bottom: 10px;
}

.help-text {
    font-size: 14px;
    color: var(--text-light);
    line-height: 1.6;
}
