/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    font-size: 16px;
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f8f9fa;
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

@media (min-width: 768px) {
    .container {
        padding: 0 2rem;
    }
}

/* Skip Link for Accessibility */
.skip-link {
    position: absolute;
    top: -40px;
    left: 6px;
    background: #000;
    color: #fff;
    padding: 8px;
    text-decoration: none;
    z-index: 10000;
    border-radius: 4px;
}

.skip-link:focus {
    top: 6px;
}

/* Header Styles */
.header {
    background: #fff;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-top {
    background: #232f3e;
    color: #fff;
    padding: 0.75rem 0;
}

.header-content {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
}

@media (max-width: 768px) {
    .header-content {
        flex-direction: column;
        gap: 0.75rem;
    }
}

/* Logo */
.logo a {
    font-size: 1.75rem;
    font-weight: 700;
    color: #fff;
    text-decoration: none;
    letter-spacing: -0.5px;
}

@media (max-width: 768px) {
    .logo a {
        font-size: 1.5rem;
    }
}

/* Location Selector */
.location-selector {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
    padding: 0.5rem;
    border-radius: 4px;
    transition: background-color 0.2s;
}

.location-selector:hover {
    background: rgba(255,255,255,0.1);
}

.location-icon {
    font-size: 1.2rem;
}

.location-text {
    display: flex;
    flex-direction: column;
    font-size: 0.875rem;
}

.deliver-to {
    color: #ccc;
    font-size: 0.75rem;
}

.location-name {
    font-weight: 600;
}

@media (max-width: 768px) {
    .location-selector {
        display: none;
    }
}

/* Search Bar */
.search-bar {
    display: flex;
    flex: 1;
    max-width: 600px;
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.category-selector {
    background: #f3f3f3;
    border: none;
    padding: 0.75rem;
    font-size: 0.875rem;
    cursor: pointer;
    border-right: 1px solid #ddd;
}

.search-bar input {
    flex: 1;
    border: none;
    padding: 0.75rem;
    font-size: 1rem;
    outline: none;
}

.search-btn {
    background: #ff9900;
    border: none;
    padding: 0.75rem 1rem;
    cursor: pointer;
    font-size: 1.2rem;
    transition: background-color 0.2s;
}

.search-btn:hover {
    background: #e88900;
}

@media (max-width: 768px) {
    .search-bar {
        order: -1;
        width: 100%;
        max-width: none;
    }
    
    .category-selector {
        display: none;
    }
}

/* Header Actions */
.header-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.account-menu,
.orders-link,
.cart-link {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    color: #fff;
    padding: 0.5rem;
    border-radius: 4px;
    transition: background-color 0.2s;
    font-size: 0.875rem;
}

.account-menu:hover,
.orders-link:hover,
.cart-link:hover {
    background: rgba(255,255,255,0.1);
}

.greeting,
.returns {
    font-size: 0.75rem;
    color: #ccc;
}

.account-text,
.orders {
    font-weight: 600;
}

.cart-link {
    position: relative;
}

.cart-icon {
    position: relative;
    font-size: 1.5rem;
}

.cart-count {
    position: absolute;
    top: -8px;
    right: -8px;
    background: #ff9900;
    color: #fff;
    border-radius: 50%;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    font-weight: 600;
}

@media (max-width: 768px) {
    .header-actions {
        gap: 0.5rem;
    }
    
    .account-menu,
    .orders-link,
    .cart-link {
        font-size: 0.75rem;
        padding: 0.25rem;
    }
    
    .greeting,
    .returns {
        display: none;
    }
}

/* Header Navigation */
.header-nav {
    background: #37475a;
    padding: 0.5rem 0;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 1rem;
    overflow-x: auto;
    padding-bottom: 0.25rem;
}

.nav-link {
    color: #fff;
    text-decoration: none;
    padding: 0.5rem 0.75rem;
    border-radius: 4px;
    transition: background-color 0.2s;
    white-space: nowrap;
    font-size: 0.875rem;
}

.nav-link:hover {
    background: rgba(255,255,255,0.1);
}

@media (max-width: 768px) {
    .nav-links {
        gap: 0.5rem;
    }
    
    .nav-link {
        font-size: 0.8rem;
        padding: 0.4rem 0.6rem;
    }
}

/* Main Content */
.main-content {
    min-height: calc(100vh - 200px);
}

/* Hero Banner */
.hero-banner {
    position: relative;
    height: 400px;
    overflow: hidden;
    margin-bottom: 2rem;
}

.banner-carousel {
    position: relative;
    height: 100%;
}

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

.banner-slide.active {
    opacity: 1;
}

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

.banner-content {
    position: absolute;
    top: 50%;
    left: 2rem;
    transform: translateY(-50%);
    color: #fff;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.7);
}

.banner-content h2 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

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

.cta-btn {
    background: #ff9900;
    color: #fff;
    padding: 1rem 2rem;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    transition: background-color 0.2s;
    display: inline-block;
}

.cta-btn:hover {
    background: #e88900;
}

.banner-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0,0,0,0.5);
    color: #fff;
    border: none;
    padding: 1rem;
    cursor: pointer;
    font-size: 1.5rem;
    border-radius: 50%;
    transition: background-color 0.2s;
}

.banner-nav:hover {
    background: rgba(0,0,0,0.7);
}

.banner-nav.prev {
    left: 1rem;
}

.banner-nav.next {
    right: 1rem;
}

@media (max-width: 768px) {
    .hero-banner {
        height: 250px;
        margin-bottom: 1rem;
    }
    
    .banner-content {
        left: 1rem;
        right: 1rem;
    }
    
    .banner-content h2 {
        font-size: 2rem;
    }
    
    .banner-content p {
        font-size: 1rem;
        margin-bottom: 1rem;
    }
    
    .cta-btn {
        padding: 0.75rem 1.5rem;
        font-size: 0.875rem;
    }
    
    .banner-nav {
        display: none;
    }
}

/* Section Styles */
.section-title {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 2rem;
    color: #232f3e;
}

@media (max-width: 768px) {
    .section-title {
        font-size: 1.5rem;
        margin-bottom: 1rem;
    }
}

/* Categories Section */
.categories-section {
    padding: 3rem 0;
    background: #fff;
    margin-bottom: 2rem;
}

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

.category-card {
    text-decoration: none;
    color: #333;
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    transition: transform 0.2s, box-shadow 0.2s;
}

.category-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.15);
}

.category-card img {
    width: 100%;
    height: 150px;
    object-fit: cover;
}

.category-card h3 {
    padding: 1rem;
    font-size: 1.125rem;
    font-weight: 600;
    text-align: center;
}

@media (max-width: 768px) {
    .categories-section {
        padding: 2rem 0;
    }
    
    .categories-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    
    .category-card img {
        height: 120px;
    }
    
    .category-card h3 {
        font-size: 1rem;
        padding: 0.75rem;
    }
}

/* Product Recommendations */
.recommendations-section {
    padding: 3rem 0;
    background: #fff;
    margin-bottom: 2rem;
}

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

.product-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    transition: transform 0.2s, box-shadow 0.2s;
    position: relative;
}

.product-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.15);
}

.product-card a {
    text-decoration: none;
    color: inherit;
    display: block;
}

.product-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.product-info {
    padding: 1rem;
}

.product-info h3 {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    line-height: 1.4;
}

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

.stars {
    color: #ffa500;
    font-size: 0.875rem;
}

.rating-count {
    color: #666;
    font-size: 0.875rem;
}

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

.current-price {
    font-size: 1.25rem;
    font-weight: 700;
    color: #b12704;
}

.original-price {
    font-size: 1rem;
    color: #666;
    text-decoration: line-through;
}

.add-to-cart-btn {
    width: 100%;
    background: #ff9900;
    color: #fff;
    border: none;
    padding: 0.75rem;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.2s;
    margin-top: 0.5rem;
}

.add-to-cart-btn:hover {
    background: #e88900;
}

@media (max-width: 768px) {
    .recommendations-section {
        padding: 2rem 0;
    }
    
    .product-row {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    
    .product-card img {
        height: 150px;
    }
    
    .product-info {
        padding: 0.75rem;
    }
    
    .product-info h3 {
        font-size: 1rem;
    }
    
    .current-price {
        font-size: 1.125rem;
    }
    
    .add-to-cart-btn {
        padding: 0.6rem;
        font-size: 0.875rem;
    }
}

/* Footer */
.footer {
    background: #232f3e;
    color: #fff;
    margin-top: 3rem;
}

.footer-top {
    padding: 3rem 0;
}

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

.footer-column h4 {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #fff;
}

.footer-column ul {
    list-style: none;
}

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

.footer-column a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.2s;
}

.footer-column a:hover {
    color: #fff;
}

.footer-bottom {
    background: #131a22;
    padding: 1.5rem 0;
    text-align: center;
    border-top: 1px solid #3a4553;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 1rem;
    flex-wrap: wrap;
}

.footer-links a {
    color: #ccc;
    text-decoration: none;
    font-size: 0.875rem;
    transition: color 0.2s;
}

.footer-links a:hover {
    color: #fff;
}

.footer-bottom p {
    color: #ccc;
    font-size: 0.875rem;
}

@media (max-width: 768px) {
    .footer-top {
        padding: 2rem 0;
    }
    
    .footer-columns {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    .footer-links {
        flex-direction: column;
        gap: 0.5rem;
    }
}

/* Breadcrumb */
.breadcrumb {
    background: #f8f9fa;
    padding: 1rem 0;
    font-size: 0.875rem;
}

.breadcrumb a {
    color: #007185;
    text-decoration: none;
}

.breadcrumb a:hover {
    text-decoration: underline;
}

/* Product Page */
.product-page {
    padding: 2rem 0;
    background: #fff;
}

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

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

.main-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 8px;
    border: 1px solid #ddd;
}

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

.thumbnail-images img {
    width: 60px;
    height: 60px;
    object-fit: cover;
    border-radius: 4px;
    border: 2px solid transparent;
    cursor: pointer;
    transition: border-color 0.2s;
}

.thumbnail-images img:hover,
.thumbnail-images img.active-thumbnail {
    border-color: #ff9900;
}

.product-info h1 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    line-height: 1.4;
}

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

.product-rating a {
    color: #007185;
    text-decoration: none;
}

.product-rating a:hover {
    text-decoration: underline;
}

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

.deal-badge {
    background: #cc0c39;
    color: #fff;
    padding: 0.25rem 0.5rem;
    border-radius: 4px;
    font-size: 0.75rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    display: inline-block;
}

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

.current-price {
    font-size: 2rem;
    font-weight: 700;
    color: #b12704;
}

.original-price {
    font-size: 1.25rem;
    color: #666;
    text-decoration: line-through;
}

.discount {
    background: #cc0c39;
    color: #fff;
    padding: 0.25rem 0.5rem;
    border-radius: 4px;
    font-size: 0.875rem;
    font-weight: 600;
}

.price-details {
    color: #007185;
    font-size: 0.875rem;
}

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

.variant-group {
    margin-bottom: 1rem;
}

.variant-group h4 {
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.color-options {
    display: flex;
    gap: 0.5rem;
}

.color-option {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    border: 2px solid transparent;
    cursor: pointer;
    transition: border-color 0.2s;
}

.color-option.active,
.color-option:hover {
    border-color: #ff9900;
}

.size-select {
    padding: 0.5rem;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 0.875rem;
}

.product-highlights ul {
    list-style: none;
    padding-left: 0;
}

.product-highlights li {
    margin-bottom: 0.5rem;
    position: relative;
    padding-left: 1rem;
}

.product-highlights li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #007185;
    font-weight: 600;
}

.purchase-section {
    position: sticky;
    top: 120px;
    height: fit-content;
}

.purchase-card {
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 1.5rem;
}

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

.price-display .current-price {
    font-size: 1.75rem;
}

.shipping-info {
    margin-bottom: 1rem;
    font-size: 0.875rem;
}

.shipping-info p {
    margin-bottom: 0.25rem;
}

.time-left {
    color: #cc0c39;
    font-weight: 600;
}

.stock-info {
    margin-bottom: 1rem;
    font-size: 0.875rem;
}

.in-stock {
    color: #007600;
    font-weight: 600;
}

.quantity-selector {
    margin-bottom: 1rem;
}

.quantity-selector select {
    padding: 0.5rem;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 0.875rem;
    margin-left: 0.5rem;
}

.purchase-buttons {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.buy-now-btn {
    background: #ffa41c;
    color: #000;
    border: none;
    padding: 0.75rem;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.2s;
}

.buy-now-btn:hover {
    background: #ff8f00;
}

.additional-options {
    margin-bottom: 1rem;
}

.wishlist-btn {
    background: none;
    border: none;
    color: #007185;
    cursor: pointer;
    font-size: 0.875rem;
    text-decoration: underline;
}

.security-info {
    font-size: 0.75rem;
    color: #666;
    line-height: 1.4;
}

.security-info p {
    margin-bottom: 0.25rem;
}

@media (max-width: 1024px) {
    .product-layout {
        grid-template-columns: 1fr 300px;
        gap: 1.5rem;
    }
    
    .product-info {
        order: 2;
    }
    
    .purchase-section {
        order: 1;
        position: static;
    }
}

@media (max-width: 768px) {
    .product-layout {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .product-info,
    .purchase-section {
        order: initial;
    }
    
    .main-image img {
        height: 300px;
    }
    
    .product-info h1 {
        font-size: 1.25rem;
    }
    
    .current-price {
        font-size: 1.5rem;
    }
    
    .price-display .current-price {
        font-size: 1.5rem;
    }
}

/* Product Details Tabs */
.product-details-tabs {
    margin-top: 3rem;
}

.tab-nav {
    display: flex;
    border-bottom: 2px solid #ddd;
    margin-bottom: 2rem;
    overflow-x: auto;
}

.tab-btn {
    background: none;
    border: none;
    padding: 1rem 1.5rem;
    cursor: pointer;
    font-size: 1rem;
    font-weight: 600;
    color: #666;
    border-bottom: 2px solid transparent;
    transition: color 0.2s, border-color 0.2s;
    white-space: nowrap;
}

.tab-btn.active,
.tab-btn:hover {
    color: #ff9900;
    border-bottom-color: #ff9900;
}

.tab-panel {
    display: none;
}

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

.specs-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 1rem;
}

.specs-table td {
    padding: 0.75rem;
    border-bottom: 1px solid #ddd;
}

.specs-table td:first-child {
    font-weight: 600;
    background: #f8f9fa;
    width: 30%;
}

.review-summary {
    display: flex;
    gap: 2rem;
    margin-bottom: 2rem;
    align-items: flex-start;
}

.overall-rating {
    text-align: center;
}

.rating-number {
    font-size: 3rem;
    font-weight: 700;
    color: #ff9900;
    display: block;
}

.rating-breakdown {
    flex: 1;
}

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

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

.fill {
    height: 100%;
    background: #ff9900;
}

.review-list {
    margin-top: 2rem;
}

.review-item {
    border-bottom: 1px solid #ddd;
    padding-bottom: 1.5rem;
    margin-bottom: 1.5rem;
}

.reviewer-info {
    display: flex;
    gap: 1rem;
    margin-bottom: 0.5rem;
    font-size: 0.875rem;
    color: #666;
}

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

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

.review-helpful {
    margin-top: 1rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 0.875rem;
}

.review-helpful button {
    background: none;
    border: 1px solid #ddd;
    padding: 0.25rem 0.5rem;
    border-radius: 4px;
    cursor: pointer;
    font-size: 0.75rem;
    transition: background-color 0.2s;
}

.review-helpful button:hover {
    background: #f8f9fa;
}

@media (max-width: 768px) {
    .tab-nav {
        gap: 0;
    }
    
    .tab-btn {
        padding: 0.75rem 1rem;
        font-size: 0.875rem;
    }
    
    .review-summary {
        flex-direction: column;
        gap: 1rem;
    }
    
    .rating-number {
        font-size: 2rem;
    }
    
    .specs-table td {
        padding: 0.5rem;
        font-size: 0.875rem;
    }
}

/* Category Page */
.category-page {
    padding: 2rem 0;
    background: #fff;
}

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

.filters-sidebar {
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 1.5rem;
    height: fit-content;
    position: sticky;
    top: 120px;
}

.filters-sidebar h3 {
    margin-bottom: 1.5rem;
    font-weight: 600;
    color: #232f3e;
}

.filter-group {
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid #ddd;
}

.filter-group:last-child {
    border-bottom: none;
    margin-bottom: 0;
}

.filter-group h4 {
    margin-bottom: 1rem;
    font-weight: 600;
    color: #333;
}

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

.price-input {
    width: 60px;
    padding: 0.25rem;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 0.875rem;
}

.apply-price-btn {
    background: #f0f2f2;
    border: 1px solid #adb1b8;
    padding: 0.25rem 0.5rem;
    border-radius: 4px;
    cursor: pointer;
    font-size: 0.75rem;
}

.price-ranges,
.brand-filters,
.rating-filters,
.availability-filters {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.price-ranges label,
.brand-filters label,
.rating-filters label,
.availability-filters label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    cursor: pointer;
}

.products-section {
    min-height: 600px;
}

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

.category-header h1 {
    font-size: 2rem;
    font-weight: 700;
    color: #232f3e;
}

.results-info {
    color: #666;
    font-size: 0.875rem;
}

.sort-options {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.sort-select {
    padding: 0.5rem;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 0.875rem;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.5rem;
    margin-top: 3rem;
}

.page-btn {
    background: #fff;
    border: 1px solid #ddd;
    padding: 0.5rem 0.75rem;
    cursor: pointer;
    border-radius: 4px;
    transition: background-color 0.2s;
}

.page-btn:hover:not(.disabled) {
    background: #f8f9fa;
}

.page-btn.active {
    background: #ff9900;
    color: #fff;
    border-color: #ff9900;
}

.page-btn.disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

@media (max-width: 1024px) {
    .category-layout {
        grid-template-columns: 200px 1fr;
        gap: 1rem;
    }
    
    .filters-sidebar {
        padding: 1rem;
    }
}

@media (max-width: 768px) {
    .category-layout {
        grid-template-columns: 1fr;
    }
    
    .filters-sidebar {
        position: static;
        order: 2;
        margin-top: 2rem;
    }
    
    .category-header {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .category-header h1 {
        font-size: 1.5rem;
    }
    
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    
    .pagination {
        flex-wrap: wrap;
    }
}

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

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

.cart-items-section {
    background: #fff;
    border-radius: 8px;
    padding: 1.5rem;
}

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

.cart-header h1 {
    font-size: 1.75rem;
    font-weight: 700;
}

.item-count {
    color: #666;
    font-size: 0.875rem;
}

.deselect-all {
    color: #007185;
    text-decoration: none;
    font-size: 0.875rem;
}

.price-label {
    font-weight: 600;
    color: #666;
}

.cart-item {
    display: grid;
    grid-template-columns: auto 100px 1fr auto;
    gap: 1rem;
    padding: 1.5rem 0;
    border-bottom: 1px solid #ddd;
    align-items: start;
}

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

.cart-item img {
    width: 100px;
    height: 100px;
    object-fit: cover;
    border-radius: 4px;
}

.item-details h3 {
    margin-bottom: 0.5rem;
}

.item-details h3 a {
    color: #007185;
    text-decoration: none;
    font-weight: 600;
}

.item-details h3 a:hover {
    text-decoration: underline;
}

.item-status.in-stock {
    color: #007600;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.shipping-info,
.eligibility {
    color: #666;
    font-size: 0.875rem;
    margin-bottom: 0.25rem;
}

.item-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-top: 1rem;
    flex-wrap: wrap;
}

.quantity-selector select {
    padding: 0.25rem;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 0.875rem;
}

.action-btn {
    background: none;
    border: none;
    color: #007185;
    cursor: pointer;
    font-size: 0.875rem;
    text-decoration: underline;
    padding: 0;
}

.action-btn:hover {
    color: #c7511f;
}

.item-price {
    text-align: right;
}

.item-price .price {
    font-size: 1.125rem;
    font-weight: 700;
    color: #b12704;
}

.order-summary {
    position: sticky;
    top: 120px;
    height: fit-content;
}

.summary-card {
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 1.5rem;
    margin-bottom: 1rem;
}

.free-shipping-notice {
    background: #ddf4ff;
    color: #0f1111;
    padding: 1rem;
    border-radius: 4px;
    font-size: 0.875rem;
    margin-bottom: 1rem;
}

.subtotal-section {
    margin-bottom: 1.5rem;
}

.subtotal-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.subtotal-amount {
    font-size: 1.25rem;
    font-weight: 700;
    color: #b12704;
}

.checkout-btn {
    width: 100%;
    background: #ffd814;
    border: 1px solid #fcd200;
    color: #0f1111;
    padding: 0.75rem;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.2s;
}

.checkout-btn:hover {
    background: #f7ca00;
}

.gift-options,
.recommended-accessories {
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 1rem;
    margin-bottom: 1rem;
}

.gift-options h4,
.recommended-accessories h4 {
    margin-bottom: 0.75rem;
    font-weight: 600;
}

.accessory-item {
    display: flex;
    gap: 0.75rem;
    align-items: center;
}

.accessory-item img {
    width: 50px;
    height: 50px;
    object-fit: cover;
    border-radius: 4px;
}

.accessory-info h5 {
    font-size: 0.875rem;
    margin-bottom: 0.25rem;
}

.accessory-info span {
    color: #b12704;
    font-weight: 600;
    font-size: 0.875rem;
}

.add-accessory-btn {
    background: #fff;
    border: 1px solid #d5d9d9;
    color: #0f1111;
    padding: 0.25rem 0.5rem;
    border-radius: 4px;
    cursor: pointer;
    font-size: 0.75rem;
    margin-top: 0.25rem;
}

.saved-for-later {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid #ddd;
}

.saved-for-later h3 {
    margin-bottom: 1rem;
    font-weight: 600;
}

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

.saved-item img {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 4px;
}

.saved-item-info h4 {
    margin-bottom: 0.5rem;
    font-size: 1rem;
}

.saved-item-info .price {
    color: #b12704;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.saved-actions {
    display: flex;
    gap: 1rem;
}

.saved-actions button {
    background: none;
    border: none;
    color: #007185;
    cursor: pointer;
    font-size: 0.875rem;
    text-decoration: underline;
}

@media (max-width: 1024px) {
    .cart-layout {
        grid-template-columns: 1fr 250px;
        gap: 1rem;
    }
}

@media (max-width: 768px) {
    .cart-layout {
        grid-template-columns: 1fr;
    }
    
    .order-summary {
        position: static;
        order: -1;
    }
    
    .cart-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }
    
    .cart-item {
        grid-template-columns: auto 80px 1fr;
        gap: 0.75rem;
    }
    
    .cart-item img {
        width: 80px;
        height: 80px;
    }
    
    .item-price {
        grid-column: 1 / -1;
        text-align: left;
        margin-top: 0.5rem;
    }
    
    .item-actions {
        gap: 0.5rem;
    }
}

/* Checkout Page */
.checkout-header {
    background: #fff;
    border-bottom: 1px solid #ddd;
    padding: 1rem 0;
}

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

.checkout-logo a {
    font-size: 1.5rem;
    font-weight: 700;
    color: #232f3e;
    text-decoration: none;
}

.checkout-security {
    color: #666;
    font-size: 0.875rem;
}

.checkout-progress {
    background: #f8f9fa;
    padding: 1rem 0;
    border-bottom: 1px solid #ddd;
}

.progress-bar {
    display: flex;
    justify-content: center;
    gap: 2rem;
}

.progress-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    opacity: 0.5;
    transition: opacity 0.2s;
}

.progress-step.active {
    opacity: 1;
}

.step-number {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: #ddd;
    color: #666;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 0.875rem;
}

.progress-step.active .step-number {
    background: #ff9900;
    color: #fff;
}

.step-title {
    font-size: 0.875rem;
    font-weight: 600;
}

.checkout-page {
    padding: 2rem 0;
    background: #f8f9fa;
}

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

.checkout-steps {
    background: #fff;
    border-radius: 8px;
    padding: 2rem;
}

.checkout-step {
    display: none;
}

.checkout-step.active {
    display: block;
}

.step-header h2 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: #232f3e;
}

.address-options {
    margin-bottom: 2rem;
}

.address-option {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
    padding: 1rem;
    border: 1px solid #ddd;
    border-radius: 8px;
}

.address-option input[type="radio"] {
    margin-top: 0.25rem;
}

.address-card h4 {
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.address-card p {
    color: #666;
    font-size: 0.875rem;
    line-height: 1.4;
}

.edit-address-btn {
    background: none;
    border: none;
    color: #007185;
    cursor: pointer;
    font-size: 0.875rem;
    text-decoration: underline;
    margin-left: auto;
}

.add-new-address {
    margin-top: 1rem;
}

.add-address-btn {
    background: #fff;
    border: 1px solid #d5d9d9;
    color: #0f1111;
    padding: 0.75rem 1rem;
    border-radius: 8px;
    cursor: pointer;
    font-size: 0.875rem;
    transition: background-color 0.2s;
}

.add-address-btn:hover {
    background: #f7f8f8;
}

.address-form {
    margin-top: 1.5rem;
    padding: 1.5rem;
    border: 1px solid #ddd;
    border-radius: 8px;
    background: #f8f9fa;
}

.address-form.hidden {
    display: none;
}

.address-form h4 {
    margin-bottom: 1rem;
    font-weight: 600;
}

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

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

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    font-size: 0.875rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 0.875rem;
}

.form-group textarea {
    resize: vertical;
    min-height: 100px;
}

.form-actions {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
}

.save-address-btn {
    background: #ff9900;
    color: #fff;
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 600;
}

.cancel-btn {
    background: #fff;
    border: 1px solid #d5d9d9;
    color: #0f1111;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    cursor: pointer;
}

.delivery-options,
.payment-options {
    margin-bottom: 2rem;
}

.delivery-option,
.payment-option {
    margin-bottom: 1rem;
}

.delivery-option input[type="radio"],
.payment-option input[type="radio"] {
    margin-right: 1rem;
}

.delivery-card,
.payment-card {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem;
    border: 1px solid #ddd;
    border-radius: 8px;
    cursor: pointer;
    transition: border-color 0.2s;
}

.delivery-option input[type="radio"]:checked + label .delivery-card,
.payment-option input[type="radio"]:checked + label .payment-card {
    border-color: #ff9900;
}

.delivery-info h4,
.payment-card h4 {
    margin-bottom: 0.25rem;
    font-weight: 600;
}

.delivery-info p {
    color: #666;
    font-size: 0.875rem;
}

.delivery-note {
    color: #007185;
    font-size: 0.75rem;
}

.delivery-price {
    font-weight: 700;
    color: #b12704;
}

.payment-form {
    margin-top: 1rem;
    padding: 1rem;
    border: 1px solid #ddd;
    border-radius: 8px;
    background: #f8f9fa;
}

.step-actions {
    display: flex;
    justify-content: space-between;
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid #ddd;
}

.back-btn {
    background: #fff;
    border: 1px solid #d5d9d9;
    color: #0f1111;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    cursor: pointer;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
}

.continue-btn,
.place-order-btn {
    background: #ff9900;
    color: #fff;
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 600;
}

.place-order-btn {
    background: #ffd814;
    color: #0f1111;
    font-size: 1rem;
    padding: 1rem 2rem;
}

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

.review-section {
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid #ddd;
}

.review-section:last-child {
    border-bottom: none;
}

.review-section h3 {
    margin-bottom: 1rem;
    font-weight: 600;
}

.review-item {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.change-btn {
    background: none;
    border: none;
    color: #007185;
    cursor: pointer;
    font-size: 0.875rem;
    text-decoration: underline;
}

.order-items {
    margin-top: 1rem;
}

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

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

.order-item img {
    width: 60px;
    height: 60px;
    object-fit: cover;
    border-radius: 4px;
}

.item-info {
    flex: 1;
}

.item-info h4 {
    margin-bottom: 0.25rem;
    font-weight: 600;
}

.item-info p {
    color: #666;
    font-size: 0.875rem;
}

.item-price {
    font-weight: 700;
    color: #b12704;
}

@media (max-width: 1024px) {
    .checkout-layout {
        grid-template-columns: 1fr 250px;
        gap: 1rem;
    }
}

@media (max-width: 768px) {
    .checkout-layout {
        grid-template-columns: 1fr;
    }
    
    .order-summary {
        order: -1;
        position: static;
    }
    
    .progress-bar {
        gap: 1rem;
        overflow-x: auto;
        padding-bottom: 0.5rem;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .step-actions {
        flex-direction: column;
        gap: 1rem;
    }
    
    .checkout-header .container {
        flex-direction: column;
        gap: 0.5rem;
        text-align: center;
    }
}

/* Orders Page */
.orders-page {
    padding: 2rem 0;
    background: #f8f9fa;
}

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

.orders-header h1 {
    font-size: 2rem;
    font-weight: 700;
    color: #232f3e;
}

.orders-filter {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.filter-btn {
    background: #fff;
    border: 1px solid #d5d9d9;
    color: #0f1111;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    cursor: pointer;
    font-size: 0.875rem;
    transition: all 0.2s;
}

.filter-btn.active,
.filter-btn:hover {
    background: #ff9900;
    color: #fff;
    border-color: #ff9900;
}

.orders-search {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 2rem;
}

.search-orders {
    flex: 1;
    max-width: 400px;
    padding: 0.75rem;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 0.875rem;
}

.search-orders-btn {
    background: #ff9900;
    color: #fff;
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 600;
}

.order-card {
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 8px;
    margin-bottom: 1.5rem;
    overflow: hidden;
}

.order-header {
    background: #f8f9fa;
    padding: 1rem 1.5rem;
    border-bottom: 1px solid #ddd;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.order-info {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.order-detail {
    display: flex;
    flex-direction: column;
}

.order-detail .label {
    font-size: 0.75rem;
    color: #666;
    font-weight: 600;
    text-transform: uppercase;
}

.order-detail .value {
    font-size: 0.875rem;
    color: #333;
    font-weight: 600;
}

.order-actions {
    text-align: right;
}

.order-number {
    font-size: 0.875rem;
    color: #666;
    margin-bottom: 0.25rem;
}

.order-links {
    font-size: 0.875rem;
}

.order-link {
    color: #007185;
    text-decoration: none;
}

.order-link:hover {
    text-decoration: underline;
}

.order-status {
    padding: 1rem 1.5rem;
    border-bottom: 1px solid #ddd;
}

.status-text {
    font-weight: 600;
}

.order-status.delivered .status-text {
    color: #007600;
}

.order-status.shipped .status-text {
    color: #ff9900;
}

.order-status.pending .status-text {
    color: #666;
}

.order-items {
    padding: 1.5rem;
}

.order-item {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    padding: 1rem 0;
    border-bottom: 1px solid #ddd;
}

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

.order-item img {
    width: 100px;
    height: 100px;
    object-fit: cover;
    border-radius: 4px;
}

.item-details {
    flex: 1;
}

.item-details h3 {
    margin-bottom: 0.5rem;
}

.item-details h3 a {
    color: #007185;
    text-decoration: none;
    font-weight: 600;
}

.item-details h3 a:hover {
    text-decoration: underline;
}

.item-details p {
    color: #666;
    font-size: 0.875rem;
    margin-bottom: 0.5rem;
}

.item-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.action-btn {
    background: #fff;
    border: 1px solid #d5d9d9;
    color: #0f1111;
    padding: 0.5rem 1rem;
    border-radius: 4px;
    cursor: pointer;
    font-size: 0.875rem;
    transition: background-color 0.2s;
}

.action-btn:hover {
    background: #f7f8f8;
}

.tracking-info {
    margin-left: auto;
}

.track-btn {
    background: #ff9900;
    color: #fff;
    border: none;
    padding: 0.5rem 1rem;
    border-radius: 4px;
    cursor: pointer;
    font-size: 0.875rem;
    font-weight: 600;
}

@media (max-width: 768px) {
    .orders-header {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .orders-header h1 {
        font-size: 1.5rem;
    }
    
    .order-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }
    
    .order-info {
        gap: 1rem;
    }
    
    .order-actions {
        text-align: left;
        width: 100%;
    }
    
    .order-item {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .order-item img {
        width: 80px;
        height: 80px;
    }
    
    .tracking-info {
        margin-left: 0;
        margin-top: 0.5rem;
    }
    
    .item-actions {
        gap: 0.5rem;
    }
    
    .action-btn {
        padding: 0.4rem 0.8rem;
        font-size: 0.8rem;
    }
}

/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    z-index: 10000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.5);
    backdrop-filter: blur(2px);
}

.modal-content {
    background-color: #fff;
    margin: 5% auto;
    padding: 0;
    border-radius: 8px;
    width: 90%;
    max-width: 500px;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
    animation: modalSlideIn 0.3s ease-out;
}

.modal-content.large {
    max-width: 800px;
}

@keyframes modalSlideIn {
    from {
        opacity: 0;
        transform: translateY(-50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

.modal-header h2 {
    margin: 0;
    font-size: 1.25rem;
    font-weight: 600;
}

.close {
    color: #aaa;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
    line-height: 1;
    padding: 0;
    background: none;
    border: none;
}

.close:hover,
.close:focus {
    color: #000;
}

.modal-actions {
    display: flex;
    justify-content: flex-end;
    gap: 1rem;
    padding: 1.5rem;
    border-top: 1px solid #ddd;
    background: #f8f9fa;
}

@media (max-width: 768px) {
    .modal-content {
        width: 95%;
        margin: 2% auto;
        max-height: 95vh;
    }
    
    .modal-header {
        padding: 1rem;
    }
    
    .modal-actions {
        padding: 1rem;
        flex-direction: column;
    }
}

/* Tracking Modal */
.tracking-details {
    padding: 1.5rem;
}

.tracking-number {
    margin-bottom: 1rem;
    padding: 1rem;
    background: #f8f9fa;
    border-radius: 4px;
    font-family: monospace;
}

.delivery-info {
    margin-bottom: 2rem;
}

.delivery-info p {
    margin-bottom: 0.5rem;
}

.tracking-timeline {
    position: relative;
}

.tracking-timeline::before {
    content: '';
    position: absolute;
    left: 15px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: #ddd;
}

.timeline-item {
    position: relative;
    padding-left: 50px;
    margin-bottom: 2rem;
}

.timeline-icon {
    position: absolute;
    left: 0;
    top: 0;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: #ddd;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.875rem;
}

.timeline-item.completed .timeline-icon {
    background: #007600;
    color: #fff;
}

.timeline-item.active .timeline-icon {
    background: #ff9900;
    color: #fff;
}

.timeline-content h4 {
    margin-bottom: 0.25rem;
    font-weight: 600;
}

.timeline-content p {
    color: #666;
    font-size: 0.875rem;
    margin-bottom: 0.25rem;
}

/* Profile Page */
.profile-page {
    padding: 2rem 0;
    background: #f8f9fa;
}

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

.profile-header h1 {
    font-size: 2rem;
    font-weight: 700;
    color: #232f3e;
    margin-bottom: 0.5rem;
}

.profile-header p {
    color: #666;
    font-size: 1rem;
}

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

.account-card {
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 1.5rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    transition: transform 0.2s, box-shadow 0.2s;
    cursor: pointer;
}

.account-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.card-icon {
    font-size: 2rem;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f8f9fa;
    border-radius: 50%;
}

.card-content {
    flex: 1;
}

.card-content h3 {
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.card-content h3 a {
    color: #232f3e;
    text-decoration: none;
}

.card-content h3 a:hover {
    color: #007185;
}

.card-content p {
    color: #666;
    font-size: 0.875rem;
}

.card-arrow {
    font-size: 1.5rem;
    color: #666;
}

@media (max-width: 768px) {
    .profile-header h1 {
        font-size: 1.5rem;
    }
    
    .account-sections {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .account-card {
        padding: 1rem;
    }
    
    .card-icon {
        font-size: 1.5rem;
        width: 50px;
        height: 50px;
    }
}

/* Security Modal Content */
.security-sections {
    padding: 1.5rem;
}

.security-section {
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid #ddd;
}

.security-section:last-child {
    border-bottom: none;
    margin-bottom: 0;
}

.security-section h3 {
    margin-bottom: 1.5rem;
    font-weight: 600;
    color: #232f3e;
}

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

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

.item-info {
    flex: 1;
}

.item-label {
    font-weight: 600;
    margin-right: 1rem;
}

.item-value {
    color: #666;
}

.status-off {
    color: #cc0c39;
    font-weight: 600;
}

.edit-btn,
.enable-btn {
    background: #fff;
    border: 1px solid #d5d9d9;
    color: #0f1111;
    padding: 0.5rem 1rem;
    border-radius: 4px;
    cursor: pointer;
    font-size: 0.875rem;
}

.enable-btn {
    background: #ff9900;
    color: #fff;
    border-color: #ff9900;
}

/* Addresses Modal Content */
.addresses-content {
    padding: 1.5rem;
}

.add-address-btn {
    width: 100%;
    background: #fff;
    border: 2px dashed #d5d9d9;
    color: #0f1111;
    padding: 1rem;
    border-radius: 8px;
    cursor: pointer;
    font-size: 0.875rem;
    margin-bottom: 1.5rem;
    transition: border-color 0.2s;
}

.add-address-btn:hover {
    border-color: #ff9900;
}

.addresses-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.address-card {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: 1.5rem;
    border: 1px solid #ddd;
    border-radius: 8px;
    background: #f8f9fa;
}

.address-info h4 {
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.address-info p {
    color: #666;
    font-size: 0.875rem;
    line-height: 1.4;
    margin-bottom: 0.5rem;
}

.address-label {
    background: #ff9900;
    color: #fff;
    padding: 0.25rem 0.5rem;
    border-radius: 4px;
    font-size: 0.75rem;
    font-weight: 600;
}

.address-label.default {
    background: #007600;
}

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

.address-actions button {
    background: #fff;
    border: 1px solid #d5d9d9;
    color: #0f1111;
    padding: 0.5rem 1rem;
    border-radius: 4px;
    cursor: pointer;
    font-size: 0.875rem;
    white-space: nowrap;
}

.remove-btn {
    color: #cc0c39 !important;
    border-color: #cc0c39 !important;
}

.default-btn.disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

/* Payment Methods Modal Content */
.payment-methods-content {
    padding: 1.5rem;
}

.add-payment-btn {
    width: 100%;
    background: #fff;
    border: 2px dashed #d5d9d9;
    color: #0f1111;
    padding: 1rem;
    border-radius: 8px;
    cursor: pointer;
    font-size: 0.875rem;
    margin-bottom: 1.5rem;
    transition: border-color 0.2s;
}

.add-payment-btn:hover {
    border-color: #ff9900;
}

.payment-methods-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.payment-card {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem;
    border: 1px solid #ddd;
    border-radius: 8px;
    background: #f8f9fa;
}

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

.card-icon {
    font-size: 2rem;
}

.card-details h4 {
    margin-bottom: 0.25rem;
    font-weight: 600;
}

.card-details p {
    color: #666;
    font-size: 0.875rem;
}

.card-label {
    background: #ff9900;
    color: #fff;
    padding: 0.25rem 0.5rem;
    border-radius: 4px;
    font-size: 0.75rem;
    font-weight: 600;
    margin-top: 0.25rem;
    display: inline-block;
}

.card-label.default {
    background: #007600;
}

.card-actions {
    display: flex;
    gap: 0.5rem;
}

.card-actions button {
    background: #fff;
    border: 1px solid #d5d9d9;
    color: #0f1111;
    padding: 0.5rem 1rem;
    border-radius: 4px;
    cursor: pointer;
    font-size: 0.875rem;
}

/* Preferences Modal Content */
.preferences-content {
    padding: 1.5rem;
}

.preference-section {
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid #ddd;
}

.preference-section:last-child {
    border-bottom: none;
    margin-bottom: 0;
}

.preference-section h3 {
    margin-bottom: 1rem;
    font-weight: 600;
    color: #232f3e;
}

.preference-item {
    margin-bottom: 1rem;
}

.preference-item label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
    font-size: 0.875rem;
}

.preference-select {
    padding: 0.5rem;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 0.875rem;
    width: 200px;
}

.save-preferences-btn {
    background: #ff9900;
    color: #fff;
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 600;
}

/* Wishlist Page */
.wishlist-page {
    padding: 2rem 0;
    background: #f8f9fa;
}

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

.wishlist-header h1 {
    font-size: 2rem;
    font-weight: 700;
    color: #232f3e;
}

.wishlist-actions {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.share-list-btn {
    background: #fff;
    border: 1px solid #d5d9d9;
    color: #0f1111;
    padding: 0.5rem 1rem;
    border-radius: 4px;
    cursor: pointer;
    font-size: 0.875rem;
}

.list-selector {
    padding: 0.5rem;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 0.875rem;
}

.wishlist-filters {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.wishlist-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.wishlist-item {
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 8px;
    overflow: hidden;
    transition: transform 0.2s, box-shadow 0.2s;
}

.wishlist-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.item-image {
    position: relative;
}

.item-image img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.remove-from-wishlist {
    position: absolute;
    top: 0.5rem;
    right: 0.5rem;
    background: rgba(255,255,255,0.9);
    border: none;
    border-radius: 50%;
    width: 30px;
    height: 30px;
    cursor: pointer;
    font-size: 0.875rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.unavailable-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.7);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
}

.item-details {
    padding: 1rem;
}

.item-details h3 {
    margin-bottom: 0.5rem;
    font-size: 1rem;
    font-weight: 600;
}

.item-details h3 a {
    color: #007185;
    text-decoration: none;
}

.item-details h3 a:hover {
    text-decoration: underline;
}

.availability.in-stock {
    color: #007600;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.availability.out-of-stock {
    color: #cc0c39;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.price-drop {
    background: #cc0c39;
    color: #fff;
    padding: 0.25rem 0.5rem;
    border-radius: 4px;
    font-size: 0.75rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    display: inline-block;
}

.item-actions {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
    flex-wrap: wrap;
}

.move-to-cart-btn {
    background: #ff9900;
    color: #fff;
    border: none;
    padding: 0.5rem 1rem;
    border-radius: 4px;
    cursor: pointer;
    font-size: 0.875rem;
    font-weight: 600;
    flex: 1;
}

.compare-btn,
.notify-btn,
.find-similar-btn {
    background: #fff;
    border: 1px solid #d5d9d9;
    color: #0f1111;
    padding: 0.5rem 1rem;
    border-radius: 4px;
    cursor: pointer;
    font-size: 0.875rem;
    flex: 1;
}

.added-date {
    color: #666;
    font-size: 0.75rem;
}

.empty-wishlist {
    text-align: center;
    padding: 3rem;
    background: #fff;
    border-radius: 8px;
}

.empty-wishlist.hidden {
    display: none;
}

.empty-icon {
    font-size: 4rem;
    margin-bottom: 1rem;
}

.empty-wishlist h2 {
    margin-bottom: 1rem;
    color: #232f3e;
}

.empty-wishlist p {
    color: #666;
    margin-bottom: 2rem;
}

.continue-shopping-btn {
    background: #ff9900;
    color: #fff;
    padding: 1rem 2rem;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    display: inline-block;
}

.bulk-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.bulk-btn {
    background: #fff;
    border: 1px solid #d5d9d9;
    color: #0f1111;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    cursor: pointer;
    font-size: 0.875rem;
    font-weight: 600;
}

@media (max-width: 768px) {
    .wishlist-header {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .wishlist-header h1 {
        font-size: 1.5rem;
    }
    
    .wishlist-actions {
        width: 100%;
        justify-content: space-between;
    }
    
    .wishlist-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    
    .item-details {
        padding: 0.75rem;
    }
    
    .item-details h3 {
        font-size: 0.875rem;
    }
    
    .item-actions {
        flex-direction: column;
    }
    
    .bulk-actions {
        flex-direction: column;
    }
}

/* Seller Dashboard */
.seller-header {
    background: #232f3e;
    color: #fff;
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.seller-header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.seller-label {
    background: #ff9900;
    color: #000;
    padding: 0.25rem 0.5rem;
    border-radius: 4px;
    font-size: 0.75rem;
    font-weight: 600;
    margin-left: 0.5rem;
}

.seller-nav ul {
    display: flex;
    list-style: none;
    gap: 1rem;
}

.seller-nav .nav-link {
    color: #fff;
    text-decoration: none;
    padding: 0.5rem 1rem;
    border-radius: 4px;
    transition: background-color 0.2s;
}

.seller-nav .nav-link:hover,
.seller-nav .nav-link.active {
    background: rgba(255,255,255,0.1);
}

.seller-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.store-selector {
    background: #37475a;
    color: #fff;
    border: 1px solid #555;
    padding: 0.5rem;
    border-radius: 4px;
    font-size: 0.875rem;
}

.profile-link {
    color: #fff;
    text-decoration: none;
    font-weight: 600;
}

.seller-dashboard {
    padding: 2rem 0;
    background: #f8f9fa;
}

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

.stat-card {
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 1.5rem;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.stat-icon {
    font-size: 2.5rem;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f8f9fa;
    border-radius: 50%;
}

.stat-content h3 {
    font-size: 2rem;
    font-weight: 700;
    color: #232f3e;
    margin-bottom: 0.25rem;
}

.stat-content p {
    color: #666;
    font-size: 0.875rem;
    margin-bottom: 0.5rem;
}

.stat-change {
    font-size: 0.75rem;
    font-weight: 600;
    padding: 0.25rem 0.5rem;
    border-radius: 4px;
}

.stat-change.positive {
    background: #d4edda;
    color: #155724;
}

.stat-change.neutral {
    background: #f8f9fa;
    color: #666;
}

.quick-actions {
    margin-bottom: 3rem;
}

.quick-actions h2 {
    margin-bottom: 1rem;
    font-weight: 600;
    color: #232f3e;
}

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

.action-btn {
    background: #ff9900;
    color: #fff;
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 600;
    transition: background-color 0.2s;
}

.action-btn:hover {
    background: #e88900;
}

.dashboard-section {
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 1.5rem;
    margin-bottom: 2rem;
}

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

.section-header h2 {
    font-weight: 600;
    color: #232f3e;
}

.view-all-link {
    color: #007185;
    text-decoration: none;
    font-size: 0.875rem;
}

.view-all-link:hover {
    text-decoration: underline;
}

.orders-table {
    overflow-x: auto;
}

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

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

.orders-table th {
    background: #f8f9fa;
    font-weight: 600;
    color: #333;
}

.status {
    padding: 0.25rem 0.5rem;
    border-radius: 4px;
    font-size: 0.75rem;
    font-weight: 600;
}

.status.shipped {
    background: #fff3cd;
    color: #856404;
}

.status.pending {
    background: #f8d7da;
    color: #721c24;
}

.status.delivered {
    background: #d4edda;
    color: #155724;
}

.table-btn {
    background: #fff;
    border: 1px solid #d5d9d9;
    color: #0f1111;
    padding: 0.25rem 0.75rem;
    border-radius: 4px;
    cursor: pointer;
    font-size: 0.75rem;
    margin-right: 0.5rem;
}

.table-btn:hover {
    background: #f7f8f8;
}

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

.performance-item {
    display: flex;
    gap: 1rem;
    align-items: center;
    padding: 1rem;
    border: 1px solid #ddd;
    border-radius: 8px;
    background: #f8f9fa;
}

.performance-item img {
    width: 60px;
    height: 60px;
    object-fit: cover;
    border-radius: 4px;
}

.performance-details {
    flex: 1;
}

.performance-details h4 {
    margin-bottom: 0.25rem;
    font-weight: 600;
}

.performance-details p {
    color: #666;
    font-size: 0.875rem;
    margin-bottom: 0.5rem;
}

.performance-metrics {
    display: flex;
    gap: 1rem;
}

.metric {
    font-size: 0.75rem;
    color: #666;
}

@media (max-width: 768px) {
    .seller-header-content {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .seller-nav ul {
        gap: 0.5rem;
        overflow-x: auto;
        width: 100%;
        padding-bottom: 0.5rem;
    }
    
    .seller-nav .nav-link {
        white-space: nowrap;
        font-size: 0.875rem;
        padding: 0.4rem 0.8rem;
    }
    
    .dashboard-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    
    .stat-card {
        padding: 1rem;
    }
    
    .stat-icon {
        font-size: 2rem;
        width: 50px;
        height: 50px;
    }
    
    .stat-content h3 {
        font-size: 1.5rem;
    }
    
    .action-buttons {
        flex-direction: column;
    }
    
    .orders-table {
        font-size: 0.875rem;
    }
    
    .orders-table th,
    .orders-table td {
        padding: 0.5rem;
    }
    
    .performance-item {
        flex-direction: column;
        text-align: center;
    }
    
    .performance-metrics {
        justify-content: center;
    }
}

/* Admin Dashboard */
.admin-body {
    background: #f8f9fa;
}

.admin-header {
    background: #232f3e;
    color: #fff;
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.admin-header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.admin-label {
    background: #dc3545;
    color: #fff;
    padding: 0.25rem 0.5rem;
    border-radius: 4px;
    font-size: 0.75rem;
    font-weight: 600;
    margin-left: 0.5rem;
}

.admin-nav ul {
    display: flex;
    list-style: none;
    gap: 1rem;
}

.admin-nav .nav-link {
    color: #fff;
    text-decoration: none;
    padding: 0.5rem 1rem;
    border-radius: 4px;
    transition: background-color 0.2s;
}

.admin-nav .nav-link:hover,
.admin-nav .nav-link.active {
    background: rgba(255,255,255,0.1);
}

.admin-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.notification-btn {
    position: relative;
    background: none;
    border: none;
    color: #fff;
    cursor: pointer;
    font-size: 1rem;
    padding: 0.5rem;
    border-radius: 4px;
    transition: background-color 0.2s;
}

.notification-btn:hover {
    background: rgba(255,255,255,0.1);
}

.notification-count {
    position: absolute;
    top: 0;
    right: 0;
    background: #dc3545;
    color: #fff;
    border-radius: 50%;
    width: 18px;
    height: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    font-weight: 600;
}

.admin-profile {
    color: #fff;
    text-decoration: none;
    font-weight: 600;
}

.logout-btn {
    color: #fff;
    text-decoration: none;
    padding: 0.5rem 1rem;
    border: 1px solid #fff;
    border-radius: 4px;
    transition: background-color 0.2s;
}

.logout-btn:hover {
    background: rgba(255,255,255,0.1);
}

.admin-content {
    padding: 2rem 0;
}

.admin-section {
    display: none;
}

.admin-section.active {
    display: block;
}

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

.admin-header-section h1 {
    font-size: 2rem;
    font-weight: 700;
    color: #232f3e;
}

.section-actions {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.search-admin {
    padding: 0.5rem;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 0.875rem;
    width: 200px;
}

.filter-select {
    padding: 0.5rem;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 0.875rem;
}

.export-btn {
    background: #28a745;
    color: #fff;
    border: none;
    padding: 0.5rem 1rem;
    border-radius: 4px;
    cursor: pointer;
    font-size: 0.875rem;
    font-weight: 600;
}

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

.pending-actions {
    margin-bottom: 3rem;
}

.pending-actions h2 {
    margin-bottom: 1rem;
    font-weight: 600;
    color: #232f3e;
}

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

.action-card {
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.action-card.urgent {
    border-left: 4px solid #dc3545;
}

.action-info h4 {
    margin-bottom: 0.25rem;
    font-weight: 600;
}

.action-info p {
    color: #666;
    font-size: 0.875rem;
}

.recent-activity {
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 1.5rem;
}

.recent-activity h2 {
    margin-bottom: 1.5rem;
    font-weight: 600;
    color: #232f3e;
}

.activity-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.activity-item {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    padding: 1rem;
    border: 1px solid #f0f0f0;
    border-radius: 8px;
    background: #f8f9fa;
}

.activity-icon {
    font-size: 1.5rem;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    border-radius: 50%;
    border: 1px solid #ddd;
}

.activity-content {
    flex: 1;
}

.activity-content p {
    margin-bottom: 0.25rem;
    font-size: 0.875rem;
}

.activity-time {
    color: #666;
    font-size: 0.75rem;
}

.admin-table {
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 8px;
    overflow: hidden;
}

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

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

.admin-table th {
    background: #f8f9fa;
    font-weight: 600;
    color: #333;
}

.product-cell,
.user-cell {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.product-cell img,
.user-cell img {
    width: 40px;
    height: 40px;
    object-fit: cover;
    border-radius: 4px;
}

.user-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #ff9900;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 0.875rem;
}

.status.active {
    background: #d4edda;
    color: #155724;
}

.status.pending {
    background: #fff3cd;
    color: #856404;
}

.status.approved {
    background: #d4edda;
    color: #155724;
}

.status.rejected {
    background: #f8d7da;
    color: #721c24;
}

.status.suspended {
    background: #f8d7da;
    color: #721c24;
}

.status.issue {
    background: #f8d7da;
    color: #721c24;
}

.status.out-of-stock {
    background: #f8d7da;
    color: #721c24;
}

.approve-btn {
    background: #28a745;
    color: #fff;
    border: none;
    padding: 0.25rem 0.75rem;
    border-radius: 4px;
    cursor: pointer;
    font-size: 0.75rem;
    margin-right: 0.5rem;
}

.reject-btn {
    background: #dc3545;
    color: #fff;
    border: none;
    padding: 0.25rem 0.75rem;
    border-radius: 4px;
    cursor: pointer;
    font-size: 0.75rem;
    margin-right: 0.5rem;
}

.view-btn {
    background: #007bff;
    color: #fff;
    border: none;
    padding: 0.25rem 0.75rem;
    border-radius: 4px;
    cursor: pointer;
    font-size: 0.75rem;
    margin-right: 0.5rem;
}

.suspend-btn {
    background: #ffc107;
    color: #000;
    border: none;
    padding: 0.25rem 0.75rem;
    border-radius: 4px;
    cursor: pointer;
    font-size: 0.75rem;
    margin-right: 0.5rem;
}

.reconsider-btn,
.reactivate-btn {
    background: #17a2b8;
    color: #fff;
    border: none;
    padding: 0.25rem 0.75rem;
    border-radius: 4px;
    cursor: pointer;
    font-size: 0.75rem;
    margin-right: 0.5rem;
}

.resolve-btn {
    background: #28a745;
    color: #fff;
    border: none;
    padding: 0.25rem 0.75rem;
    border-radius: 4px;
    cursor: pointer;
    font-size: 0.75rem;
    margin-right: 0.5rem;
}

.track-btn {
    background: #007bff;
    color: #fff;
    border: none;
    padding: 0.25rem 0.75rem;
    border-radius: 4px;
    cursor: pointer;
    font-size: 0.75rem;
}

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

.report-card {
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 1.5rem;
}

.report-card h3 {
    margin-bottom: 1rem;
    font-weight: 600;
    color: #232f3e;
}

.report-metric {
    margin-bottom: 1rem;
}

.metric-value {
    font-size: 2rem;
    font-weight: 700;
    color: #232f3e;
    display: block;
}

.metric-label {
    color: #666;
    font-size: 0.875rem;
}

.metric-change {
    font-size: 0.75rem;
    font-weight: 600;
    padding: 0.25rem 0.5rem;
    border-radius: 4px;
    margin-left: 0.5rem;
}

.chart-placeholder {
    background: #f8f9fa;
    border: 1px solid #ddd;
    border-radius: 4px;
    padding: 2rem;
    text-align: center;
    color: #666;
    font-size: 2rem;
}

.category-list,
.user-breakdown,
.stats-list {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.category-item,
.breakdown-item,
.stat-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.5rem 0;
    border-bottom: 1px solid #f0f0f0;
}

.category-item:last-child,
.breakdown-item:last-child,
.stat-item:last-child {
    border-bottom: none;
}

.category-percentage {
    font-weight: 600;
    color: #ff9900;
}

.stat-label {
    color: #666;
    font-size: 0.875rem;
}

.stat-value {
    font-weight: 600;
    color: #232f3e;
}

@media (max-width: 768px) {
    .admin-header-content {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .admin-nav ul {
        gap: 0.5rem;
        overflow-x: auto;
        width: 100%;
        padding-bottom: 0.5rem;
    }
    
    .admin-nav .nav-link {
        white-space: nowrap;
        font-size: 0.875rem;
        padding: 0.4rem 0.8rem;
    }
    
    .admin-header-section {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .admin-header-section h1 {
        font-size: 1.5rem;
    }
    
    .section-actions {
        width: 100%;
        flex-wrap: wrap;
    }
    
    .search-admin {
        width: 100%;
    }
    
    .admin-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    
    .action-cards {
        grid-template-columns: 1fr;
    }
    
    .action-card {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }
    
    .admin-table {
        overflow-x: auto;
    }
    
    .admin-table table {
        min-width: 600px;
    }
    
    .admin-table th,
    .admin-table td {
        padding: 0.5rem;
        font-size: 0.875rem;
    }
    
    .reports-grid {
        grid-template-columns: 1fr;
    }
}

/* Help Page */
.help-page {
    padding: 2rem 0;
    background: #f8f9fa;
}

.help-header {
    text-align: center;
    margin-bottom: 3rem;
    background: #fff;
    padding: 3rem 2rem;
    border-radius: 8px;
}

.help-header h1 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #232f3e;
    margin-bottom: 1rem;
}

.help-header p {
    color: #666;
    font-size: 1.125rem;
    margin-bottom: 2rem;
}

.help-search {
    display: flex;
    max-width: 500px;
    margin: 0 auto;
    gap: 0.5rem;
}

.help-search-input {
    flex: 1;
    padding: 0.75rem;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 1rem;
}

.help-search-btn {
    background: #ff9900;
    color: #fff;
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 600;
}

.quick-help-topics {
    margin-bottom: 3rem;
}

.quick-help-topics h2 {
    text-align: center;
    margin-bottom: 2rem;
    font-weight: 600;
    color: #232f3e;
}

.help-topics-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
}

.help-topic-card {
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 1.5rem;
    text-decoration: none;
    color: inherit;
    transition: transform 0.2s, box-shadow 0.2s;
    display: block;
}

.help-topic-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.topic-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    display: block;
}

.help-topic-card h3 {
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: #232f3e;
}

.help-topic-card p {
    color: #666;
    font-size: 0.875rem;
}

.faq-sections {
    background: #fff;
    border-radius: 8px;
    padding: 2rem;
    margin-bottom: 3rem;
}

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

.faq-section.hidden {
    display: none;
}

.faq-section h2 {
    margin-bottom: 1.5rem;
    font-weight: 600;
    color: #232f3e;
}

.faq-items {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.faq-item {
    border: 1px solid #ddd;
    border-radius: 8px;
    overflow: hidden;
}

.faq-question {
    width: 100%;
    background: #f8f9fa;
    border: none;
    padding: 1rem 1.5rem;
    text-align: left;
    cursor: pointer;
    font-size: 1rem;
    font-weight: 600;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background-color 0.2s;
}

.faq-question:hover,
.faq-question.active {
    background: #e9ecef;
}

.faq-toggle {
    font-size: 1.5rem;
    font-weight: 300;
    transition: transform 0.2s;
}

.faq-question.active .faq-toggle {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
}

.faq-answer.active {
    max-height: 500px;
}

.faq-answer div {
    padding: 1.5rem;
}

.faq-answer p {
    margin-bottom: 1rem;
}

.faq-answer ul {
    padding-left: 1.5rem;
    margin-bottom: 1rem;
}

.faq-answer li {
    margin-bottom: 0.5rem;
}

.contact-support {
    background: #fff;
    border-radius: 8px;
    padding: 2rem;
    text-align: center;
}

.contact-support h2 {
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: #232f3e;
}

.contact-support p {
    color: #666;
    margin-bottom: 2rem;
}

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

.contact-option {
    padding: 1.5rem;
    border: 1px solid #ddd;
    border-radius: 8px;
    background: #f8f9fa;
}

.contact-icon {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.contact-option h3 {
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.contact-option p {
    color: #666;
    font-size: 0.875rem;
    margin-bottom: 1rem;
}

.contact-btn {
    background: #ff9900;
    color: #fff;
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 600;
    width: 100%;
}

.chat-widget {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 300px;
    height: 400px;
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    display: none;
    flex-direction: column;
    z-index: 10000;
}

.chat-header {
    background: #232f3e;
    color: #fff;
    padding: 1rem;
    border-radius: 8px 8px 0 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.chat-header h4 {
    margin: 0;
    font-weight: 600;
}

.close-chat {
    background: none;
    border: none;
    color: #fff;
    cursor: pointer;
    font-size: 1.5rem;
    padding: 0;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.chat-messages {
    flex: 1;
    padding: 1rem;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.chat-message {
    max-width: 80%;
    padding: 0.75rem;
    border-radius: 8px;
    font-size: 0.875rem;
}

.chat-message.bot {
    background: #f8f9fa;
    align-self: flex-start;
}

.chat-message.user {
    background: #ff9900;
    color: #fff;
    align-self: flex-end;
}

.chat-input {
    display: flex;
    padding: 1rem;
    border-top: 1px solid #ddd;
    gap: 0.5rem;
}

.chat-input input {
    flex: 1;
    padding: 0.5rem;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 0.875rem;
}

.chat-input button {
    background: #ff9900;
    color: #fff;
    border: none;
    padding: 0.5rem 1rem;
    border-radius: 4px;
    cursor: pointer;
    font-size: 0.875rem;
    font-weight: 600;
}

@media (max-width: 768px) {
    .help-header {
        padding: 2rem 1rem;
    }
    
    .help-header h1 {
        font-size: 2rem;
    }
    
    .help-search {
        flex-direction: column;
    }
    
    .help-topics-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .help-topic-card {
        padding: 1rem;
    }
    
    .topic-icon {
        font-size: 2rem;
    }
    
    .faq-sections {
        padding: 1rem;
    }
    
    .faq-question {
        padding: 0.75rem 1rem;
        font-size: 0.875rem;
    }
    
    .faq-answer div {
        padding: 1rem;
    }
    
    .contact-options {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .contact-support {
        padding: 1rem;
    }
    
    .chat-widget {
        width: calc(100vw - 40px);
        height: 350px;
        bottom: 10px;
        right: 10px;
        left: 10px;
    }
}

/* Contact Page */
.contact-page {
    padding: 2rem 0;
    background: #f8f9fa;
}

.page-header {
    text-align: center;
    margin-bottom: 3rem;
    background: #fff;
    padding: 3rem 2rem;
    border-radius: 8px;
}

.page-header h1 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #232f3e;
    margin-bottom: 1rem;
}

.page-subtitle {
    color: #666;
    font-size: 1.125rem;
}

.contact-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.contact-info {
    background: #fff;
    border-radius: 8px;
    padding: 2rem;
}

.contact-info h2 {
    margin-bottom: 1rem;
    font-weight: 600;
    color: #232f3e;
}

.contact-info > p {
    color: #666;
    margin-bottom: 2rem;
}

.contact-methods {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.contact-method {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    padding: 1.5rem;
    border: 1px solid #ddd;
    border-radius: 8px;
    background: #f8f9fa;
}

.method-icon {
    font-size: 2rem;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    border-radius: 50%;
    border: 1px solid #ddd;
}

.method-info {
    flex: 1;
}

.method-info h3 {
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.method-info p {
    color: #666;
    font-size: 0.875rem;
    margin-bottom: 0.75rem;
}

.contact-detail {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.contact-detail strong {
    color: #232f3e;
    font-weight: 600;
}

.contact-detail span {
    color: #666;
    font-size: 0.875rem;
}

.chat-btn {
    background: #ff9900;
    color: #fff;
    border: none;
    padding: 0.5rem 1rem;
    border-radius: 4px;
    cursor: pointer;
    font-size: 0.875rem;
    font-weight: 600;
}

.help-link {
    color: #007185;
    text-decoration: none;
    font-weight: 600;
}

.help-link:hover {
    text-decoration: underline;
}

.contact-hours {
    padding: 1.5rem;
    border: 1px solid #ddd;
    border-radius: 8px;
    background: #f8f9fa;
}

.contact-hours h3 {
    margin-bottom: 1rem;
    font-weight: 600;
}

.hours-list {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.hours-item {
    display: flex;
    justify-content: space-between;
    font-size: 0.875rem;
}

.contact-form-section {
    background: #fff;
    border-radius: 8px;
    padding: 2rem;
}

.contact-form-section h2 {
    margin-bottom: 1.5rem;
    font-weight: 600;
    color: #232f3e;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.checkbox-group {
    margin-top: 0.5rem;
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    cursor: pointer;
    font-size: 0.875rem;
    line-height: 1.4;
}

.checkbox-label input[type="checkbox"] {
    margin-top: 0.1rem;
}

.checkmark {
    width: 16px;
    height: 16px;
    border: 1px solid #ddd;
    border-radius: 2px;
    position: relative;
    flex-shrink: 0;
}

.submit-btn {
    background: #ff9900;
    color: #fff;
    border: none;
    padding: 0.75rem 2rem;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 600;
    font-size: 1rem;
    align-self: flex-start;
}

.additional-resources {
    background: #fff;
    border-radius: 8px;
    padding: 2rem;
    margin-bottom: 2rem;
}

.additional-resources h2 {
    text-align: center;
    margin-bottom: 2rem;
    font-weight: 600;
    color: #232f3e;
}

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

.resource-card {
    padding: 1.5rem;
    border: 1px solid #ddd;
    border-radius: 8px;
    background: #f8f9fa;
    text-align: center;
    transition: transform 0.2s, box-shadow 0.2s;
}

.resource-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.resource-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    display: block;
}

.resource-card h3 {
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.resource-card p {
    color: #666;
    font-size: 0.875rem;
    margin-bottom: 1rem;
}

.resource-link {
    color: #007185;
    text-decoration: none;
    font-weight: 600;
}

.resource-link:hover {
    text-decoration: underline;
}

.social-contact {
    background: #fff;
    border-radius: 8px;
    padding: 2rem;
    text-align: center;
}

.social-contact h2 {
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: #232f3e;
}

.social-contact p {
    color: #666;
    margin-bottom: 2rem;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.social-link {
    padding: 0.75rem 1.5rem;
    border: 1px solid #ddd;
    border-radius: 8px;
    text-decoration: none;
    color: #333;
    font-weight: 600;
    transition: background-color 0.2s, border-color 0.2s;
}

.social-link:hover {
    background: #f8f9fa;
    border-color: #ff9900;
}

.social-link.facebook:hover {
    border-color: #1877f2;
    color: #1877f2;
}

.social-link.twitter:hover {
    border-color: #1da1f2;
    color: #1da1f2;
}

.social-link.instagram:hover {
    border-color: #e4405f;
    color: #e4405f;
}

.social-link.youtube:hover {
    border-color: #ff0000;
    color: #ff0000;
}

@media (max-width: 1024px) {
    .contact-layout {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

@media (max-width: 768px) {
    .page-header {
        padding: 2rem 1rem;
    }
    
    .page-header h1 {
        font-size: 2rem;
    }
    
    .contact-info,
    .contact-form-section,
    .additional-resources,
    .social-contact {
        padding: 1rem;
    }
    
    .contact-method {
        padding: 1rem;
    }
    
    .method-icon {
        font-size: 1.5rem;
        width: 40px;
        height: 40px;
    }
    
    .resources-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .resource-card {
        padding: 1rem;
    }
    
    .resource-icon {
        font-size: 2rem;
    }
    
    .social-links {
        flex-direction: column;
        align-items: center;
    }
    
    .social-link {
        width: 200px;
        text-align: center;
    }
}

/* Static Pages (Terms, Privacy, About) */
.static-page {
    padding: 2rem 0;
    background: #f8f9fa;
}

.page-content {
    background: #fff;
    border-radius: 8px;
    padding: 3rem;
    margin-bottom: 2rem;
}

.content-section {
    margin-bottom: 3rem;
}

.content-section:last-child {
    margin-bottom: 0;
}

.content-section h2 {
    font-size: 1.75rem;
    font-weight: 600;
    color: #232f3e;
    margin-bottom: 1.5rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid #ff9900;
}

.content-section h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 1rem;
    margin-top: 2rem;
}

.content-section h4 {
    font-size: 1.125rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 0.75rem;
    margin-top: 1.5rem;
}

.content-section p {
    margin-bottom: 1rem;
    line-height: 1.7;
    color: #444;
}

.content-section ul,
.content-section ol {
    margin-bottom: 1rem;
    padding-left: 2rem;
}

.content-section li {
    margin-bottom: 0.5rem;
    line-height: 1.6;
    color: #444;
}

.content-section strong {
    font-weight: 600;
    color: #232f3e;
}

/* About Page Specific Styles */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.feature-card {
    background: #f8f9fa;
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 2rem;
    text-align: center;
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    display: block;
}

.feature-card h3 {
    margin-bottom: 1rem;
    font-weight: 600;
    color: #232f3e;
}

.feature-card p {
    color: #666;
    line-height: 1.6;
}

.values-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-top: 1.5rem;
}

.value-item {
    padding: 1.5rem;
    border: 1px solid #ddd;
    border-radius: 8px;
    background: #f8f9fa;
}

.value-item h3 {
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: #232f3e;
}

.value-item p {
    color: #666;
    margin-bottom: 0;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
    flex-wrap: wrap;
}

.cta-btn.primary {
    background: #ff9900;
    color: #fff;
}

.cta-btn.secondary {
    background: #fff;
    color: #ff9900;
    border: 2px solid #ff9900;
}

.cta-btn.secondary:hover {
    background: #ff9900;
    color: #fff;
}

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

.stat-item {
    text-align: center;
    padding: 2rem;
    background: #f8f9fa;
    border: 1px solid #ddd;
    border-radius: 8px;
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    color: #ff9900;
    display: block;
    margin-bottom: 0.5rem;
}

.stat-label {
    color: #666;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.875rem;
    letter-spacing: 0.5px;
}

/* Legal Content Styles */
.legal-content {
    background: #fff;
    border-radius: 8px;
    padding: 3rem;
}

.legal-section {
    margin-bottom: 3rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid #ddd;
}

.legal-section:last-child {
    border-bottom: none;
    margin-bottom: 0;
}

.legal-section h2 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #232f3e;
    margin-bottom: 1.5rem;
}

.legal-section h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 1rem;
    margin-top: 2rem;
}

.legal-section p {
    margin-bottom: 1rem;
    line-height: 1.7;
    color: #444;
}

.legal-section ul {
    margin-bottom: 1rem;
    padding-left: 2rem;
}

.legal-section li {
    margin-bottom: 0.5rem;
    line-height: 1.6;
    color: #444;
}

@media (max-width: 768px) {
    .page-content,
    .legal-content {
        padding: 2rem 1rem;
    }
    
    .content-section h2 {
        font-size: 1.5rem;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .feature-card {
        padding: 1.5rem;
    }
    
    .feature-icon {
        font-size: 2.5rem;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    
    .stat-item {
        padding: 1.5rem;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .cta-buttons {
        flex-direction: column;
    }
    
    .cta-btn {
        text-align: center;
    }
}

/* Auth Pages */
.auth-page {
    background: #f8f9fa;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem 1rem;
}

.auth-container {
    width: 100%;
    max-width: 400px;
}

.auth-logo {
    text-align: center;
    margin-bottom: 2rem;
}

.auth-logo a {
    font-size: 2rem;
    font-weight: 700;
    color: #232f3e;
    text-decoration: none;
}

.auth-card {
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 2rem;
    margin-bottom: 2rem;
}

.auth-card h1 {
    font-size: 1.75rem;
    font-weight: 400;
    color: #232f3e;
    margin-bottom: 1.5rem;
}

.auth-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.auth-form .form-group {
    margin-bottom: 1rem;
}

.auth-form label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    font-size: 0.875rem;
    color: #333;
}

.auth-form input {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 0.875rem;
    transition: border-color 0.2s;
}

.auth-form input:focus {
    outline: none;
    border-color: #ff9900;
    box-shadow: 0 0 0 2px rgba(255, 153, 0, 0.2);
}

.auth-form small {
    color: #666;
    font-size: 0.75rem;
    margin-top: 0.25rem;
    display: block;
}

.forgot-password {
    color: #007185;
    text-decoration: none;
    font-size: 0.875rem;
    margin-top: 0.5rem;
    display: inline-block;
}

.forgot-password:hover {
    text-decoration: underline;
}

.auth-btn {
    background: #ffd814;
    border: 1px solid #fcd200;
    color: #0f1111;
    padding: 0.75rem;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    font-size: 0.875rem;
    transition: background-color 0.2s;
    margin-top: 0.5rem;
}

.auth-btn:hover {
    background: #f7ca00;
}

.auth-divider {
    text-align: center;
    margin: 1.5rem 0;
    position: relative;
}

.auth-divider::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 1px;
    background: #ddd;
}

.auth-divider span {
    background: #fff;
    padding: 0 1rem;
    color: #666;
    font-size: 0.875rem;
}

.auth-link {
    display: block;
    text-align: center;
    padding: 0.75rem;
    border: 1px solid #d5d9d9;
    border-radius: 8px;
    text-decoration: none;
    color: #0f1111;
    font-size: 0.875rem;
    transition: background-color 0.2s;
}

.auth-link:hover {
    background: #f7f8f8;
}

.auth-link.secondary {
    background: #fff;
}

.auth-footer {
    text-align: center;
    font-size: 0.75rem;
    color: #666;
    line-height: 1.4;
}

.auth-footer a {
    color: #007185;
    text-decoration: none;
}

.auth-footer a:hover {
    text-decoration: underline;
}

@media (max-width: 480px) {
    .auth-container {
        max-width: 100%;
    }
    
    .auth-card {
        padding: 1.5rem;
    }
    
    .auth-logo a {
        font-size: 1.75rem;
    }
    
    .auth-card h1 {
        font-size: 1.5rem;
    }
}

/* Utility Classes */
.hidden {
    display: none !important;
}

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

.text-left {
    text-align: left;
}

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

.mb-0 { margin-bottom: 0 !important; }
.mb-1 { margin-bottom: 0.5rem !important; }
.mb-2 { margin-bottom: 1rem !important; }
.mb-3 { margin-bottom: 1.5rem !important; }
.mb-4 { margin-bottom: 2rem !important; }

.mt-0 { margin-top: 0 !important; }
.mt-1 { margin-top: 0.5rem !important; }
.mt-2 { margin-top: 1rem !important; }
.mt-3 { margin-top: 1.5rem !important; }
.mt-4 { margin-top: 2rem !important; }

.p-0 { padding: 0 !important; }
.p-1 { padding: 0.5rem !important; }
.p-2 { padding: 1rem !important; }
.p-3 { padding: 1.5rem !important; }
.p-4 { padding: 2rem !important; }

.d-none { display: none !important; }
.d-block { display: block !important; }
.d-flex { display: flex !important; }
.d-grid { display: grid !important; }

.flex-column { flex-direction: column !important; }
.flex-row { flex-direction: row !important; }
.justify-center { justify-content: center !important; }
.justify-between { justify-content: space-between !important; }
.align-center { align-items: center !important; }

.w-full { width: 100% !important; }
.h-full { height: 100% !important; }

/* Responsive Utilities */
@media (max-width: 480px) {
    .mobile-hidden {
        display: none !important;
    }
    
    .mobile-full-width {
        width: 100% !important;
    }
    
    .mobile-text-center {
        text-align: center !important;
    }
}

@media (min-width: 481px) and (max-width: 768px) {
    .tablet-hidden {
        display: none !important;
    }
}

@media (min-width: 769px) {
    .desktop-hidden {
        display: none !important;
    }
}

/* Print Styles */
@media print {
    .header,
    .footer,
    .banner-nav,
    .add-to-cart-btn,
    .action-btn,
    .modal,
    .chat-widget {
        display: none !important;
    }
    
    body {
        background: #fff !important;
        color: #000 !important;
    }
    
    .container {
        max-width: none !important;
        padding: 0 !important;
    }
    
    .product-layout {
        grid-template-columns: 1fr !important;
    }
    
    .main-image img {
        max-height: 300px !important;
    }
}

/* High Contrast Mode */
@media (prefers-contrast: high) {
    body {
        background: #fff;
        color: #000;
    }
    
    .header-top {
        background: #000;
        color: #fff;
    }
    
    .header-nav {
        background: #333;
    }
    
    .footer {
        background: #000;
    }
    
    .product-card,
    .category-card,
    .account-card {
        border: 2px solid #000;
    }
    
    .cta-btn,
    .add-to-cart-btn,
    .checkout-btn {
        background: #000;
        color: #fff;
        border: 2px solid #000;
    }
}

/* Reduced Motion */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
    
    .banner-slide {
        transition: none !important;
    }
    
    .modal-content {
        animation: none !important;
    }
}

/* Focus Styles for Better Accessibility */
*:focus {
    outline: 2px solid #ff9900;
    outline-offset: 2px;
}

button:focus,
input:focus,
select:focus,
textarea:focus,
a:focus {
    outline: 2px solid #ff9900;
    outline-offset: 2px;
}

/* Screen Reader Only Content */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* Loading States */
.loading {
    opacity: 0.6;
    pointer-events: none;
}

.loading::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 20px;
    height: 20px;
    margin: -10px 0 0 -10px;
    border: 2px solid #f3f3f3;
    border-top: 2px solid #ff9900;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Error States */
.error {
    color: #dc3545;
    border-color: #dc3545;
}

.error-message {
    color: #dc3545;
    font-size: 0.875rem;
    margin-top: 0.25rem;
}

/* Success States */
.success {
    color: #28a745;
    border-color: #28a745;
}

.success-message {
    color: #28a745;
    font-size: 0.875rem;
    margin-top: 0.25rem;
}