/**
 * WooCommerce Specific Styles
 * 
 * @package CustomTumi
 * @since 1.0.0
 */

/* WooCommerce Product Loop Enhancements */
.woocommerce-product-loop {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.woocommerce ul.products {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    list-style: none;
    margin: 0;
    padding: 0;
}

.woocommerce ul.products li.product {
    background: #ffffff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
}

.woocommerce ul.products li.product:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.15);
}

/* Product Images */
.woocommerce ul.products li.product .product-image-wrapper {
    position: relative;
    overflow: hidden;
}

.woocommerce ul.products li.product img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.woocommerce ul.products li.product:hover img {
    transform: scale(1.05);
}

/* Product Badges */
.product-badges {
    position: absolute;
    top: 10px;
    left: 10px;
    z-index: 2;
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.badge {
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.sale-badge {
    background: #d32f2f;
    color: #ffffff;
}

.featured-badge {
    background: #ff9800;
    color: #ffffff;
}

.new-badge {
    background: #4caf50;
    color: #ffffff;
}

.waterproof-badge {
    background: #2196f3;
    color: #ffffff;
}

.laptop-badge {
    background: #9c27b0;
    color: #ffffff;
}

/* Quick Actions */
.product-quick-actions {
    position: absolute;
    top: 10px;
    right: 10px;
    display: flex;
    flex-direction: column;
    gap: 5px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.woocommerce ul.products li.product:hover .product-quick-actions {
    opacity: 1;
}

.quick-view-btn,
.wishlist-btn {
    width: 32px;
    height: 32px;
    border: none;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    color: #4a4a4a;
}

.quick-view-btn:hover,
.wishlist-btn:hover {
    background: #d32f2f;
    color: #ffffff;
    transform: scale(1.1);
}

.wishlist-btn.active {
    background: #d32f2f;
    color: #ffffff;
}

/* Product Info */
.woocommerce ul.products li.product .product-info {
    padding: 1.5rem;
}

.woocommerce ul.products li.product .product-title {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #000000;
}

.woocommerce ul.products li.product .product-title a {
    color: inherit;
    text-decoration: none;
}

.woocommerce ul.products li.product .product-title a:hover {
    color: #d32f2f;
}

.woocommerce ul.products li.product .price {
    font-size: 1.2rem;
    font-weight: 700;
    color: #d32f2f;
    margin-bottom: 1rem;
}

.woocommerce ul.products li.product .price del {
    color: #8a8a8a;
    font-weight: 400;
    margin-right: 0.5rem;
}

.woocommerce ul.products li.product .price ins {
    text-decoration: none;
}

/* Product Description */
.product-description {
    color: #000000;
    font-size: 0.9rem;
    margin-bottom: 1rem;
    line-height: 1.4;
}

/* Product Specifications Preview */
.product-specs-preview {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.spec-item {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    font-size: 0.8rem;
    color: #000000;
    background: #f8f8f8;
    padding: 0.25rem 0.5rem;
    border-radius: 4px;
}

/* Product Actions */
.woocommerce ul.products li.product .product-actions {
    padding: 0 1.5rem 1.5rem;
}

.woocommerce ul.products li.product .add_to_cart_button {
    width: 100%;
    background: #d32f2f;
    color: #ffffff;
    border: none;
    padding: 0.75rem 1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-radius: 4px;
    cursor: pointer;
    transition: background 0.3s ease;
}

.woocommerce ul.products li.product .add_to_cart_button:hover {
    background: #b71c1c;
}

.woocommerce ul.products li.product .add_to_cart_button.loading {
    opacity: 0.7;
    cursor: not-allowed;
}

/* Single Product Page */
.single-product .product {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin: 2rem 0;
}

.single-product .product-images {
    position: relative;
}

.single-product .product-main-image {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 8px;
}

.single-product .product-gallery {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0.5rem;
    margin-top: 1rem;
}

.single-product .product-gallery img {
    width: 100%;
    height: 80px;
    object-fit: cover;
    border-radius: 4px;
    cursor: pointer;
    transition: opacity 0.3s ease;
    border: 2px solid transparent;
}

.single-product .product-gallery img:hover,
.single-product .product-gallery img.active {
    opacity: 0.8;
    border-color: #d32f2f;
}

/* Product Summary */
.single-product .product-summary {
    padding: 1rem 0;
}

.single-product .product-title {
    font-size: 2rem;
    font-weight: 700;
    color: #000000;
    margin-bottom: 1rem;
}

.single-product .price {
    font-size: 1.5rem;
    font-weight: 700;
    color: #d32f2f;
    margin-bottom: 1rem;
}

.single-product .price del {
    color: #8a8a8a;
    font-weight: 400;
    margin-right: 0.5rem;
}

.single-product .price ins {
    text-decoration: none;
}

/* Backpack Specifications */
.backpack-specifications {
    background: #f8f8f8;
    padding: 1.5rem;
    border-radius: 8px;
    margin: 2rem 0;
}

.backpack-specifications h3 {
    font-size: 1.2rem;
    font-weight: 600;
    color: #000000;
    margin-bottom: 1rem;
}

.specs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
}

.spec-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.5rem 0;
    border-bottom: 1px solid #e0e0e0;
}

.spec-label {
    font-weight: 600;
    color: #000000;
}

.spec-value {
    color: #000000;
    font-weight: 500;
}

/* Product Features */
.product-features {
    margin: 2rem 0;
}

.product-features h3 {
    font-size: 1.2rem;
    font-weight: 600;
    color: #000000;
    margin-bottom: 1rem;
}

.features-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.features-list li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 0;
    color: #000000;
}

.features-list li svg {
    color: #4caf50;
    flex-shrink: 0;
}

/* Product Tabs */
.woocommerce-tabs {
    margin: 3rem 0;
}

.woocommerce-tabs ul.tabs {
    display: flex;
    list-style: none;
    margin: 0 0 2rem 0;
    padding: 0;
    border-bottom: 2px solid #f0f0f0;
}

.woocommerce-tabs ul.tabs li {
    margin-right: 2rem;
}

.woocommerce-tabs ul.tabs li a {
    display: block;
    padding: 1rem 0;
    color: #000000;
    text-decoration: none;
    font-weight: 500;
    border-bottom: 2px solid transparent;
    transition: all 0.3s ease;
}

.woocommerce-tabs ul.tabs li.active a,
.woocommerce-tabs ul.tabs li a:hover {
    color: #d32f2f;
    border-bottom-color: #d32f2f;
}

.woocommerce-tabs .panel {
    padding: 2rem 0;
}

/* Tab panels - hide by default, show only on hover */
.woocommerce-tabs .panel {
    display: none;
    opacity: 0;
    transition: opacity 0.3s ease;
}

/* Show panel on hover - controlled by JavaScript */
.woocommerce-tabs .panel.hover-show {
    display: block !important;
    opacity: 1;
}

/* Hide panel when not hovering */
.woocommerce-tabs .panel.hover-hide {
    display: none !important;
    opacity: 0;
}

/* Ensure smooth transitions for all tab content */
.woocommerce-tabs .panel {
    transition: all 0.3s ease;
}

/* Specifications Table */
.specifications-table {
    width: 100%;
    border-collapse: collapse;
    margin: 1rem 0;
}

.specifications-table th,
.specifications-table td {
    padding: 0.75rem;
    text-align: left;
    border-bottom: 1px solid #e0e0e0;
}

.specifications-table th {
    background: #f8f8f8;
    font-weight: 600;
    color: #000000;
    width: 200px;
}

.specifications-table td {
    color: #000000;
}

/* Care Instructions Tab Content */
.care-instructions {
    background: #f8f8f8;
    padding: 1.5rem;
    border-radius: 8px;
    margin: 2rem 0;
}

.care-instructions h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #000000;
    margin-bottom: 0.5rem;
}

.care-instructions ul {
    margin: 0;
    padding-left: 1.5rem;
}

.care-instructions li {
    color: #000000;
    margin-bottom: 0.5rem;
}

/* Size Guide */
.size-guide-section {
    margin: 3rem 0;
}

.size-guide-section h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #000000;
    margin-bottom: 1.5rem;
    text-align: center;
}

.size-table {
    width: 100%;
    border-collapse: collapse;
    background: #ffffff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

.size-table th,
.size-table td {
    padding: 1rem;
    text-align: left;
    border-bottom: 1px solid #f0f0f0;
}

.size-table th {
    background: #d32f2f;
    color: #ffffff;
    font-weight: 600;
}

.size-table tr:hover {
    background: #f8f8f8;
}

/* Shop Page */
.shop-wrapper {
    margin: 2rem 0;
}

.shop-header {
    text-align: center;
    margin-bottom: 3rem;
}

.shop-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #000000;
    margin-bottom: 1rem;
}

.shop-description {
    font-size: 1.1rem;
    color: #000000;
    max-width: 600px;
    margin: 0 auto;
}

/* Shop Filters */
.shop-filters {
    background: #ffffff;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    margin-bottom: 2rem;
}

.filters-row {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 2rem;
    align-items: start;
}

.filter-categories h3 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #000000;
    margin-bottom: 1rem;
}

.category-filter-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.category-filter-item {
    margin-bottom: 0.5rem;
}

.category-filter-item a {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.5rem 0;
    color: #000000;
    text-decoration: none;
    transition: color 0.3s ease;
}

.category-filter-item a:hover,
.category-filter-item.active a {
    color: #d32f2f;
}

.category-count {
    font-size: 0.9rem;
    color: #8a8a8a;
}

.filter-options {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 1rem;
}

.filter-sort {
    display: flex;
    align-items: center;
    gap: 1rem;
}

/* WooCommerce result count and ordering alignment */
.woocommerce-result-count,
.woocommerce-ordering {
    margin: 0;
}

.woocommerce-result-count {
    font-size: 0.9rem;
    color: #666;
}

.woocommerce-ordering select {
    padding: 0.5rem 1rem;
    border: 1px solid #e0e0e0;
    border-radius: 4px;
    background: #ffffff;
    color: #000000;
    font-size: 0.9rem;
    min-width: 150px;
}

/* Shop Features */
.shop-features {
    margin: 4rem 0;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.feature-item {
    text-align: center;
    padding: 2rem;
    background: #ffffff;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

.feature-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 1rem;
    background: #f8f8f8;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #d32f2f;
}

.feature-item h3 {
    font-size: 1.2rem;
    font-weight: 600;
    color: #000000;
    margin-bottom: 0.5rem;
}

.feature-item p {
    color: #000000;
    line-height: 1.5;
}

/* WooCommerce Messages */
.woocommerce-message,
.woocommerce-info,
.woocommerce-error {
    padding: 1rem 1.5rem;
    margin: 1rem 0;
    border-radius: 4px;
    border-left: 4px solid;
}

.woocommerce-message {
    background: #e8f5e8;
    border-left-color: #4caf50;
    color: #2e7d32;
}

.woocommerce-info {
    background: #e3f2fd;
    border-left-color: #2196f3;
    color: #1565c0;
}

.woocommerce-error {
    background: #ffebee;
    border-left-color: #f44336;
    color: #c62828;
}

/* Cart and Checkout */
.woocommerce-cart .cart-collaterals,
.woocommerce-checkout .checkout {
    background: #ffffff;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

/* Custom Cart Page Layout */
.cart-page-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem 1rem;
}


.page-title {
    font-size: 2.5rem;
    font-weight: 300;
    color: #000000;
    margin-bottom: 2rem;
    text-align: center;
}

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

.cart-products-list {
    background: #ffffff;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    overflow: hidden;
}

.cart-list-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 2rem;
    background: #f8f8f8;
    border-bottom: 1px solid #e0e0e0;
    font-weight: 600;
    color: #000000;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.product-col-header {
    flex: 1;
}

.total-col-header {
    width: 120px;
    text-align: right;
}

.cart-item-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 2rem;
    border-bottom: 1px solid #f0f0f0;
    transition: background-color 0.3s ease;
}

.cart-item-row:hover {
    background-color: #fafafa;
}

.cart-item-row:last-child {
    border-bottom: none;
}

.product-details-col {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    flex: 1;
}

.product-thumbnail {
    width: 80px;
    height: 80px;
    border-radius: 8px;
    overflow: hidden;
    flex-shrink: 0;
}

.product-thumbnail img,
.cart-product-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.product-info {
    flex: 1;
}

.product-name {
    font-size: 1.1rem;
    font-weight: 600;
    color: #000000;
    margin-bottom: 0.5rem;
}

.product-name a {
    color: inherit;
    text-decoration: none;
}

.product-name a:hover {
    color: #d32f2f;
}

.product-prices {
    margin-bottom: 0.5rem;
}

.original-price {
    text-decoration: line-through;
    color: #999;
    margin-right: 0.5rem;
}

.current-price {
    font-weight: 600;
    color: #d32f2f;
    font-size: 1.1rem;
}

.save-button {
    display: inline-block;
    background: #4caf50;
    color: #ffffff;
    padding: 0.25rem 0.5rem;
    border-radius: 4px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-top: 0.5rem;
}

.product-quantity-selector {
    margin: 1rem 0;
}

.product-quantity-selector .quantity {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.product-quantity-selector input[type="number"] {
    width: 50px;
    height: 50px;
    padding: 0;
    border: 1px solid #e0e0e0;
    border-radius: 4px;
    text-align: center;
    font-size: 0.9rem;
    box-sizing: border-box;
}

.remove-item-link {
    color: #d32f2f;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
}

.remove-item-link:hover {
    text-decoration: underline;
}

.product-total-col {
    width: 120px;
    text-align: right;
}

.item-total {
    font-size: 1.2rem;
    font-weight: 600;
    color: #000000;
}

.cart-actions {
    padding: 1.5rem 2rem;
    background: #f8f8f8;
    border-top: 1px solid #e0e0e0;
}

.cart-actions .button {
    background: #d32f2f;
    color: #ffffff;
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 4px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.cart-actions .button:hover {
    background: #b71c1c;
}

.cart-empty-message {
    text-align: center;
    padding: 3rem 2rem;
    color: #666;
    font-size: 1.1rem;
}

.return-to-shop {
    text-align: center;
    margin-top: 1rem;
}

.return-to-shop .button {
    background: #d32f2f;
    color: #ffffff;
    padding: 1rem 2rem;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    display: inline-block;
    transition: background-color 0.3s ease;
}

.return-to-shop .button:hover {
    background: #b71c1c;
}

/* Cart Totals Section */
.cart-totals-section {
    background: #ffffff;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    padding: 2rem;
    height: fit-content;
}

.cart-totals-header {
    font-size: 1.5rem;
    font-weight: 600;
    color: #000000;
    margin-bottom: 2rem;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.coupon-section {
    margin-bottom: 2rem;
}

.coupon-toggle {
    font-size: 1rem;
    font-weight: 600;
    color: #000000;
    margin-bottom: 1rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.toggle-icon {
    font-size: 1.2rem;
    transition: transform 0.3s ease;
}

.coupon-toggle.active .toggle-icon {
    transform: rotate(180deg);
}

.coupon-form {
    display: none;
    gap: 0.5rem;
}

.coupon-form.active {
    display: flex;
}

.coupon-form input[type="text"] {
    flex: 1;
    padding: 0.75rem;
    border: 1px solid #e0e0e0;
    border-radius: 4px;
    font-size: 0.9rem;
}

.coupon-form .button {
    background: #d32f2f;
    color: #ffffff;
    border: none;
    padding: 0.75rem 1rem;
    border-radius: 4px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.coupon-form .button:hover:not(:disabled) {
    background: #b71c1c;
}

.coupon-form .button:disabled {
    background: #ccc;
    cursor: not-allowed;
}

.cart-total-summary {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 0;
    border-top: 1px solid #e0e0e0;
    border-bottom: 1px solid #e0e0e0;
    margin-bottom: 2rem;
}

.estimated-total-label {
    font-size: 1.1rem;
    font-weight: 500;
    color: #000000;
}

.estimated-total-value {
    font-size: 1.5rem;
    font-weight: 700;
    color: #d32f2f;
}

.proceed-to-checkout-button {
    display: block;
    width: 100%;
    background: #d32f2f;
    color: #ffffff;
    text-align: center;
    padding: 1rem 2rem;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: background-color 0.3s ease;
}

.proceed-to-checkout-button:hover {
    background: #b71c1c;
}

/* Checkout Page Styles */
.checkout-page-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem 1rem;
}

.checkout-content-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-top: 2rem;
}

.checkout-form-section {
    background: #ffffff;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    padding: 2rem;
}

.checkout-order-summary {
    background: #ffffff;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    padding: 2rem;
    height: fit-content;
}

.order-summary-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: #000000;
    margin-bottom: 2rem;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.order-items {
    margin-bottom: 2rem;
}

.checkout-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 0;
    border-bottom: 1px solid #f0f0f0;
}

.checkout-item:last-child {
    border-bottom: none;
}

.checkout-item-image {
    width: 60px;
    height: 60px;
    border-radius: 6px;
    overflow: hidden;
    flex-shrink: 0;
}

.checkout-item-image img,
.checkout-product-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.checkout-item-details {
    flex: 1;
}

.checkout-item-name {
    font-size: 1rem;
    font-weight: 600;
    color: #000000;
    margin-bottom: 0.25rem;
}

.checkout-item-name a {
    color: inherit;
    text-decoration: none;
}

.checkout-item-name a:hover {
    color: #d32f2f;
}

.checkout-item-price {
    margin-bottom: 0.25rem;
}

.checkout-item-price .original-price {
    text-decoration: line-through;
    color: #999;
    margin-right: 0.5rem;
}

.checkout-item-price .current-price {
    font-weight: 600;
    color: #d32f2f;
}

.checkout-item-quantity {
    font-size: 0.9rem;
    color: #666;
}


.checkout-totals {
    border-top: 1px solid #e0e0e0;
    padding-top: 1.5rem;
}

.checkout-subtotal,
.checkout-shipping,
.checkout-coupon,
.checkout-total {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.5rem 0;
}

.checkout-total {
    border-top: 1px solid #e0e0e0;
    margin-top: 1rem;
    padding-top: 1rem;
    font-size: 1.2rem;
    font-weight: 700;
}

.total-label,
.subtotal-label,
.shipping-label,
.coupon-label {
    color: #000000;
}

.total-value {
    color: #d32f2f;
    font-weight: 700;
}

.subtotal-value,
.shipping-value,
.coupon-value {
    color: #000000;
    font-weight: 600;
}

.checkout-empty-message {
    text-align: center;
    padding: 3rem 2rem;
    color: #666;
    font-size: 1.1rem;
}

.return-to-shop {
    text-align: center;
    margin-top: 1rem;
}

.return-to-shop .button {
    background: #d32f2f;
    color: #ffffff;
    padding: 1rem 2rem;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    display: inline-block;
    transition: background-color 0.3s ease;
}

.return-to-shop .button:hover {
    background: #b71c1c;
}

/* Responsive Design for Checkout */
@media (max-width: 768px) {
    .checkout-content-wrapper {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .checkout-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }
    
    .checkout-item-image {
        width: 100%;
        height: 200px;
    }
    
}

/* About Section Styles - Matching Hero Section Width */
.about-section {
    padding: 4rem 0;
    background: #f8f6f3;
}

.about-hero-background {
    position: relative;
    height: 100px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0,0,0,0.15);
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
}

.about-section .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.about-hero-bg-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.3;
    transition: opacity 0.3s ease;
}

.about-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        135deg,
        rgba(248, 246, 243, 0.8) 0%,
        rgba(240, 237, 232, 0.9) 100%
    );
    z-index: 2;
}

.about-hero-content {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 3;
    display: flex;
    align-items: center;
    padding: 2rem;
}

.about-hero-text {
    max-width: 50%;
    text-align: left;
}

.about-badge {
    display: inline-block;
    background: #d32f2f;
    color: #ffffff;
    padding: 0.5rem 1rem;
    border-radius: 4px;
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1.5rem;
}

.about-hero-title {
    font-size: 3.5rem;
    font-weight: 300;
    color: #000000;
    margin-bottom: 1.5rem;
    letter-spacing: 1px;
    line-height: 1.2;
}

.about-hero-description {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #000000;
    margin-bottom: 2rem;
    font-weight: 300;
}

.about-hero-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 12rem;
}

.about-hero-actions .btn {
    padding: 1rem 2rem;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    display: inline-block;
}

.about-hero-actions .btn-primary {
    background: #d32f2f;
    color: #ffffff;
    border: none;
}

.about-hero-actions .btn-primary:hover {
    background: #b71c1c;
    transform: translateY(-2px);
}

.about-hero-actions .btn-secondary {
    background: #ffffff;
    color: #000000;
    border: 1px solid #000000;
}

.about-hero-actions .btn-secondary:hover {
    background: #000000;
    color: #ffffff;
    transform: translateY(-2px);
}

.about-content-section {
    padding: 4rem 0;
    background: #ffffff;
}

.about-content-wrapper {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 2rem;
}

.about-text-content h2 {
    font-size: 2rem;
    font-weight: 300;
    color: #000000;
    margin-bottom: 1.5rem;
    margin-top: 3rem;
    letter-spacing: 1px;
}

.about-text-content h2:first-child {
    margin-top: 0;
}

.about-text-content p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #000000;
    margin-bottom: 2rem;
}

.about-values-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.about-values-list li {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #000000;
    margin-bottom: 1rem;
    padding-left: 1.5rem;
    position: relative;
}

.about-values-list li:before {
    content: "•";
    color: #d32f2f;
    font-weight: bold;
    position: absolute;
    left: 0;
}

.about-features-section {
    padding: 4rem 0;
    background: #ffffff;
    margin: 2rem 0;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

.about-features-section .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.about-features-grid {
    display: flex !important;
    flex-direction: row !important;
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    width: 100%;
    align-items: stretch;
    justify-content: space-between;
}

.about-features-grid .about-feature-item {
    flex: 1;
    width: 100%;
    box-sizing: border-box;
    margin: 0;
}

.about-feature-item {
    text-align: center;
    padding: 3rem 2rem;
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.12);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    min-height: 280px;
    border: 1px solid #f0f0f0;
    position: relative;
    overflow: hidden;
}

.about-feature-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #d32f2f, #ff5722);
}

.about-feature-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 16px 40px rgba(0,0,0,0.18);
}

.about-feature-item .feature-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: #f8f6f3;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #d32f2f;
}

.about-feature-item h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #000000;
    margin-bottom: 4.5rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    position: relative;
    z-index: 2;
}

.about-feature-item p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #333333;
    margin: 0;
    font-weight: 300;
    position: relative;
    z-index: 2;
}

/* Bestsellers Section - Matching Shop by Purpose Layout */
.bestsellers-section {
    padding: 4rem 0;
    background: #f8f6f3;
}

.bestsellers-title {
    font-size: 2.5rem;
    font-weight: 300;
    color: #000000;
    margin-bottom: 3rem;
    text-align: left;
    letter-spacing: 1px;
}

.bestsellers-grid {
    display: grid !important;
    grid-template-columns: repeat(4, 1fr) !important;
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    width: 100%;
}

.bestseller-item {
    text-align: center;
    padding: 2rem;
    background: #ffffff;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    min-height: 300px;
}

.bestseller-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.15);
}

.bestseller-image {
    width: 100%;
    height: 200px;
    margin-bottom: 1.5rem;
    border-radius: 8px;
    overflow: hidden;
    background: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
}

.bestseller-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
    border-radius: 8px;
}

.bestseller-item:hover .bestseller-image img {
    transform: scale(1.05);
}

.bestseller-title {
    font-size: 1.3rem;
    font-weight: 600;
    color: #000000;
    margin-bottom: 0.5rem;
    letter-spacing: 0.5px;
}

.bestseller-description {
    font-size: 0.9rem;
    line-height: 1.5;
    color: #666666;
    margin: 0;
}

/* Responsive Design for About Section */
@media (max-width: 1024px) {
    .about-features-grid {
        flex-direction: row !important;
        gap: 1.5rem;
    }
}

@media (max-width: 768px) {
    .about-hero-background {
        height: 80px;
        margin: 0 1rem;
        max-width: calc(100% - 2rem);
    }
    
    .about-hero-title {
        font-size: 2.5rem;
    }
    
    .about-hero-description {
        font-size: 1.1rem;
    }
    
    .about-hero-content {
        padding: 1rem;
    }
    
    .about-hero-text {
        max-width: 100%;
    }
    
    .about-hero-actions {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .about-hero-actions .btn {
        width: 100%;
        text-align: center;
    }
    
    .about-features-grid {
        flex-direction: column !important;
        gap: 2rem;
        padding: 0 1rem;
    }
    
    .bestsellers-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 2rem;
        padding: 0 1rem;
    }
    
    .bestseller-item {
        min-height: 250px;
    }
    
    .bestseller-image {
        height: 150px;
    }
}

@media (max-width: 480px) {
    .bestsellers-grid {
        grid-template-columns: 1fr !important;
        gap: 1.5rem;
    }
}

/* Responsive Design for Cart */
@media (max-width: 768px) {
    .cart-content-wrapper {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .cart-item-row {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }
    
    .product-details-col {
        width: 100%;
    }
    
    .product-total-col {
        width: 100%;
        text-align: left;
    }
    
    .cart-list-header {
        display: none;
    }
    
    .page-title {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .cart-page-container {
        padding: 1rem 0.5rem;
    }
    
    .cart-item-row {
        padding: 1rem;
    }
    
    .product-details-col {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }
    
    .product-thumbnail {
        width: 100%;
        height: 200px;
    }
}

/* Travel Backpacks Page Styles */
.travel-backpacks-wrapper {
    margin: 2rem 0;
}

.travel-hero-section {
    background: #f8f6f3;
    padding: 4rem 0;
    margin-bottom: 4rem;
    border-radius: 8px;
}

.travel-hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.travel-hero-text {
    max-width: 600px;
}

.travel-hero-title {
    font-size: 3.5rem;
    font-weight: 200;
    color: #000000;
    margin-bottom: 2rem;
    line-height: 1.1;
    font-family: 'Helvetica Neue', 'Helvetica', 'Arial', sans-serif;
    letter-spacing: -0.04em;
}

.travel-hero-subtitle {
    font-size: 1.5rem;
    font-weight: 300;
    color: #d32f2f;
    margin-bottom: 1.5rem;
    line-height: 1.3;
    font-family: 'Helvetica Neue', 'Helvetica', 'Arial', sans-serif;
    letter-spacing: -0.02em;
}

.travel-hero-text-content {
    font-size: 1.1rem;
    color: #000000;
    line-height: 1.6;
    margin-bottom: 2rem;
    font-weight: 300;
    letter-spacing: 0.01em;
}

.travel-hero-image {
    position: relative;
    height: 500px;
    border-radius: 8px;
    overflow: hidden;
}

.travel-backpack-image {
    width: 100%;
    height: 100%;
    position: relative;
}

.travel-backpack-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.15);
}

/* Travel Carousel Styles */
.travel-backpack-carousel {
    width: 100%;
    height: 100%;
    position: relative;
    overflow: hidden;
    border-radius: 8px;
}

.carousel-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.6s ease-in-out;
}

.carousel-slide.active {
    opacity: 1;
    position: relative;
}

.carousel-nav {
    position: absolute;
    bottom: 1rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    gap: 1rem;
    background: rgba(255, 255, 255, 0.9);
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.carousel-prev,
.carousel-next {
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #dc3545;
    transition: all 0.3s ease;
}

.carousel-prev:hover,
.carousel-next:hover {
    color: #c82333;
    transform: scale(1.1);
}

.carousel-dots {
    display: flex;
    gap: 0.5rem;
}

.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #ddd;
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot.active {
    background: #dc3545;
    width: 24px;
    border-radius: 5px;
}

.travel-products-section {
    margin: 4rem 0;
}

.travel-products-header {
    text-align: center;
    margin-bottom: 3rem;
}

.travel-products-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #000000;
    margin-bottom: 1rem;
}

.travel-products-header p {
    font-size: 1.1rem;
    color: #000000;
    max-width: 600px;
    margin: 0 auto;
}

.travel-features-section {
    background: #f8f8f8;
    padding: 4rem 0;
    margin: 4rem 0;
    border-radius: 8px;
}

.travel-features-content h2 {
    text-align: center;
    font-size: 2rem;
    font-weight: 700;
    color: #000000;
    margin-bottom: 3rem;
}

.travel-features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.travel-feature-item {
    text-align: center;
    padding: 2rem;
    background: #ffffff;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

.travel-feature-item .feature-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 1.5rem;
    background: #d32f2f;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
}

.travel-feature-item h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: #000000;
    margin-bottom: 1rem;
}

.travel-feature-item p {
    color: #000000;
    line-height: 1.6;
}

.no-travel-products {
    text-align: center;
    padding: 4rem 2rem;
    background: #f8f8f8;
    border-radius: 8px;
}

.no-travel-products h3 {
    font-size: 1.5rem;
    color: #000000;
    margin-bottom: 1rem;
}

.no-travel-products p {
    color: #000000;
    margin-bottom: 2rem;
}

/* Customer Reviews Section */
.customer-reviews-section {
    background: #ffffff;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    margin: 2rem 0;
}

.reviews-summary {
    margin-bottom: 3rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid #f0f0f0;
}

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

.reviews-header h3 {
    font-size: 1.8rem;
    font-weight: 600;
    color: #000000;
    margin: 0;
}

.reviews-stats {
    text-align: right;
}

.average-rating {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 0.5rem;
}

.rating-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: #000000;
    line-height: 1;
}

.stars {
    font-size: 1.2rem;
    color: #ffc107;
    letter-spacing: 2px;
}

.rating-text {
    font-size: 0.9rem;
    color: #666666;
    font-weight: 500;
}

.reviews-distribution {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.rating-bar {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.rating-label {
    font-size: 0.9rem;
    font-weight: 600;
    color: #000000;
    min-width: 30px;
}

.bar-container {
    flex: 1;
    height: 8px;
    background: #f0f0f0;
    border-radius: 4px;
    overflow: hidden;
}

.bar-fill {
    height: 100%;
    background: #ffc107;
    border-radius: 4px;
    transition: width 0.3s ease;
}

.rating-count {
    font-size: 0.9rem;
    color: #666666;
    font-weight: 500;
    min-width: 20px;
    text-align: right;
}

.individual-reviews {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.review-item {
    background: #fafafa;
    padding: 1.5rem;
    border-radius: 8px;
    border: 1px solid #f0f0f0;
    transition: all 0.3s ease;
}

.review-item:hover {
    background: #ffffff;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    transform: translateY(-2px);
}

.review-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1rem;
}

.reviewer-info {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.reviewer-avatar {
    width: 40px;
    height: 40px;
    background: #d32f2f;
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 1.1rem;
    text-transform: uppercase;
}

.reviewer-details {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.reviewer-name {
    font-size: 1rem;
    font-weight: 600;
    color: #000000;
}

.review-rating {
    font-size: 0.9rem;
    color: #ffc107;
    letter-spacing: 1px;
}

.review-date {
    font-size: 0.9rem;
    color: #666666;
    font-weight: 500;
}

.review-content {
    margin-top: 1rem;
}

.review-title {
    font-size: 1.1rem;
    font-weight: 600;
    color: #000000;
    margin: 0 0 0.5rem 0;
    line-height: 1.3;
}

.review-text {
    font-size: 1rem;
    color: #333333;
    line-height: 1.6;
    margin: 0;
}

/* Write Review Button */
.write-review-section {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid #f0f0f0;
    text-align: center;
}

.write-review-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: #d32f2f;
    color: #ffffff;
    padding: 1rem 2rem;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: 0.9rem;
}

.write-review-btn:hover {
    background: #b71c1c;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(211, 47, 47, 0.3);
}

.write-review-btn svg {
    width: 16px;
    height: 16px;
    fill: currentColor;
}

/* Responsive Design for Reviews */
@media (max-width: 768px) {
    .reviews-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }
    
    .reviews-stats {
        text-align: left;
    }
    
    .average-rating {
        align-items: flex-start;
    }
    
    .review-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }
    
    .review-date {
        align-self: flex-end;
    }
    
    .customer-reviews-section {
        padding: 1.5rem;
    }
    
    .review-item {
        padding: 1rem;
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .single-product .product {
        grid-template-columns: 1fr;
    }
    
    .filters-row {
        grid-template-columns: 1fr;
    }
    
    .woocommerce ul.products {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .travel-hero-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }
    
    .travel-hero-title {
        font-size: 2rem;
    }
    
    .travel-hero-subtitle {
        font-size: 1.2rem;
    }
    
    .travel-hero-image {
        height: 300px;
        order: -1;
    }
    
    .travel-features-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .woocommerce ul.products {
        grid-template-columns: 1fr;
    }
    
    .shop-title {
        font-size: 2rem;
    }
    
    .single-product .product-title {
        font-size: 1.5rem;
    }
}

/* Reviews Pagination Styles */
.reviews-pagination {
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid #e0e0e0;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.reviews-showing {
    text-align: center;
    color: #666;
    font-size: 0.9rem;
}

.reviews-navigation {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
}

.reviews-prev-btn,
.reviews-next-btn {
    background: #f8f9fa;
    border: 1px solid #dee2e6;
    padding: 0.5rem 1rem;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

.reviews-prev-btn:hover:not(:disabled),
.reviews-next-btn:hover:not(:disabled) {
    background: #0073aa;
    color: white;
    border-color: #0073aa;
}

.reviews-prev-btn:disabled,
.reviews-next-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.reviews-page-info {
    font-weight: 500;
    color: #333;
    font-size: 0.9rem;
}

.reviews-view-all {
    text-align: center;
}

.view-all-reviews-btn {
    display: inline-block;
    background: #0073aa;
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 500;
    transition: background 0.3s ease;
}

.view-all-reviews-btn:hover {
    background: #005a87;
    color: white;
    text-decoration: none;
}

@media (max-width: 768px) {
    .reviews-navigation {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .reviews-prev-btn,
    .reviews-next-btn {
        width: 100%;
        max-width: 200px;
    }
}

/* My Account Page Styles */
.my-account-wrapper {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    min-height: 100vh;
    padding: 2rem 0;
}

.my-account-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

/* Account Header */
.account-header {
    background: white;
    border-radius: 16px;
    padding: 2rem;
    margin-bottom: 2rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.account-welcome {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.account-avatar {
    flex-shrink: 0;
}

.avatar-circle {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: linear-gradient(135deg, #dc3545 0%, #c82333 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 25px rgba(220, 53, 69, 0.3);
}

.avatar-initials {
    color: white;
    font-size: 1.5rem;
    font-weight: 600;
    letter-spacing: 1px;
}

.account-info {
    flex: 1;
}

.account-title {
    font-size: 2rem;
    font-weight: 700;
    color: #212529;
    margin: 0 0 0.5rem 0;
    line-height: 1.2;
}

.account-subtitle {
    font-size: 1.1rem;
    color: #6c757d;
    margin: 0;
    font-weight: 400;
}

/* Account Navigation */
.account-navigation {
    background: white;
    border-radius: 16px;
    padding: 1.5rem;
    margin-bottom: 2rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.account-nav {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
}

.account-nav-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 1.5rem;
    border-radius: 12px;
    text-decoration: none;
    color: #495057;
    font-weight: 500;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.account-nav-item:hover {
    background: #f8f9fa;
    color: #dc3545;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.account-nav-item.active {
    background: linear-gradient(135deg, #dc3545 0%, #c82333 100%);
    color: white;
    box-shadow: 0 4px 15px rgba(220, 53, 69, 0.3);
}

.nav-icon {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.nav-label {
    font-size: 0.95rem;
}

/* Account Content */
.account-content {
    background: white;
    border-radius: 16px;
    padding: 2rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.account-content-inner {
    min-height: 400px;
}

/* Dashboard Styles */
.account-dashboard {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.dashboard-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin-bottom: 1rem;
}

.stat-card {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-radius: 12px;
    padding: 1.5rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.stat-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: linear-gradient(135deg, #dc3545 0%, #c82333 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    flex-shrink: 0;
}

.stat-content {
    flex: 1;
}

.stat-number {
    font-size: 1.8rem;
    font-weight: 700;
    color: #212529;
    margin: 0 0 0.25rem 0;
    line-height: 1;
}

.stat-label {
    font-size: 0.9rem;
    color: #6c757d;
    margin: 0;
    font-weight: 500;
}

/* Dashboard Sections */
.dashboard-section {
    background: #f8f9fa;
    border-radius: 12px;
    padding: 1.5rem;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid #e9ecef;
}

.section-title {
    font-size: 2rem;
    font-weight: 700;
    color: #212529;
    margin: 0 0 2rem 0;
    letter-spacing: -0.02em;
}

.section-link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #dc3545;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.section-link:hover {
    color: #c82333;
    transform: translateX(2px);
}

/* Recent Orders */
.recent-orders {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.order-item {
    background: white;
    border-radius: 8px;
    padding: 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border: 1px solid #e9ecef;
    transition: all 0.3s ease;
}

.order-item:hover {
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transform: translateY(-1px);
}

.order-info {
    flex: 1;
}

.order-number {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 0.5rem;
}

.order-number strong {
    color: #212529;
    font-weight: 600;
}

.order-status {
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.status-completed {
    background: #d4edda;
    color: #155724;
}

.status-processing {
    background: #cce5ff;
    color: #004085;
}

.status-on-hold {
    background: #fff3cd;
    color: #856404;
}

.order-details {
    display: flex;
    gap: 1rem;
    font-size: 0.9rem;
    color: #6c757d;
}

.order-total {
    font-weight: 600;
    color: #dc3545;
}

.order-actions {
    flex-shrink: 0;
}

/* Empty State */
.empty-state {
    text-align: center;
    padding: 3rem 2rem;
    color: #6c757d;
}

.empty-icon {
    margin-bottom: 1rem;
    opacity: 0.5;
}

.empty-state h3 {
    font-size: 1.2rem;
    font-weight: 600;
    color: #495057;
    margin: 0 0 0.5rem 0;
}

.empty-state p {
    margin: 0 0 1.5rem 0;
    font-size: 0.95rem;
}

/* Quick Actions */
.quick-actions {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1rem;
}

.action-card {
    background: white;
    border-radius: 12px;
    padding: 1.5rem;
    text-decoration: none;
    color: inherit;
    border: 2px solid transparent;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.action-card:hover {
    border-color: #dc3545;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(220, 53, 69, 0.15);
    color: inherit;
}

.action-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #dc3545;
    flex-shrink: 0;
}

.action-content h3 {
    font-size: 1rem;
    font-weight: 600;
    color: #212529;
    margin: 0 0 0.25rem 0;
}

.action-content p {
    font-size: 0.85rem;
    color: #6c757d;
    margin: 0;
}

/* Account Details Form */
.account-details-form {
    max-width: 600px;
}

.form-header {
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid #e9ecef;
}

.form-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: #212529;
    margin: 0 0 0.5rem 0;
}

.form-description {
    color: #6c757d;
    margin: 0;
    font-size: 0.95rem;
}

.form-section {
    margin-bottom: 2rem;
}

.section-title {
    font-size: 1.1rem;
    font-weight: 600;
    color: #212529;
    margin: 0 0 1rem 0;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid #e9ecef;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-label {
    display: block;
    font-weight: 500;
    color: #495057;
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
}

.form-label .required {
    color: #dc3545;
}

.form-input {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 2px solid #e9ecef;
    border-radius: 8px;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    background: white;
}

.form-input:focus {
    outline: none;
    border-color: #dc3545;
    box-shadow: 0 0 0 3px rgba(220, 53, 69, 0.1);
}

.form-help {
    display: block;
    font-size: 0.8rem;
    color: #6c757d;
    margin-top: 0.25rem;
    font-style: italic;
}

.form-actions {
    padding-top: 1rem;
    border-top: 2px solid #e9ecef;
    display: flex;
    justify-content: flex-end;
}

/* Button Styles */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    cursor: pointer;
    font-size: 0.9rem;
}

.btn-primary {
    background: linear-gradient(135deg, #dc3545 0%, #c82333 100%);
    color: white;
    border-color: #dc3545;
}

.btn-primary:hover {
    background: linear-gradient(135deg, #c82333 0%, #a71e2a 100%);
    transform: translateY(-1px);
    box-shadow: 0 4px 15px rgba(220, 53, 69, 0.3);
    color: white;
}

.btn-outline {
    background: transparent;
    color: #dc3545;
    border-color: #dc3545;
}

.btn-outline:hover {
    background: #dc3545;
    color: white;
    transform: translateY(-1px);
    box-shadow: 0 4px 15px rgba(220, 53, 69, 0.2);
}

/* Responsive Design */
@media (max-width: 768px) {
    .my-account-container {
        padding: 0 0.5rem;
    }
    
    .account-header {
        padding: 1.5rem;
    }
    
    .account-welcome {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .account-title {
        font-size: 1.5rem;
    }
    
    .account-nav {
        grid-template-columns: 1fr;
    }
    
    .account-content {
        padding: 1.5rem;
    }
    
    .dashboard-stats {
        grid-template-columns: 1fr;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .order-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }
    
    .order-details {
        flex-direction: column;
        gap: 0.25rem;
    }
    
    .quick-actions {
        grid-template-columns: 1fr;
    }
    
    .action-card {
        flex-direction: column;
        text-align: center;
    }
}

/* Reviews Modal Styles */
.reviews-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    z-index: 10000;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 2rem;
    box-sizing: border-box;
}

.reviews-modal-content {
    background: white;
    border-radius: 8px;
    max-width: 800px;
    width: 100%;
    max-height: 80vh;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.reviews-modal-header {
    padding: 1.5rem;
    border-bottom: 1px solid #e0e0e0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #f8f9fa;
}

.reviews-modal-header h3 {
    margin: 0;
    color: #333;
    font-size: 1.5rem;
}

.reviews-modal-close {
    background: none;
    border: none;
    font-size: 2rem;
    cursor: pointer;
    color: #666;
    padding: 0;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.reviews-modal-close:hover {
    background: #e0e0e0;
    color: #333;
}

.reviews-modal-body {
    padding: 1.5rem;
    overflow-y: auto;
    flex: 1;
}

.reviews-modal-body .review-item {
    margin-bottom: 1.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid #f0f0f0;
}

.reviews-modal-body .review-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

@media (max-width: 768px) {
    .reviews-modal {
        padding: 1rem;
    }
    
    .reviews-modal-content {
        max-height: 90vh;
    }
    
    .reviews-modal-header {
        padding: 1rem;
    }
    
    .reviews-modal-header h3 {
        font-size: 1.25rem;
    }
    
    .reviews-modal-body {
        padding: 1rem;
    }
}
