/* Base Styles */
:root {
    --primary-color: #263484;
    --primary-hover: #7785c3;
    --secondary-color: #7785c3;
    --text-color: #333333;
    --text-light: #757575;
    --border-color: #c5c6e5;
    --background-light: #f5f5f5;
    --success-color: #4caf50;
    --warning-color: #ff9800;
    --error-color: #f44336;
    --white: #ffffff;
    --shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    --transition: all 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: var(--text-color);
    line-height: 1.6;
    background-color: var(--background-light);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

a {
    text-decoration: none;
    color: var(--text-color);
    transition: var(--transition);
}

a:hover {
    color: var(--primary-color);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
}

button {
    cursor: pointer;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
}

h1 {
    font-size: 2.5rem;
}

h2 {
    font-size: 2rem;
}

h3 {
    font-size: 1.5rem;
}

h4 {
    font-size: 1.25rem;
}

p {
    /*margin-bottom: 1rem;*/
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    border-radius: 4px;
    font-weight: 600;
    text-align: center;
    transition: var(--transition);
    border: none;
    cursor: pointer;
}

.btn-primary {
    background-color: var(--primary-color);
    color: var(--white);
}

.btn-primary:hover {
    background-color: var(--primary-hover);
    color: var(--white);
}

.btn-outline {
    background-color: transparent;
    border: 1px solid var(--border-color);
    color: var(--white);
}

.btn-outline:hover {
    background-color: var(--background-light);
}

/* Header */
.header {
    background-color: var(--white);
    box-shadow: var(--shadow);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.top-bar {
    background-color: var(--secondary-color);
    color: var(--white);
    padding: 0.5rem 0;
    font-size: 0.875rem;
}

.top-bar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.top-links a {
    color: var(--white);
    margin-left: 1rem;
}

.top-links a:hover {
    text-decoration: underline;
}

.main-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
}

.logo h1 {
    font-size: 1.75rem;
    margin-bottom: 0;
}

.logo span {
    color: var(--primary-color);
}

.search-bar {
    flex: 1;
    max-width: 500px;
    margin: 0 2rem;
}

.search-bar form {
    display: flex;
    position: relative;
}

.search-bar input {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 1px solid var(--border-color);
    border-radius: 4px;
    font-size: 1rem;
}

.search-bar button {
    position: absolute;
    right: 0;
    top: 0;
    height: 100%;
    padding: 0 1rem;
    background: none;
    border: none;
    color: var(--text-light);
}

.header-actions {
    display: flex;
    align-items: center;
}

.header-actions a {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-left: 1.5rem;
    font-size: 0.875rem;
}

.header-actions a i {
    font-size: 1.25rem;
    margin-bottom: 0.25rem;
}

.cart-link {
    position: relative;
}

.cart-count {
    position: absolute;
    top: -8px;
    right: -8px;
    background-color: var(--primary-color);
    color: var(--white);
    font-size: 0.75rem;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.mobile-menu-toggle {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
}

.main-nav {
    background-color: var(--background-light);
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}

.nav-links {
    display: flex;
}

.nav-links li {
    position: relative;
}

.nav-links li a {
    display: block;
    padding: 1rem;
    font-weight: 500;
}

.nav-links li a.active {
    color: var(--primary-color);
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background-color: var(--white);
    box-shadow: var(--shadow);
    min-width: 200px;
    border-radius: 4px;
    display: none;
    z-index: 100;
}

.dropdown:hover .dropdown-menu {
    display: block;
}

.dropdown-menu li a {
    padding: 0.75rem 1rem;
}

.mobile-nav {
    position: fixed;
    top: 0;
    left: -100%;
    width: 80%;
    max-width: 300px;
    height: 100%;
    background-color: var(--white);
    z-index: 2000;
    overflow-y: auto;
    transition: left 0.3s ease;
    box-shadow: var(--shadow);
    padding: 1rem;
}

.mobile-nav.active {
    left: 0;
}

.close-menu {
    text-align: right;
    font-size: 1.5rem;
    margin-bottom: 1rem;
    cursor: pointer;
}

.mobile-nav-links li {
    border-bottom: 1px solid var(--border-color);
}

.mobile-nav-links li a {
    display: block;
    padding: 1rem 0;
}

.mobile-dropdown-menu {
    display: none;
    padding-left: 1rem;
}

.mobile-dropdown.active .mobile-dropdown-menu {
    display: block;
}

/* Hero Banner */
.hero-banner {
    background-image: url('../img/banners/handel-banner-home.png');
    background-size: cover;
    background-position: center;
    color: var(--white);
    position: relative;
    height: 500px;
    display: flex;
    align-items: center;
}

.hero-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.3));
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 600px;
}

.hero-content h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.hero-content p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
}

/* Features */
.features {
    padding: 3rem 0;
    background-color: var(--white);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.feature-item {
    display: flex;
    align-items: center;
}

.feature-icon {
    width: 60px;
    height: 60px;
    background-color: rgb(194 203 230);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-right: 1rem;
    color: var(--primary-color);
    font-size: 1.5rem;
}

.feature-content h3 {
    font-size: 1.125rem;
    margin-bottom: 0.25rem;
}

.feature-content p {
    font-size: 0.875rem;
    color: var(--text-light);
    margin-bottom: 0;
}

/* Categories */
.categories {
    padding: 3rem 0;
}

.section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
}

.view-all {
    display: flex;
    align-items: center;
    font-weight: 500;
    color: var(--primary-color);
}

.view-all i {
    margin-left: 0.5rem;
}

.categories-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

.category-card {
    background-color: var(--white);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.category-card:hover {
    transform: translateY(-5px);
}

.category-image {
    height: 200px;
    overflow: hidden;
}

.category-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.category-card:hover .category-image img {
    transform: scale(1.05);
}

.category-content {
    padding: 1.5rem;
    text-align: center;
}

.category-content h3 {
    margin-bottom: 0.5rem;
}

.category-content p {
    color: var(--text-light);
    margin-bottom: 0;
}

/* Featured Products */
.featured-products {
    padding: 3rem 0;
    background-color: var(--white);
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

.product-card {
    background-color: var(--white);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    position: relative;
}

.product-card:hover {
    transform: translateY(-5px);
}

.product-image {
    height: 200px;
    overflow: hidden;
    position: relative;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: var(--transition);
}

.discount-badge {
    position: absolute;
    top: 10px;
    left: 10px;
    background-color: var(--primary-color);
    color: var(--white);
    padding: 0.25rem 0.5rem;
    border-radius: 4px;
    font-size: 0.75rem;
    font-weight: 600;
}

.product-content {
    padding: 1.5rem;
}

.product-title {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    height: 2.4rem;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.product-rating {
    display: flex;
    align-items: center;
    margin-bottom: 0.5rem;
}

.stars {
    color: #ffc107;
    margin-right: 0.5rem;
}

.rating-count {
    font-size: 0.75rem;
    color: var(--text-light);
}

.product-price {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
}

.current-price {
    font-size: 1.25rem;
    font-weight: 700;
    margin-right: 0.5rem;
}

.original-price {
    font-size: 0.875rem;
    color: var(--text-light);
    text-decoration: line-through;
}

.add-to-cart {
    width: 100%;
}

/* Special Offers */
.special-offers {
    padding: 3rem 0;
}

.offers-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.offer-banner {
    height: 250px;
    border-radius: 8px;
    overflow: hidden;
    position: relative;
    background-image: url('https://via.placeholder.com/600x300');
    background-size: cover;
    background-position: center;
    color: var(--white);
}

.offer-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.3));
}

.offer-content {
    position: relative;
    z-index: 1;
    padding: 2rem;
    max-width: 60%;
}

.offer-content h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.offer-content p {
    margin-bottom: 1rem;
}

/* Brands */
.brands {
    padding: 3rem 0;
    background-color: var(--white);
    text-align: center;
}

.brands h2 {
    margin-bottom: 2rem;
}

.brands-slider {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.brand-item {
    width: calc(16.666% - 1rem);
    padding: 1rem;
    filter: grayscale(100%);
    opacity: 0.7;
    transition: var(--transition);
}

.brand-item:hover {
    filter: grayscale(0);
    opacity: 1;
}

/* Testimonials */
.testimonials {
    padding: 3rem 0;
}

.testimonials h2 {
    text-align: center;
    margin-bottom: 2rem;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.testimonial-card {
    background-color: var(--white);
    border-radius: 8px;
    padding: 2rem;
    box-shadow: var(--shadow);
}

.testimonial-rating {
    color: #ffc107;
    margin-bottom: 1rem;
}

.testimonial-text {
    font-style: italic;
    margin-bottom: 1rem;
}

.testimonial-author {
    font-weight: 600;
}

/* Newsletter */
.newsletter {
    padding: 4rem 0;
    background-color: var(--primary-color);
    color: var(--white);
    text-align: center;
}

.newsletter h2 {
    margin-bottom: 1rem;
}

.newsletter p {
    max-width: 600px;
    margin: 0 auto 2rem;
}

.newsletter-form {
    display: flex;
    max-width: 500px;
    margin: 0 auto;
}

.newsletter-form input {
    flex: 1;
    padding: 0.75rem 1rem;
    border: none;
    border-radius: 4px 0 0 4px;
    font-size: 1rem;
}

.newsletter-form button {
    border-radius: 0 4px 4px 0;
}

/* Footer */
.footer {
    background-color: var(--secondary-color);
    color: var(--white);
    padding: 4rem 0 2rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.footer-column h3 {
    color: var(--white);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.footer-column p {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 1.5rem;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 36px;
    height: 36px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: var(--white);
    transition: var(--transition);
}

.social-links a:hover {
    background-color: var(--primary-color);
}

.footer-column ul li {
    margin-bottom: 0.75rem;
}

.footer-column ul li a {
    color: rgba(255, 255, 255, 0.7);
    transition: var(--transition);
}

.footer-column ul li a:hover {
    color: var(--white);
}

.footer-column address p {
    display: flex;
    align-items: center;
    margin-bottom: 0.75rem;
}

.footer-column address p i {
    margin-right: 0.75rem;
}

.footer-bottom {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    color: rgba(255, 255, 255, 0.7);
}

/* Products Page */
.products-page {
    padding: 2rem 0;
}

.page-header {
    margin-bottom: 2rem;
}

.breadcrumbs {
    margin-bottom: 0.5rem;
    font-size: 0.875rem;
    color: var(--text-light);
}

.breadcrumbs a {
    color: var(--text-light);
}

.breadcrumbs a:hover {
    color: var(--primary-color);
}

.products-layout {
    display: grid;
    grid-template-columns: 250px 1fr;
    gap: 2rem;
}

.mobile-filter-toggle {
    display: none;
    margin-bottom: 1rem;
}

.filters-sidebar {
    background-color: var(--white);
    border-radius: 8px;
    padding: 1.5rem;
    box-shadow: var(--shadow);
}

.filter-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
}

.filter-header h3 {
    margin-bottom: 0;
}

.close-filters {
    display: none;
    background: none;
    border: none;
    font-size: 1.25rem;
    color: var(--text-light);
}

.filter-section {
    margin-bottom: 1.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid var(--border-color);
}

.filter-section:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.filter-section h4 {
    margin-bottom: 1rem;
    font-size: 1rem;
}

.filter-list li {
    margin-bottom: 0.5rem;
}

.filter-list label {
    display: flex;
    align-items: center;
    cursor: pointer;
}

.filter-list input[type="checkbox"] {
    margin-right: 0.5rem;
}

.count {
    margin-left: auto;
    font-size: 0.75rem;
    color: var(--text-light);
}

.price-range {
    margin-top: 1rem;
}

.price-inputs {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
}

.price-inputs input {
    width: 80px;
    padding: 0.5rem;
    border: 1px solid var(--border-color);
    border-radius: 4px;
}

.price-inputs span {
    margin: 0 0.5rem;
}

.price-slider {
    margin-bottom: 1rem;
}

.price-slider input {
    width: 100%;
}

.filter-actions {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.products-content {
    flex: 1;
}

.products-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--border-color);
}

.products-count {
    font-size: 0.875rem;
    color: var(--text-light);
}

.products-sort {
    display: flex;
    align-items: center;
}

.products-sort label {
    margin-right: 0.5rem;
    font-size: 0.875rem;
}

.products-sort select {
    padding: 0.5rem;
    border: 1px solid var(--border-color);
    border-radius: 4px;
    background-color: var(--white);
}

.pagination {
    display: flex;
    justify-content: center;
    margin-top: 2rem;
}

.pagination a {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 36px;
    height: 36px;
    margin: 0 0.25rem;
    border-radius: 4px;
    border: 1px solid var(--border-color);
    background-color: var(--white);
    color: var(--text-color);
    transition: var(--transition);
}

.pagination a:hover {
    background-color: var(--background-light);
}

.pagination a.active {
    background-color: var(--primary-color);
    color: var(--white);
    border-color: var(--primary-color);
}

.pagination a.disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

/* Product Detail Page */
.product-detail-page {
    padding: 2rem 0;
}

.product-detail {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-bottom: 3rem;
}

.product-images {
    position: relative;
}

.main-image {
    position: relative;
    height: 400px;
    background-color: var(--white);
    border-radius: 8px;
    overflow: hidden;
    margin-bottom: 1rem;
    display: flex;
    justify-content: center;
    align-items: center;
}

.main-image img {
    max-height: 100%;
    max-width: 100%;
    object-fit: contain;
}

.thumbnail-images {
    display: flex;
    gap: 0.5rem;
}

.thumbnail {
    width: 80px;
    height: 80px;
    border-radius: 4px;
    overflow: hidden;
    cursor: pointer;
    border: 2px solid transparent;
}

.thumbnail.active {
    border-color: var(--primary-color);
}

.thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.product-info h1 {
    font-size: 1.75rem;
    margin-bottom: 1rem;
}

.product-rating {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
}

.product-rating .stars {
    margin-right: 0.5rem;
}

.rating-value {
    font-weight: 600;
    margin-right: 0.5rem;
}

.review-count {
    color: var(--text-light);
    font-size: 0.875rem;
}

.product-price {
    display: flex;
    align-items: center;
    margin-bottom: 1.5rem;
}

.current-price {
    font-size: 1.75rem;
    font-weight: 700;
    margin-right: 0.75rem;
}

.original-price {
    font-size: 1.25rem;
    color: var(--text-light);
    text-decoration: line-through;
    margin-right: 0.75rem;
}

.discount-percent {
    background-color: var(--primary-color);
    color: var(--white);
    padding: 0.25rem 0.5rem;
    border-radius: 4px;
    font-size: 0.875rem;
    font-weight: 600;
}

.product-stock {
    margin-bottom: 1.5rem;
}

.in-stock {
    color: var(--success-color);
    font-weight: 600;
}

.out-of-stock {
    color: var(--error-color);
    font-weight: 600;
}

.product-short-description {
    margin-bottom: 1.5rem;
}

.product-actions {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
}

.quantity-selector {
    display: flex;
    border: 1px solid var(--border-color);
    border-radius: 4px;
    overflow: hidden;
}

.quantity-btn {
    width: 40px;
    height: 40px;
    background-color: var(--background-light);
    border: none;
    font-size: 1.25rem;
}

.quantity-input {
    width: 60px;
    text-align: center;
    border: none;
    border-left: 1px solid var(--border-color);
    border-right: 1px solid var(--border-color);
}

.add-to-cart-btn {
    flex: 1;
}

.wishlist-btn {
    width: 40px;
    height: 40px;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
}

.product-meta {
    margin-bottom: 2rem;
}

.meta-item {
    display: flex;
    margin-bottom: 0.5rem;
}

.meta-label {
    font-weight: 600;
    width: 100px;
}

.product-benefits {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.benefit-item {
    display: flex;
    align-items: center;
}

.benefit-item i {
    width: 40px;
    height: 40px;
    background-color: rgba(229, 57, 53, 0.1);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-right: 1rem;
    color: var(--primary-color);
}

.benefit-content h4 {
    margin-bottom: 0.25rem;
    font-size: 1rem;
}

.benefit-content p {
    font-size: 0.875rem;
    color: var(--text-light);
    margin-bottom: 0;
}

.product-tabs {
    margin-bottom: 3rem;
}

.tabs-header {
    display: flex;
    border-bottom: 1px solid var(--border-color);
    margin-bottom: 1.5rem;
}

.tab-btn {
    padding: 1rem 1.5rem;
    background: none;
    border: none;
    font-weight: 600;
    color: var(--text-light);
    cursor: pointer;
    border-bottom: 2px solid transparent;
    transition: var(--transition);
}

.tab-btn.active {
    color: var(--primary-color);
    border-bottom-color: var(--primary-color);
}

.tab-panel {
    display: none;
}

.tab-panel.active {
    display: block;
}

.specs-table {
    width: 100%;
    border-collapse: collapse;
}

.specs-table th, .specs-table td {
    padding: 0.75rem;
    text-align: left;
    border-bottom: 1px solid var(--border-color);
}

.specs-table th {
    width: 30%;
    font-weight: 600;
}

.compatibility-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.compatibility-item h4 {
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.compatibility-item ul {
    list-style: disc;
    padding-left: 1.5rem;
}

.compatibility-item li {
    margin-bottom: 0.5rem;
}

.compatibility-note {
    margin-top: 2rem;
    padding: 1rem;
    background-color: rgba(255, 152, 0, 0.1);
    border-left: 4px solid var(--warning-color);
    border-radius: 4px;
}

.reviews-summary {
    display: flex;
    margin-bottom: 2rem;
}

.average-rating {
    width: 200px;
    text-align: center;
    padding-right: 2rem;
    border-right: 1px solid var(--border-color);
}

.rating-number {
    font-size: 3rem;
    font-weight: 700;
    line-height: 1;
    margin-bottom: 0.5rem;
}

.rating-stars {
    color: #ffc107;
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
}

.rating-count {
    color: var(--text-light);
    font-size: 0.875rem;
}

.rating-breakdown {
    flex: 1;
    padding-left: 2rem;
}

.rating-bar {
    display: flex;
    align-items: center;
    margin-bottom: 0.5rem;
}

.rating-level {
    width: 60px;
    display: flex;
    align-items: center;
}

.progress-bar {
    flex: 1;
    height: 8px;
    background-color: var(--background-light);
    border-radius: 4px;
    margin: 0 1rem;
    overflow: hidden;
}

.progress {
    height: 100%;
    background-color: #ffc107;
}

.rating-percent {
    width: 40px;
    font-size: 0.875rem;
    color: var(--text-light);
}

.reviews-list {
    margin-bottom: 2rem;
}

.review-item {
    padding-bottom: 1.5rem;
    margin-bottom: 1.5rem;
    border-bottom: 1px solid var(--border-color);
}

.review-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
}

.review-header {
    display: flex;
    justify-content: space-between;
    margin-bottom: 0.5rem;
}

.review-author {
    font-weight: 600;
}

.review-date {
    color: var(--text-light);
    font-size: 0.875rem;
}

.review-rating {
    color: #ffc107;
    margin-bottom: 0.5rem;
}

.review-title {
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.write-review {
    text-align: center;
}

/* Cart Page */
.cart-page {
    padding: 2rem 0;
}

.cart-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 2rem;
}

.cart-table {
    width: 100%;
    border-collapse: collapse;
    background-color: var(--white);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow);
}

.cart-table th {
    background-color: var(--background-light);
    padding: 1rem;
    text-align: left;
    font-weight: 600;
}

.cart-table td {
    padding: 1rem;
    border-bottom: 1px solid var(--border-color);
}

.cart-table tr:last-child td {
    border-bottom: none;
}

.product-info {
    display: flex;
    align-items: center;
}

.product-image {
    width: 80px;
    height: 80px;
    margin-right: 1rem;
}

.product-details h3 {
    font-size: 1rem;
    margin-bottom: 0.25rem;
}

.product-meta {
    font-size: 0.875rem;
    color: var(--text-light);
}

.product-price .original-price {
    font-size: 0.875rem;
    display: block;
}

.product-total {
    font-weight: 600;
}

.remove-btn {
    background: none;
    border: none;
    color: var(--text-light);
    cursor: pointer;
    transition: var(--transition);
}

.remove-btn:hover {
    color: var(--error-color);
}

.cart-actions {
    display: flex;
    justify-content: space-between;
    margin: 1.5rem 0;
}

.coupon {
    display: flex;
}

.coupon input {
    width: 200px;
    padding: 0.75rem 1rem;
    border: 1px solid var(--border-color);
    border-radius: 4px 0 0 4px;
}

.coupon button {
    border-radius: 0 4px 4px 0;
}

.update-cart {
    display: flex;
    gap: 1rem;
}

.cart-summary {
    background-color: var(--white);
    border-radius: 8px;
    padding: 1.5rem;
    box-shadow: var(--shadow);
}

.cart-summary h2 {
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
}

.summary-item {
    display: flex;
    justify-content: space-between;
    margin-bottom: 1rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--border-color);
}

.summary-total {
    display: flex;
    justify-content: space-between;
    margin: 1.5rem 0;
    font-size: 1.25rem;
    font-weight: 700;
}

.checkout-btn {
    width: 100%;
    margin-bottom: 1.5rem;
}

.payment-methods {
    margin-bottom: 1.5rem;
}

.payment-methods h3 {
    font-size: 1rem;
    margin-bottom: 0.75rem;
}

.payment-icons {
    display: flex;
    gap: 0.75rem;
    font-size: 1.5rem;
    color: var(--text-light);
}

.cart-benefits {
    margin-top: 1.5rem;
}

.empty-cart {
    text-align: center;
    padding: 3rem 0;
}

.empty-cart-icon {
    font-size: 4rem;
    color: var(--text-light);
    margin-bottom: 1.5rem;
}

.empty-cart h2 {
    margin-bottom: 1rem;
}

.empty-cart p {
    margin-bottom: 2rem;
    color: var(--text-light);
}