/* style.css - FIXED RESPONSIVE VERSION */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
    background-color: #f5f5f5;
    color: #333;
    overflow-x: hidden; /* Prevent horizontal scroll on mobile */
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

/* Top Navigation */
.top-nav {
    background-color: #f2f2f2;
    padding: 8px 0;
    font-size: 14px;
    border-bottom: 1px solid #e6e6e6;
    display: none; /* Hide on mobile */
}

@media (min-width: 768px) {
    .top-nav {
        display: block; /* Show on tablet and desktop */
    }
}

.top-nav .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap; /* Allow wrapping on small screens */
}

.top-nav-left a, .top-nav-right a {
    color: #666;
    text-decoration: none;
    margin-right: 15px;
    white-space: nowrap; /* Prevent text wrapping */
}

@media (max-width: 992px) {
    .top-nav-left a, .top-nav-right a {
        margin-right: 10px;
        font-size: 13px;
    }
}

.top-nav-left a:hover, .top-nav-right a:hover {
    color: #f57224;
}

.top-nav-right a:last-child {
    margin-right: 0;
}

.top-nav i {
    margin-right: 5px;
}

/* Main Header - FIXED FOR MOBILE */
.main-header {
    background-color: white;
    padding: 15px 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.main-header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap; /* Allow wrapping on mobile */
}

.logo {
    flex: 0 0 auto;
    margin-bottom: 10px;
}

@media (min-width: 768px) {
    .logo {
        margin-bottom: 0;
        flex: 0 0 200px;
    }
}

.logo h1 {
    font-size: 28px;
    font-weight: 800;
    letter-spacing: -1px;
    line-height: 1;
}

@media (min-width: 768px) {
    .logo h1 {
        font-size: 32px;
    }
}

.logo .shop {
    color: #f57224;
}

.logo .lanka {
    color: #333;
}

.tagline {
    font-size: 11px;
    color: #666;
    margin-top: -3px;
    display: none; /* Hide on mobile */
}

@media (min-width: 768px) {
    .tagline {
        display: block; /* Show on tablet and desktop */
        font-size: 12px;
    }
}

.search-bar {
    order: 3; /* Move to bottom on mobile */
    width: 100%;
    margin: 10px 0 0 0;
    display: flex;
}

@media (min-width: 768px) {
    .search-bar {
        order: 2; /* Normal order on tablet/desktop */
        flex: 1;
        max-width: 600px;
        margin: 0 20px;
        width: auto;
    }
}

.search-bar input {
    flex: 1;
    padding: 12px 15px;
    border: 1px solid #f57224;
    border-radius: 4px 0 0 4px;
    font-size: 16px;
    outline: none;
    min-width: 0; /* Fix for flexbox overflow */
}

@media (max-width: 576px) {
    .search-bar input {
        padding: 10px 12px;
        font-size: 14px;
    }
}

.search-bar button {
    background-color: #f57224;
    color: white;
    border: none;
    padding: 0 20px;
    border-radius: 0 4px 4px 0;
    cursor: pointer;
    font-size: 18px;
    flex-shrink: 0; /* Prevent button from shrinking */
}

.search-bar button:hover {
    background-color: #e0651a;
}

.header-actions {
    order: 2; /* Move to middle on mobile */
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
}

@media (min-width: 768px) {
    .header-actions {
        order: 3; /* Normal order on tablet/desktop */
        width: auto;
        justify-content: flex-end;
    }
}

.cart, .login-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    cursor: pointer;
    padding: 5px 10px;
    border-radius: 4px;
    transition: background-color 0.3s;
}

@media (min-width: 768px) {
    .cart, .login-btn {
        margin-left: 15px;
        padding: 0;
    }
}

.cart:hover, .login-btn:hover {
    background-color: #f9f9f9;
}

.cart {
    position: relative;
}

.cart-count {
    position: absolute;
    top: -5px;
    right: 0;
    background-color: #f57224;
    color: white;
    border-radius: 50%;
    width: 18px;
    height: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    font-weight: bold;
}

@media (min-width: 768px) {
    .cart-count {
        right: 5px;
        width: 20px;
        height: 20px;
        font-size: 12px;
    }
}

.cart i, .login-btn i {
    font-size: 22px;
    color: #333;
}

@media (min-width: 768px) {
    .cart i, .login-btn i {
        font-size: 24px;
    }
}

.cart-text, .login-btn span {
    font-size: 12px;
    margin-top: 2px;
    display: none; /* Hide text on mobile */
}

@media (min-width: 768px) {
    .cart-text, .login-btn span {
        display: block; /* Show text on tablet and desktop */
        font-size: 14px;
    }
}

.login-btn span {
    margin-top: 0;
}

.cart:hover i, .cart:hover .cart-text,
.login-btn:hover i, .login-btn:hover span {
    color: #f57224;
}

/* Categories Navigation - IMPROVED FOR MOBILE */
.categories-nav {
    background-color: white;
    border-bottom: 1px solid #e6e6e6;
    padding: 10px 0;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch; /* Smooth scrolling on iOS */
}

.categories-nav::-webkit-scrollbar {
    height: 3px;
}

.categories-nav::-webkit-scrollbar-track {
    background: #f1f1f1;
}

.categories-nav::-webkit-scrollbar-thumb {
    background: #f57224;
    border-radius: 3px;
}

.categories-nav .container {
    display: flex;
    min-width: max-content; /* Allow horizontal scroll */
    padding: 0 10px;
}

@media (min-width: 768px) {
    .categories-nav .container {
        min-width: auto;
        padding: 0 15px;
        flex-wrap: wrap; /* Allow wrapping on tablet */
        justify-content: center;
    }
}

.category-link {
    white-space: nowrap;
    padding: 8px 12px;
    text-decoration: none;
    color: #333;
    font-weight: 500;
    border-right: 1px solid #e6e6e6;
    font-size: 14px;
}

.category-link:last-child {
    border-right: none;
}

@media (min-width: 768px) {
    .category-link {
        padding: 8px 15px;
        font-size: 15px;
    }
}

.category-link:first-child {
    color: #f57224;
    font-weight: bold;
}

.category-link:hover {
    color: #f57224;
}

.category-link i {
    margin-right: 5px;
}

/* Banner - FIXED FOR MOBILE */
.banner {
    margin-top: 15px;
    position: relative;
    padding: 0 10px;
}

@media (min-width: 768px) {
    .banner {
        padding: 0;
    }
}

.banner-slider {
    position: relative;
    height: 250px;
    overflow: hidden;
    border-radius: 8px;
}

@media (min-width: 768px) {
    .banner-slider {
        height: 350px;
    }
}

@media (min-width: 992px) {
    .banner-slider {
        height: 400px;
    }
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.5s ease;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: linear-gradient(to right, rgba(255,255,255,0.9), rgba(255,255,255,0.7));
}

.slide.active {
    opacity: 1;
}

.slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: none; /* Hide image on mobile */
}

@media (min-width: 768px) {
    .slide img {
        display: block; /* Show image on tablet and desktop */
        width: 50%;
    }
}

.slide-content {
    padding: 20px;
    width: 100%;
    text-align: center;
    background-color: rgba(255, 255, 255, 0.85);
}

@media (min-width: 768px) {
    .slide-content {
        padding: 40px;
        max-width: 50%;
        text-align: left;
        background-color: transparent;
    }
}

.slide-content h2 {
    font-size: 24px;
    color: #333;
    margin-bottom: 10px;
}

@media (min-width: 768px) {
    .slide-content h2 {
        font-size: 36px;
    }
}

.slide-content p {
    font-size: 16px;
    color: #666;
    margin-bottom: 20px;
}

@media (min-width: 768px) {
    .slide-content p {
        font-size: 20px;
        margin-bottom: 25px;
    }
}

.shop-now-btn {
    background-color: #f57224;
    color: white;
    border: none;
    padding: 10px 25px;
    font-size: 16px;
    font-weight: bold;
    border-radius: 4px;
    cursor: pointer;
    min-width: 120px;
}

.shop-now-btn:hover {
    background-color: #e0651a;
}

.slide-controls {
    position: absolute;
    top: 50%;
    width: 100%;
    display: flex;
    justify-content: space-between;
    transform: translateY(-50%);
    padding: 0 10px;
    display: none; /* Hide controls on mobile */
}

@media (min-width: 768px) {
    .slide-controls {
        display: flex; /* Show controls on tablet and desktop */
        padding: 0 20px;
    }
}

.slide-prev, .slide-next {
    background-color: rgba(255, 255, 255, 0.8);
    border: none;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    cursor: pointer;
    color: #333;
    box-shadow: 0 2px 5px rgba(0,0,0,0.2);
}

@media (min-width: 768px) {
    .slide-prev, .slide-next {
        width: 40px;
        height: 40px;
        font-size: 18px;
    }
}

.slide-prev:hover, .slide-next:hover {
    background-color: white;
}

.slide-indicators {
    position: absolute;
    bottom: 15px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
}

.indicator {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.5);
    margin: 0 4px;
    cursor: pointer;
}

@media (min-width: 768px) {
    .indicator {
        width: 12px;
        height: 12px;
        margin: 0 5px;
    }
}

.indicator.active {
    background-color: #f57224;
}

/* Featured Categories - FIXED GRID */
.featured-categories {
    margin-top: 30px;
    padding: 0 10px;
}

@media (min-width: 768px) {
    .featured-categories {
        margin-top: 40px;
        padding: 0;
    }
}

.section-title {
    font-size: 20px;
    color: #333;
    margin-bottom: 20px;
    padding-bottom: 8px;
    border-bottom: 2px solid #f57224;
    display: inline-block;
}

@media (min-width: 768px) {
    .section-title {
        font-size: 24px;
        padding-bottom: 10px;
    }
}

.categories-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
}

@media (min-width: 576px) {
    .categories-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (min-width: 768px) {
    .categories-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 20px;
    }
}

.category-card {
    background-color: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
    cursor: pointer;
}

.category-card:hover {
    transform: translateY(-5px);
}

.category-card img {
    width: 100%;
    height: 120px;
    object-fit: cover;
}

@media (min-width: 768px) {
    .category-card img {
        height: 150px;
    }
}

@media (min-width: 992px) {
    .category-card img {
        height: 180px;
    }
}

.category-card h3 {
    padding: 12px;
    text-align: center;
    font-size: 16px;
}

@media (min-width: 768px) {
    .category-card h3 {
        font-size: 18px;
        padding: 15px;
    }
}

/* Flash Sale - FIXED GRID */
.flash-sale {
    margin-top: 30px;
    padding: 0 10px;
}

@media (min-width: 768px) {
    .flash-sale {
        margin-top: 40px;
        padding: 0;
    }
}

.flash-sale-header {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    margin-bottom: 20px;
}

@media (min-width: 576px) {
    .flash-sale-header {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
    }
}

.countdown {
    display: flex;
    align-items: center;
    background-color: #333;
    color: white;
    padding: 8px 15px;
    border-radius: 4px;
    margin-top: 10px;
}

@media (min-width: 576px) {
    .countdown {
        margin-top: 0;
    }
}

.countdown span {
    margin-right: 8px;
    font-size: 14px;
}

.timer {
    font-weight: bold;
    font-size: 16px;
    letter-spacing: 1px;
}

@media (min-width: 768px) {
    .timer {
        font-size: 18px;
    }
}

.products-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}

@media (min-width: 576px) {
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 768px) {
    .products-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (min-width: 992px) {
    .products-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.product-card {
    background-color: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.product-image {
    position: relative;
    height: 180px;
    overflow: hidden;
}

@media (min-width: 768px) {
    .product-image {
        height: 200px;
    }
}

@media (min-width: 992px) {
    .product-image {
        height: 220px;
    }
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.product-card:hover .product-image img {
    transform: scale(1.05);
}

.discount {
    position: absolute;
    top: 10px;
    left: 10px;
    background-color: #f57224;
    color: white;
    padding: 4px 8px;
    border-radius: 4px;
    font-weight: bold;
    font-size: 13px;
}

@media (min-width: 768px) {
    .discount {
        font-size: 14px;
        padding: 5px 10px;
    }
}

.product-info {
    padding: 15px;
}

.product-title {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 8px;
    height: 40px;
    overflow: hidden;
    line-height: 1.3;
}

.product-description {
    font-size: 13px;
    color: #666;
    margin-bottom: 10px;
    height: 36px;
    overflow: hidden;
    line-height: 1.4;
}

@media (min-width: 768px) {
    .product-description {
        font-size: 14px;
    }
}

.product-price {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
}

.current-price {
    font-size: 18px;
    font-weight: bold;
    color: #f57224;
    margin-right: 10px;
}

@media (min-width: 768px) {
    .current-price {
        font-size: 20px;
    }
}

.original-price {
    font-size: 14px;
    color: #999;
    text-decoration: line-through;
}

@media (min-width: 768px) {
    .original-price {
        font-size: 16px;
    }
}

.product-rating {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.product-rating i {
    color: #ffc107;
    margin-right: 2px;
    font-size: 14px;
}

@media (min-width: 768px) {
    .product-rating i {
        font-size: 16px;
    }
}

.rating-count {
    font-size: 13px;
    color: #666;
    margin-left: 5px;
}

.add-to-cart {
    width: 100%;
    padding: 10px;
    background-color: #f57224;
    color: white;
    border: none;
    border-radius: 4px;
    font-weight: bold;
    cursor: pointer;
    transition: background-color 0.3s;
    font-size: 14px;
}

.add-to-cart:hover {
    background-color: #e0651a;
}

/* Footer - FIXED FOR MOBILE */
.main-footer {
    background-color: #333;
    color: white;
    margin-top: 40px;
    padding-top: 30px;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 25px;
    padding-bottom: 25px;
}

@media (min-width: 576px) {
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 992px) {
    .footer-content {
        grid-template-columns: repeat(4, 1fr);
        gap: 30px;
        padding-bottom: 30px;
    }
}

.footer-section h3, .footer-section h4 {
    margin-bottom: 15px;
    color: white;
}

.footer-section h3 {
    font-size: 22px;
    color: #f57224;
}

@media (min-width: 768px) {
    .footer-section h3 {
        font-size: 24px;
    }
}

.footer-section p {
    line-height: 1.6;
    color: #ccc;
    font-size: 14px;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 8px;
}

.footer-section ul li a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s;
    font-size: 14px;
}

.footer-section ul li a:hover {
    color: #f57224;
}

.payment-methods, .social-icons {
    display: flex;
    margin-top: 10px;
    flex-wrap: wrap;
}

.payment-methods i, .social-icons i {
    font-size: 22px;
    margin-right: 12px;
    margin-bottom: 10px;
    cursor: pointer;
    transition: color 0.3s;
}

.social-icons i:hover {
    color: #f57224;
}

.follow-us {
    margin-top: 15px;
}

.footer-bottom {
    border-top: 1px solid #444;
    padding: 15px 0;
    text-align: center;
    color: #ccc;
    font-size: 13px;
}

@media (min-width: 768px) {
    .footer-bottom {
        font-size: 14px;
    }
}

/* Utility Classes for Responsive Images */
.img-responsive {
    max-width: 100%;
    height: auto;
}

/* Mobile Menu Toggle (if needed) */
.mobile-menu-toggle {
    display: none;
    font-size: 24px;
    background: none;
    border: none;
    color: #333;
    cursor: pointer;
    padding: 5px;
}

@media (max-width: 767px) {
    .mobile-menu-toggle {
        display: block;
    }
    
    /* Hide some elements on mobile */
    .top-nav {
        display: none;
    }
    
    /* Adjust header for mobile */
    .main-header .container {
        padding: 10px 15px;
    }
}


/* Additional CSS for all pages */

/* Breadcrumb */
.breadcrumb {
    background-color: #f8f8f8;
    padding: 12px 0;
    font-size: 14px;
    margin-bottom: 20px;
}

.breadcrumb .container {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}

.breadcrumb a {
    color: #666;
    text-decoration: none;
    margin-right: 5px;
}

.breadcrumb a:hover {
    color: #f57224;
}

.breadcrumb i {
    font-size: 12px;
    margin: 0 8px;
    color: #999;
}

.breadcrumb span {
    color: #333;
    font-weight: 500;
}

/* Page Title */
.page-title {
    font-size: 28px;
    color: #333;
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 2px solid #f57224;
}

/* Products Page Layout */
.products-page {
    padding: 20px 0 40px;
}

.products-layout {
    display: flex;
    gap: 30px;
}

@media (max-width: 992px) {
    .products-layout {
        flex-direction: column;
    }
}

/* Filters Sidebar */
.filters-sidebar {
    width: 250px;
    flex-shrink: 0;
    background: white;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    height: fit-content;
    position: sticky;
    top: 120px;
}

@media (max-width: 992px) {
    .filters-sidebar {
        width: 100%;
        position: static;
    }
}

.filter-section {
    margin-bottom: 25px;
    padding-bottom: 20px;
    border-bottom: 1px solid #eee;
}

.filter-section:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.filter-section h3 {
    font-size: 16px;
    margin-bottom: 15px;
    color: #333;
}

.filter-list {
    list-style: none;
}

.filter-list li {
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.filter-list li a {
    text-decoration: none;
    color: #666;
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
}

.filter-list li a.active {
    color: #f57224;
    font-weight: 500;
}

.filter-list li a:hover {
    color: #f57224;
}

.filter-list li span {
    font-size: 13px;
    color: #999;
}

.filter-list label {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    cursor: pointer;
    color: #666;
}

.filter-list input[type="checkbox"] {
    margin-right: 10px;
}

.price-range {
    margin-top: 15px;
}

.price-slider {
    width: 100%;
    height: 5px;
    background: #ddd;
    border-radius: 5px;
    outline: none;
    margin-bottom: 10px;
}

.price-slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    width: 18px;
    height: 18px;
    background: #f57224;
    border-radius: 50%;
    cursor: pointer;
}

.price-values {
    display: flex;
    justify-content: space-between;
    font-size: 14px;
    color: #666;
    margin-bottom: 8px;
}

.selected-price {
    font-size: 14px;
    color: #333;
    font-weight: 500;
}

.apply-filters-btn, .reset-filters-btn {
    width: 100%;
    padding: 12px;
    border: none;
    border-radius: 4px;
    font-weight: bold;
    cursor: pointer;
    margin-bottom: 10px;
    font-size: 15px;
}

.apply-filters-btn {
    background-color: #f57224;
    color: white;
}

.apply-filters-btn:hover {
    background-color: #e0651a;
}

.reset-filters-btn {
    background-color: #f5f5f5;
    color: #333;
    border: 1px solid #ddd;
}

.reset-filters-btn:hover {
    background-color: #e9e9e9;
}

/* Products Grid Section */
.products-grid-section {
    flex: 1;
}

.products-header {
    background: white;
    padding: 20px;
    border-radius: 8px;
    margin-bottom: 25px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
}

.products-header h1 {
    font-size: 24px;
    color: #333;
}

.products-count {
    color: #666;
    font-size: 14px;
}

.sort-options select {
    padding: 10px 15px;
    border: 1px solid #ddd;
    border-radius: 4px;
    background-color: white;
    font-size: 14px;
    color: #333;
    cursor: pointer;
    min-width: 200px;
}

.sort-options select:focus {
    border-color: #f57224;
    outline: none;
}

/* Pagination */
.pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 40px;
    flex-wrap: wrap;
    gap: 10px;
}

.page-nav {
    padding: 10px 20px;
    background-color: white;
    border: 1px solid #ddd;
    border-radius: 4px;
    text-decoration: none;
    color: #333;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 8px;
}

.page-nav:hover:not(.disabled) {
    background-color: #f57224;
    color: white;
    border-color: #f57224;
}

.page-nav.disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.page-numbers {
    display: flex;
    gap: 8px;
    align-items: center;
}

.page-number {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 4px;
    text-decoration: none;
    color: #333;
    font-weight: 500;
    border: 1px solid #ddd;
}

.page-number.active {
    background-color: #f57224;
    color: white;
    border-color: #f57224;
}

.page-number:hover:not(.active) {
    background-color: #f5f5f5;
}

.page-dots {
    color: #999;
    padding: 0 5px;
}

/* Product Details Page */
.product-details-page {
    padding: 20px 0 40px;
}

.product-details-layout {
    display: flex;
    gap: 40px;
    margin-bottom: 40px;
}

@media (max-width: 992px) {
    .product-details-layout {
        flex-direction: column;
    }
}

/* Product Images */
.product-images {
    flex: 1;
    max-width: 500px;
}

@media (max-width: 992px) {
    .product-images {
        max-width: 100%;
    }
}

.main-image {
    width: 100%;
    height: 400px;
    overflow: hidden;
    border-radius: 8px;
    margin-bottom: 15px;
    background: white;
    display: flex;
    align-items: center;
    justify-content: center;
}

.main-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 20px;
}

.thumbnail-images {
    display: flex;
    gap: 10px;
}

.thumbnail {
    width: 80px;
    height: 80px;
    border-radius: 4px;
    overflow: hidden;
    cursor: pointer;
    border: 2px solid transparent;
}

.thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.thumbnail.active {
    border-color: #f57224;
}

/* Product Info */
.product-info {
    flex: 1;
}

.product-title {
    font-size: 24px;
    color: #333;
    margin-bottom: 15px;
    line-height: 1.3;
}

.product-rating-overview {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid #eee;
    flex-wrap: wrap;
}

.rating-stars {
    display: flex;
    align-items: center;
    gap: 5px;
}

.rating-stars i {
    color: #ffc107;
    font-size: 18px;
}

.rating-value {
    font-weight: bold;
    margin-left: 5px;
    color: #333;
}

.rating-count, .reviews-count, .sold-count {
    color: #666;
    font-size: 14px;
}

.product-price-section {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 25px;
}

.product-price-section .current-price {
    font-size: 32px;
    font-weight: bold;
    color: #f57224;
}

.product-price-section .original-price {
    font-size: 20px;
    color: #999;
    text-decoration: line-through;
}

.discount-badge {
    background-color: #ff4444;
    color: white;
    padding: 5px 10px;
    border-radius: 4px;
    font-weight: bold;
    font-size: 16px;
}

.product-highlights {
    margin-bottom: 25px;
    padding: 20px;
    background-color: #f9f9f9;
    border-radius: 8px;
}

.product-highlights h3 {
    margin-bottom: 15px;
    color: #333;
}

.product-highlights ul {
    list-style: none;
}

.product-highlights li {
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.product-highlights i {
    color: #4CAF50;
}

.product-variants {
    margin-bottom: 25px;
}

.product-variants h3 {
    margin-bottom: 15px;
    color: #333;
}

.color-options, .storage-options {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.color-option {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    padding: 10px;
    border-radius: 8px;
    border: 2px solid transparent;
}

.color-option.active {
    border-color: #f57224;
    background-color: #fff5f0;
}

.color-circle {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 2px solid #ddd;
}

.storage-option {
    padding: 12px 20px;
    border: 2px solid #ddd;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 500;
    background: white;
}

.storage-option.active {
    border-color: #f57224;
    background-color: #fff5f0;
    color: #f57224;
}

.price-diff {
    color: #666;
    font-size: 14px;
    margin-left: 5px;
}

.product-quantity {
    margin-bottom: 25px;
}

.product-quantity h3 {
    margin-bottom: 15px;
    color: #333;
}

.quantity-selector {
    display: inline-flex;
    align-items: center;
    border: 2px solid #ddd;
    border-radius: 8px;
    overflow: hidden;
}

.quantity-btn {
    width: 40px;
    height: 40px;
    background: #f5f5f5;
    border: none;
    font-size: 18px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

.quantity-btn:hover {
    background: #e9e9e9;
}

.quantity-input {
    width: 60px;
    height: 40px;
    border: none;
    text-align: center;
    font-size: 16px;
    font-weight: 500;
    outline: none;
}

.stock-status {
    margin-top: 10px;
    color: #4CAF50;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 8px;
}

.product-actions {
    display: flex;
    gap: 15px;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.btn-add-to-cart, .btn-buy-now, .btn-wishlist {
    padding: 15px 30px;
    border: none;
    border-radius: 8px;
    font-weight: bold;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-size: 16px;
    min-width: 200px;
    flex: 1;
}

@media (max-width: 576px) {
    .btn-add-to-cart, .btn-buy-now, .btn-wishlist {
        min-width: 100%;
    }
}

.btn-add-to-cart {
    background-color: #ff9800;
    color: white;
}

.btn-add-to-cart:hover {
    background-color: #f57c00;
}

.btn-buy-now {
    background-color: #f57224;
    color: white;
}

.btn-buy-now:hover {
    background-color: #e0651a;
}

.btn-wishlist {
    background-color: white;
    color: #333;
    border: 2px solid #ddd;
}

.btn-wishlist:hover {
    background-color: #f9f9f9;
    border-color: #f57224;
    color: #f57224;
}

.delivery-info {
    background-color: #f9f9f9;
    padding: 20px;
    border-radius: 8px;
}

.delivery-info h3 {
    margin-bottom: 15px;
    color: #333;
    display: flex;
    align-items: center;
    gap: 10px;
}

.delivery-options {
    margin-bottom: 20px;
}

.delivery-option {
    margin-bottom: 10px;
    padding: 10px;
    background: white;
    border-radius: 4px;
    border-left: 4px solid #4CAF50;
}

.delivery-check {
    display: flex;
    gap: 10px;
}

.delivery-check input {
    flex: 1;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 16px;
}

.delivery-check button {
    padding: 12px 25px;
    background-color: #333;
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-weight: bold;
}

.delivery-check button:hover {
    background-color: #444;
}

/* Product Tabs */
.product-tabs {
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    margin-bottom: 40px;
}

.tabs-header {
    display: flex;
    border-bottom: 2px solid #eee;
    background: #f9f9f9;
}

.tab-link {
    padding: 20px 30px;
    background: none;
    border: none;
    font-size: 16px;
    font-weight: 500;
    color: #666;
    cursor: pointer;
    border-bottom: 3px solid transparent;
    transition: all 0.3s;
}

.tab-link.active {
    color: #f57224;
    border-bottom-color: #f57224;
    background: white;
}

.tab-link:hover:not(.active) {
    color: #333;
    background: #f5f5f5;
}

.tabs-content {
    padding: 30px;
}

.tab-pane {
    display: none;
}

.tab-pane.active {
    display: block;
}

.tab-pane h2 {
    margin-bottom: 20px;
    color: #333;
}

.tab-pane h3 {
    margin: 25px 0 15px;
    color: #333;
}

.tab-pane p {
    line-height: 1.6;
    color: #666;
    margin-bottom: 15px;
}

/* Specifications Table */
.specs-table {
    width: 100%;
    border-collapse: collapse;
}

.specs-table th, .specs-table td {
    padding: 12px 15px;
    text-align: left;
    border-bottom: 1px solid #eee;
}

.specs-table th {
    background-color: #f9f9f9;
    font-weight: 600;
    color: #333;
    width: 200px;
}

.specs-table tr:hover {
    background-color: #f9f9f9;
}

/* Reviews */
.review-summary {
    display: flex;
    gap: 40px;
    margin-bottom: 40px;
    padding-bottom: 30px;
    border-bottom: 1px solid #eee;
    flex-wrap: wrap;
}

.overall-rating {
    text-align: center;
    padding: 20px;
    background: #f9f9f9;
    border-radius: 8px;
    min-width: 150px;
}

.rating-score {
    font-size: 48px;
    font-weight: bold;
    color: #333;
    line-height: 1;
}

.overall-rating .rating-stars {
    justify-content: center;
    margin: 10px 0;
}

.overall-rating p {
    color: #666;
    font-size: 14px;
}

.rating-breakdown {
    flex: 1;
    min-width: 300px;
}

.rating-bar {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 10px;
}

.rating-bar span:first-child {
    width: 60px;
    color: #666;
}

.bar {
    flex: 1;
    height: 10px;
    background: #eee;
    border-radius: 5px;
    overflow: hidden;
}

.fill {
    height: 100%;
    background: #ffc107;
}

.rating-bar span:last-child {
    width: 40px;
    text-align: right;
    color: #666;
}

.review-form {
    margin-bottom: 40px;
    padding: 25px;
    background: #f9f9f9;
    border-radius: 8px;
}

.review-form h3 {
    margin-bottom: 20px;
    color: #333;
}

.form-rating {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.rating-input {
    display: flex;
    gap: 5px;
}

.rating-input i {
    font-size: 24px;
    color: #ddd;
    cursor: pointer;
    transition: color 0.2s;
}

.rating-input i:hover,
.rating-input i.active {
    color: #ffc107;
}

.review-form textarea {
    width: 100%;
    padding: 15px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 16px;
    margin-bottom: 20px;
    min-height: 120px;
    resize: vertical;
}

.submit-review {
    padding: 12px 30px;
    background-color: #f57224;
    color: white;
    border: none;
    border-radius: 8px;
    font-weight: bold;
    cursor: pointer;
    font-size: 16px;
}

.submit-review:hover {
    background-color: #e0651a;
}

.reviews-list {
    margin-top: 30px;
}

.review-item {
    padding: 20px 0;
    border-bottom: 1px solid #eee;
}

.review-item:last-child {
    border-bottom: none;
}

.review-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
    flex-wrap: wrap;
    gap: 10px;
}

.reviewer-info {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.review-rating {
    display: flex;
    gap: 2px;
}

.review-rating i {
    color: #ffc107;
    font-size: 14px;
}

.review-date {
    color: #999;
    font-size: 14px;
}

.review-text {
    color: #666;
    line-height: 1.6;
}

/* Q&A Section */
.ask-question {
    margin-bottom: 40px;
    padding: 25px;
    background: #f9f9f9;
    border-radius: 8px;
}

.ask-question h3 {
    margin-bottom: 20px;
    color: #333;
}

.ask-question textarea {
    width: 100%;
    padding: 15px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 16px;
    margin-bottom: 20px;
    min-height: 100px;
    resize: vertical;
}

.submit-question {
    padding: 12px 30px;
    background-color: #333;
    color: white;
    border: none;
    border-radius: 8px;
    font-weight: bold;
    cursor: pointer;
    font-size: 16px;
}

.submit-question:hover {
    background-color: #444;
}

.questions-list {
    margin-top: 30px;
}

.question-item {
    padding: 20px 0;
    border-bottom: 1px solid #eee;
}

.question-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 15px;
    flex-wrap: wrap;
    gap: 10px;
}

.question-header strong {
    color: #333;
    font-size: 16px;
    flex: 1;
}

.question-date {
    color: #999;
    font-size: 14px;
}

.answer {
    padding: 15px;
    background: #f9f9f9;
    border-radius: 8px;
    border-left: 4px solid #4CAF50;
}

.answer strong {
    color: #333;
    margin-right: 10px;
}

/* Related Products */
.related-products {
    margin-top: 50px;
}

.related-products h2 {
    font-size: 24px;
    color: #333;
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 2px solid #f57224;
}

/* Cart Page */
.cart-page {
    padding: 20px 0 40px;
}

.cart-layout {
    display: flex;
    gap: 30px;
}

@media (max-width: 992px) {
    .cart-layout {
        flex-direction: column;
    }
}

/* Cart Items Section */
.cart-items-section {
    flex: 1;
}

.cart-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 2px solid #f57224;
}

.cart-header h2 {
    font-size: 24px;
    color: #333;
}

.remove-all-btn {
    padding: 10px 20px;
    background: #ff4444;
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-weight: 500;
}

.remove-all-btn:hover {
    background: #ff3333;
}

.cart-items {
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    margin-bottom: 25px;
}

.cart-item {
    display: flex;
    padding: 20px;
    border-bottom: 1px solid #eee;
    align-items: center;
    gap: 20px;
}

@media (max-width: 768px) {
    .cart-item {
        flex-wrap: wrap;
        gap: 15px;
    }
}

.cart-item:last-child {
    border-bottom: none;
}

.cart-item-select {
    flex-shrink: 0;
}

.cart-item-select input[type="checkbox"] {
    width: 18px;
    height: 18px;
    cursor: pointer;
}

.cart-item-image {
    flex-shrink: 0;
    width: 120px;
    height: 120px;
}

.cart-item-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    background: white;
    padding: 10px;
    border-radius: 8px;
    border: 1px solid #eee;
}

.cart-item-details {
    flex: 1;
    min-width: 200px;
}

.cart-item-title {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 8px;
    color: #333;
    line-height: 1.4;
}

.cart-item-seller {
    color: #666;
    font-size: 14px;
    margin-bottom: 10px;
}

.cart-item-price {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
    flex-wrap: wrap;
}

.cart-item-price .current-price {
    font-size: 18px;
    font-weight: bold;
    color: #f57224;
}

.cart-item-price .original-price {
    color: #999;
    text-decoration: line-through;
    font-size: 14px;
}

.cart-item-price .discount {
    color: #ff4444;
    font-weight: 500;
    font-size: 14px;
}

.cart-item-actions {
    display: flex;
    gap: 20px;
}

.cart-item-actions button {
    background: none;
    border: none;
    color: #666;
    cursor: pointer;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 5px;
}

.cart-item-actions button:hover {
    color: #f57224;
}

.cart-item-quantity {
    flex-shrink: 0;
}

.cart-item-total {
    flex-shrink: 0;
    min-width: 100px;
    text-align: right;
}

.total-price {
    font-size: 18px;
    font-weight: bold;
    color: #333;
}

.cart-continue-shopping {
    text-align: left;
}

.continue-shopping-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 25px;
    background: white;
    color: #333;
    text-decoration: none;
    border: 2px solid #ddd;
    border-radius: 8px;
    font-weight: 500;
}

.continue-shopping-btn:hover {
    background: #f9f9f9;
    border-color: #f57224;
    color: #f57224;
}

/* Order Summary */
.order-summary-section {
    width: 350px;
    flex-shrink: 0;
}

@media (max-width: 992px) {
    .order-summary-section {
        width: 100%;
    }
}

.order-summary {
    background: white;
    padding: 25px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    margin-bottom: 25px;
}

.order-summary h2 {
    font-size: 20px;
    color: #333;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 1px solid #eee;
}

.summary-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 15px;
    color: #666;
}

.summary-row.free {
    color: #4CAF50;
}

.summary-row.discount {
    color: #ff4444;
}

.summary-row.tax {
    padding-top: 15px;
    border-top: 1px solid #eee;
    margin-top: 15px;
}

.summary-total {
    display: flex;
    justify-content: space-between;
    margin-top: 20px;
    padding-top: 20px;
    border-top: 2px solid #eee;
    font-size: 18px;
    font-weight: bold;
    color: #333;
}

.total-amount {
    color: #f57224;
    font-size: 24px;
}

.savings-message {
    background: #f0f9ff;
    color: #0066cc;
    padding: 15px;
    border-radius: 8px;
    margin: 20px 0;
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 500;
}

.checkout-btn {
    width: 100%;
    padding: 16px;
    background-color: #f57224;
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 18px;
    font-weight: bold;
    cursor: pointer;
    margin-bottom: 20px;
}

.checkout-btn:hover {
    background-color: #e0651a;
}

.payment-methods-summary {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid #eee;
}

.payment-methods-summary p {
    margin-bottom: 15px;
    color: #666;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.payment-icons {
    display: flex;
    justify-content: center;
    gap: 15px;
    font-size: 24px;
    color: #666;
}

.promo-code {
    background: white;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    margin-bottom: 25px;
}

.promo-code h3 {
    margin-bottom: 15px;
    color: #333;
}

.promo-input {
    display: flex;
    gap: 10px;
}

.promo-input input {
    flex: 1;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 16px;
}

.apply-promo {
    padding: 12px 25px;
    background-color: #333;
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-weight: bold;
}

.apply-promo:hover {
    background-color: #444;
}

.delivery-info-summary {
    background: white;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.delivery-info-summary h3 {
    margin-bottom: 15px;
    color: #333;
    display: flex;
    align-items: center;
    gap: 10px;
}

.delivery-info-summary p {
    color: #666;
    margin-bottom: 8px;
}

/* Recently Viewed */
.recently-viewed {
    margin-top: 50px;
}

.recently-viewed h2 {
    font-size: 24px;
    color: #333;
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 2px solid #f57224;
}

/* Checkout Page */
.checkout-progress {
    background: #f9f9f9;
    padding: 20px 0;
    border-bottom: 1px solid #eee;
}

.progress-steps {
    display: flex;
    justify-content: space-between;
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}

.progress-steps::before {
    content: '';
    position: absolute;
    top: 20px;
    left: 50px;
    right: 50px;
    height: 3px;
    background: #ddd;
    z-index: 1;
}

.progress-steps::after {
    content: '';
    position: absolute;
    top: 20px;
    left: 50px;
    width: 50%;
    height: 3px;
    background: #f57224;
    z-index: 2;
    transition: width 0.3s;
}

.step {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    z-index: 3;
}

.step-number {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: white;
    border: 3px solid #ddd;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    color: #999;
    margin-bottom: 10px;
    transition: all 0.3s;
}

.step.active .step-number {
    border-color: #f57224;
    background: #f57224;
    color: white;
}

.step-label {
    font-weight: 500;
    color: #999;
}

.step.active .step-label {
    color: #f57224;
}

.checkout-page {
    padding: 30px 0 50px;
}

.checkout-layout {
    display: flex;
    gap: 40px;
}

@media (max-width: 992px) {
    .checkout-layout {
        flex-direction: column;
    }
}

/* Checkout Forms */
.checkout-forms {
    flex: 1;
}

.checkout-section {
    background: white;
    padding: 25px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    margin-bottom: 25px;
}

.checkout-section h2 {
    font-size: 20px;
    color: #333;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.address-options {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.address-option {
    padding: 20px;
    border: 2px solid #ddd;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s;
    position: relative;
}

.address-option.selected {
    border-color: #f57224;
    background: #fff5f0;
}

.address-option h3 {
    color: #333;
    margin-bottom: 10px;
}

.address-option p {
    color: #666;
    margin-bottom: 5px;
    font-size: 14px;
}

.edit-address {
    position: absolute;
    top: 20px;
    right: 20px;
    padding: 8px 15px;
    background: #f5f5f5;
    border: 1px solid #ddd;
    border-radius: 4px;
    color: #333;
    font-weight: 500;
    cursor: pointer;
}

.edit-address:hover {
    background: #e9e9e9;
}

.add-new-address {
    padding: 20px;
    border: 2px dashed #ddd;
    border-radius: 8px;
    background: none;
    color: #666;
    font-size: 16px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: all 0.3s;
}

.add-new-address:hover {
    border-color: #f57224;
    color: #f57224;
    background: #fff5f0;
}

/* Delivery Options */
.delivery-options {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.delivery-option {
    padding: 20px;
    border: 2px solid #ddd;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s;
}

.delivery-option.selected {
    border-color: #f57224;
    background: #fff5f0;
}

.option-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 10px;
}

.option-header input[type="radio"] {
    width: 18px;
    height: 18px;
    cursor: pointer;
}

.option-header h3 {
    flex: 1;
    color: #333;
    font-size: 18px;
    margin: 0;
}

.delivery-price {
    font-weight: bold;
    color: #f57224;
    font-size: 18px;
}

.delivery-option p {
    color: #666;
    margin-bottom: 5px;
    font-size: 14px;
}

.delivery-note {
    color: #ff9800;
    font-style: italic;
    font-size: 13px;
    margin-top: 5px;
}

/* Payment Options */
.payment-options {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.payment-option {
    padding: 20px;
    border: 2px solid #ddd;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s;
}

.payment-option.selected {
    border-color: #f57224;
    background: #fff5f0;
}

.payment-icon {
    font-size: 24px;
    color: #666;
    width: 40px;
    text-align: center;
}

.card-form {
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid #eee;
    display: none;
}

.payment-option.selected .card-form {
    display: block;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    color: #666;
    font-weight: 500;
}

.form-group input {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 16px;
    transition: border-color 0.3s;
}

.form-group input:focus {
    border-color: #f57224;
    outline: none;
}

.form-row {
    display: flex;
    gap: 20px;
}

.form-row .form-group {
    flex: 1;
}

.checkout-section textarea {
    width: 100%;
    padding: 15px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 16px;
    resize: vertical;
    min-height: 100px;
}

.checkout-section textarea:focus {
    border-color: #f57224;
    outline: none;
}

/* Checkout Summary */
.checkout-summary {
    width: 400px;
    flex-shrink: 0;
}

@media (max-width: 992px) {
    .checkout-summary {
        width: 100%;
    }
}

.order-summary-box {
    background: white;
    padding: 25px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    margin-bottom: 25px;
}

.order-summary-box h2 {
    font-size: 20px;
    color: #333;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 1px solid #eee;
}

.order-items {
    margin-bottom: 25px;
}

.order-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px 0;
    border-bottom: 1px solid #eee;
}

.order-item:last-child {
    border-bottom: none;
}

.item-image {
    width: 60px;
    height: 60px;
    flex-shrink: 0;
}

.item-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    background: white;
    padding: 5px;
    border-radius: 4px;
    border: 1px solid #eee;
}

.item-details {
    flex: 1;
}

.item-details h4 {
    font-size: 14px;
    color: #333;
    margin-bottom: 5px;
    line-height: 1.4;
}

.item-details p {
    color: #666;
    font-size: 13px;
}

.item-price {
    font-weight: bold;
    color: #333;
}

.summary-details {
    margin-top: 20px;
}

.terms-agreement {
    margin: 25px 0;
    padding: 20px;
    background: #f9f9f9;
    border-radius: 8px;
}

.terms-agreement label {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    color: #666;
    line-height: 1.5;
    cursor: pointer;
}

.terms-agreement a {
    color: #f57224;
    text-decoration: none;
}

.terms-agreement a:hover {
    text-decoration: underline;
}

.place-order-btn {
    width: 100%;
    padding: 18px;
    background-color: #f57224;
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 18px;
    font-weight: bold;
    cursor: pointer;
    margin-bottom: 20px;
}

.place-order-btn:hover {
    background-color: #e0651a;
}

.security-notice {
    text-align: center;
    padding: 15px;
    background: #f0f9ff;
    border-radius: 8px;
    color: #0066cc;
    font-weight: 500;
}

.security-notice i {
    margin-right: 8px;
}

.need-help {
    background: white;
    padding: 25px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.need-help h3 {
    margin-bottom: 15px;
    color: #333;
    display: flex;
    align-items: center;
    gap: 10px;
}

.need-help p {
    color: #666;
    margin-bottom: 10px;
}

.need-help strong {
    color: #333;
}

/* Login/Signup Page */
.auth-page {
    padding: 40px 0;
    min-height: calc(100vh - 400px);
    display: flex;
    align-items: center;
}

.auth-container {
    display: flex;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

@media (max-width: 992px) {
    .auth-container {
        flex-direction: column;
    }
}

/* Auth Forms */
.auth-form {
    flex: 1;
    background: white;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    max-width: 500px;
    display: none;
}

.auth-form.active {
    display: block;
}

.auth-form h2 {
    font-size: 28px;
    color: #333;
    margin-bottom: 10px;
}

.auth-subtitle {
    color: #666;
    margin-bottom: 30px;
    font-size: 16px;
}

#loginForm, #signupForm {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-row {
    display: flex;
    gap: 20px;
}

.form-row .form-group {
    flex: 1;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    color: #666;
    font-weight: 500;
}

.form-group input {
    width: 100%;
    padding: 14px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 16px;
    transition: all 0.3s;
}

.form-group input:focus {
    border-color: #f57224;
    outline: none;
    box-shadow: 0 0 0 3px rgba(245, 114, 36, 0.1);
}

.password-input {
    position: relative;
}

.password-input input {
    padding-right: 45px;
}

.toggle-password {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    color: #666;
    cursor: pointer;
    font-size: 18px;
}

.toggle-password:hover {
    color: #333;
}

.password-hint {
    font-size: 13px;
    color: #999;
    margin-top: 5px;
}

.form-options {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
}

.remember-me, .terms-agree, .marketing-consent {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #666;
    font-size: 14px;
    cursor: pointer;
}

.forgot-password {
    color: #f57224;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
}

.forgot-password:hover {
    text-decoration: underline;
}

.auth-btn {
    padding: 16px;
    background-color: #f57224;
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 18px;
    font-weight: bold;
    cursor: pointer;
    transition: background-color 0.3s;
}

.auth-btn:hover {
    background-color: #e0651a;
}

.auth-divider {
    text-align: center;
    position: relative;
    margin: 20px 0;
}

.auth-divider::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 1px;
    background: #eee;
}

.auth-divider span {
    background: white;
    padding: 0 15px;
    color: #999;
    font-size: 14px;
    position: relative;
    z-index: 1;
}

.social-auth {
    display: flex;
    gap: 15px;
}

.social-btn {
    flex: 1;
    padding: 14px;
    border: 2px solid #ddd;
    border-radius: 8px;
    background: white;
    color: #333;
    font-weight: 500;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: all 0.3s;
}

.social-btn:hover {
    border-color: #333;
    background: #f9f9f9;
}

.google-btn i {
    color: #DB4437;
}

.facebook-btn i {
    color: #4267B2;
}

.auth-switch {
    text-align: center;
    margin-top: 25px;
    color: #666;
}

.auth-switch a {
    color: #f57224;
    text-decoration: none;
    font-weight: 500;
    margin-left: 5px;
}

.auth-switch a:hover {
    text-decoration: underline;
}

/* Auth Benefits */
.auth-benefits {
    flex: 1;
    max-width: 600px;
}

.auth-benefits h2 {
    font-size: 28px;
    color: #333;
    margin-bottom: 30px;
}

.benefits-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
}

@media (max-width: 576px) {
    .benefits-list {
        grid-template-columns: 1fr;
    }
}

.benefit-item {
    padding: 25px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s;
}

.benefit-item:hover {
    transform: translateY(-5px);
}

.benefit-item i {
    font-size: 32px;
    color: #f57224;
    margin-bottom: 15px;
}

.benefit-item h3 {
    font-size: 18px;
    color: #333;
    margin-bottom: 10px;
}

.benefit-item p {
    color: #666;
    line-height: 1.5;
    font-size: 14px;
}

/* Account Page */
.account-page {
    padding: 30px 0 50px;
}

.account-layout {
    display: flex;
    gap: 40px;
}

@media (max-width: 992px) {
    .account-layout {
        flex-direction: column;
    }
}

/* Account Sidebar */
.account-sidebar {
    width: 300px;
    flex-shrink: 0;
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    height: fit-content;
    position: sticky;
    top: 120px;
}

@media (max-width: 992px) {
    .account-sidebar {
        width: 100%;
        position: static;
    }
}

.user-profile-summary {
    padding: 30px;
    text-align: center;
    background: linear-gradient(135deg, #f57224, #ff9800);
    color: white;
}

.user-avatar-large {
    position: relative;
    margin: 0 auto 20px;
    width: 100px;
    height: 100px;
}

.user-avatar-large i {
    font-size: 100px;
    color: white;
    opacity: 0.9;
}

.change-avatar {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: white;
    color: #f57224;
    border: none;
    font-size: 14px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

.change-avatar:hover {
    background: #f5f5f5;
}

.user-info h2 {
    font-size: 24px;
    margin-bottom: 5px;
}

.user-info p {
    opacity: 0.9;
    margin-bottom: 5px;
}

.member-since {
    font-size: 14px;
    opacity: 0.8;
    margin-top: 10px;
}

.account-menu {
    padding: 20px 0;
}

.menu-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 30px;
    color: #666;
    text-decoration: none;
    border-left: 4px solid transparent;
    transition: all 0.3s;
}

.menu-item:hover {
    background: #f9f9f9;
    color: #333;
    border-left-color: #ddd;
}

.menu-item.active {
    background: #fff5f0;
    color: #f57224;
    border-left-color: #f57224;
    font-weight: 500;
}

.menu-item i {
    width: 20px;
    margin-right: 15px;
    text-align: center;
}

.badge, .points {
    background: #f57224;
    color: white;
    padding: 4px 10px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: bold;
}

.points {
    background: #4CAF50;
}

.menu-item.logout {
    color: #ff4444;
    margin-top: 20px;
    border-top: 1px solid #eee;
    padding-top: 25px;
}

.menu-item.logout:hover {
    background: #fff5f5;
    color: #ff3333;
}

/* Account Content */
.account-content {
    flex: 1;
}

.account-overview {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-bottom: 30px;
}

.overview-card {
    background: white;
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.08);
    display: flex;
    align-items: center;
    gap: 20px;
    transition: transform 0.3s;
}

.overview-card:hover {
    transform: translateY(-5px);
}

.overview-card i {
    font-size: 32px;
    color: #f57224;
}

.overview-info h3 {
    font-size: 14px;
    color: #666;
    margin-bottom: 5px;
}

.overview-info .count {
    font-size: 28px;
    font-weight: bold;
    color: #333;
}

.account-section {
    background: white;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.08);
    margin-bottom: 30px;
}

.account-section h2 {
    font-size: 20px;
    color: #333;
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.account-form {
    max-width: 600px;
}

.radio-group {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.radio-group label {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #666;
    cursor: pointer;
}

.save-btn {
    padding: 14px 30px;
    background-color: #f57224;
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    margin-top: 20px;
}

.save-btn:hover {
    background-color: #e0651a;
}

.preferences-form {
    max-width: 600px;
}

.preference-item {
    margin-bottom: 15px;
    padding: 15px;
    background: #f9f9f9;
    border-radius: 8px;
}

.preference-item label {
    display: flex;
    align-items: center;
    gap: 12px;
    cursor: pointer;
    color: #666;
}

.preference-item input[type="checkbox"] {
    width: 18px;
    height: 18px;
}

.recent-orders {
    margin-top: 20px;
}

.order-card {
    border: 1px solid #eee;
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 20px;
}

.order-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    background: #f9f9f9;
    flex-wrap: wrap;
    gap: 10px;
}

.order-info h3 {
    font-size: 18px;
    color: #333;
    margin-bottom: 5px;
}

.order-info p {
    color: #666;
    font-size: 14px;
}

.order-status {
    padding: 8px 15px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 500;
}

.order-status.delivered {
    background: #d4edda;
    color: #155724;
}

.order-items {
    padding: 20px;
    border-bottom: 1px solid #eee;
}

.order-item {
    display: flex;
    align-items: center;
    gap: 15px;
}

.order-item img {
    width: 60px;
    height: 60px;
    object-fit: contain;
    background: white;
    padding: 5px;
    border-radius: 8px;
    border: 1px solid #eee;
}

.item-info h4 {
    font-size: 16px;
    color: #333;
    margin-bottom: 5px;
}

.item-info p {
    color: #666;
    font-size: 14px;
}

.order-footer {
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
}

.order-total {
    font-size: 18px;
    font-weight: bold;
    color: #333;
}

.order-actions {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.btn-view, .btn-reorder, .btn-review {
    padding: 10px 20px;
    border-radius: 6px;
    font-weight: 500;
    cursor: pointer;
    border: none;
    font-size: 14px;
}

.btn-view {
    background: #f5f5f5;
    color: #333;
}

.btn-view:hover {
    background: #e9e9e9;
}

.btn-reorder {
    background: #f57224;
    color: white;
}

.btn-reorder:hover {
    background: #e0651a;
}

.btn-review {
    background: #4CAF50;
    color: white;
}

.btn-review:hover {
    background: #45a049;
}

.view-all-orders {
    text-align: center;
    margin-top: 20px;
}

.view-all-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 30px;
    background: #333;
    color: white;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 500;
    transition: background 0.3s;
}

.view-all-btn:hover {
    background: #444;
}

/* User Menu in Header */
.user-menu {
    position: relative;
}

.user-avatar {
    display: flex;
    flex-direction: column;
    align-items: center;
    cursor: pointer;
    padding: 5px 10px;
    border-radius: 4px;
    transition: background-color 0.3s;
}

.user-avatar:hover {
    background-color: #f9f9f9;
}

.user-avatar i {
    font-size: 24px;
    color: #333;
}

.user-dropdown {
    position: absolute;
    top: 100%;
    right: 0;
    width: 250px;
    background: white;
    border-radius: 8px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
    padding: 15px 0;
    z-index: 1000;
    display: none;
}

.user-menu:hover .user-dropdown {
    display: block;
}

.user-info {
    padding: 0 20px 15px;
    border-bottom: 1px solid #eee;
    margin-bottom: 10px;
}

.user-info strong {
    display: block;
    color: #333;
    font-size: 16px;
    margin-bottom: 5px;
}

.user-info span {
    color: #666;
    font-size: 14px;
}

.dropdown-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 20px;
    color: #666;
    text-decoration: none;
    transition: all 0.3s;
}

.dropdown-item:hover {
    background: #f9f9f9;
    color: #f57224;
}

.dropdown-divider {
    height: 1px;
    background: #eee;
    margin: 10px 0;
}

.dropdown-item.logout {
    color: #ff4444;
}

.dropdown-item.logout:hover {
    background: #fff5f5;
    color: #ff3333;
}

/* Additional Responsive Adjustments */
@media (max-width: 768px) {
    .cart-item-details {
        min-width: 100%;
        order: 3;
    }
    
    .cart-item-quantity, .cart-item-total {
        flex: 1;
        text-align: center;
    }
    
    .checkout-progress .step-label {
        font-size: 12px;
    }
    
    .auth-form {
        padding: 30px 20px;
    }
    
    .form-row {
        flex-direction: column;
        gap: 0;
    }
    
    .order-actions {
        justify-content: center;
        width: 100%;
    }
}

@media (max-width: 576px) {
    .cart-item {
        flex-direction: column;
        text-align: center;
    }
    
    .cart-item-actions {
        justify-content: center;
    }
    
    .progress-steps::before,
    .progress-steps::after {
        display: none;
    }
    
    .step {
        flex: 1;
    }
    
    .step-number {
        width: 30px;
        height: 30px;
        font-size: 14px;
    }
    
    .account-overview {
        grid-template-columns: 1fr;
    }
}

/* Wishlist Button in Header */
.wishlist {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-left: 15px;
    cursor: pointer;
    text-decoration: none;
    color: #333;
}

.wishlist:hover {
    color: #f57224;
}

.wishlist i {
    font-size: 24px;
}

.wishlist-text {
    font-size: 14px;
    margin-top: 2px;
    display: none;
}

@media (min-width: 768px) {
    .wishlist-text {
        display: block;
    }
}

/* Active State for Navigation */
.cart.active, .login-btn.active, .wishlist.active {
    color: #f57224;
}

/* Additional Utility Classes */
.text-center {
    text-align: center;
}

.mt-20 {
    margin-top: 20px;
}

.mb-20 {
    margin-bottom: 20px;
}

.hidden {
    display: none;
}

.loading {
    opacity: 0.6;
    pointer-events: none;
}

/* Privacy Policy Page Styles */
.policy-page {
    padding: 30px 0 50px;
    background-color: #f9f9f9;
}

.policy-header {
    text-align: center;
    margin-bottom: 40px;
    padding-bottom: 30px;
    border-bottom: 2px solid #f57224;
}

.policy-header h1 {
    font-size: 36px;
    color: #333;
    margin-bottom: 10px;
}

.last-updated {
    color: #666;
    font-size: 16px;
    font-style: italic;
}

/* Table of Contents */
.table-of-contents {
    background: white;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    margin-bottom: 40px;
}

.table-of-contents h2 {
    font-size: 24px;
    color: #333;
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 1px solid #eee;
}

.toc-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 15px;
}

.toc-item {
    display: flex;
    align-items: center;
    padding: 15px;
    background: #f8f9fa;
    border-radius: 8px;
    text-decoration: none;
    color: #333;
    transition: all 0.3s ease;
    border-left: 4px solid transparent;
}

.toc-item:hover {
    background: #fff5f0;
    border-left-color: #f57224;
    transform: translateX(5px);
    color: #f57224;
}

.toc-item i {
    font-size: 20px;
    margin-right: 15px;
    width: 24px;
    text-align: center;
}

.toc-item span {
    font-weight: 500;
}

/* Policy Content */
.policy-content {
    background: white;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.policy-section {
    margin-bottom: 50px;
    padding-bottom: 40px;
    border-bottom: 1px solid #eee;
}

.policy-section:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.section-header {
    display: flex;
    align-items: center;
    margin-bottom: 30px;
    padding-bottom: 15px;
    border-bottom: 2px solid #f57224;
}

.section-header i {
    font-size: 28px;
    color: #f57224;
    margin-right: 15px;
}

.section-header h2 {
    font-size: 28px;
    color: #333;
    margin: 0;
}

.intro {
    font-size: 18px;
    line-height: 1.6;
    color: #444;
    margin-bottom: 30px;
    padding: 20px;
    background: #f8f9fa;
    border-radius: 8px;
    border-left: 4px solid #f57224;
}

.policy-subsection {
    margin-bottom: 35px;
}

.policy-subsection:last-child {
    margin-bottom: 0;
}

.policy-subsection h3 {
    font-size: 22px;
    color: #333;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 1px solid #eee;
}

.policy-subsection ul {
    list-style: none;
    padding-left: 0;
}

.policy-subsection ul li {
    padding: 10px 0;
    border-bottom: 1px solid #f5f5f5;
    display: flex;
    align-items: center;
}

.policy-subsection ul li:last-child {
    border-bottom: none;
}

.policy-subsection ul li i {
    color: #f57224;
    margin-right: 15px;
    width: 20px;
    text-align: center;
}

/* Specific Section Styles */
.use-cases {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 20px;
}

.use-case {
    display: flex;
    align-items: center;
    padding: 20px;
    background: #f8f9fa;
    border-radius: 8px;
    transition: all 0.3s;
}

.use-case:hover {
    background: #fff5f0;
    transform: translateY(-3px);
}

.use-case i {
    font-size: 24px;
    color: #f57224;
    margin-right: 15px;
    width: 40px;
    text-align: center;
}

.security-features {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 20px;
}

.security-feature {
    display: flex;
    padding: 20px;
    background: #f0f9ff;
    border-radius: 8px;
    border-left: 4px solid #0066cc;
}

.security-feature i {
    font-size: 24px;
    color: #0066cc;
    margin-right: 15px;
    margin-top: 5px;
}

.security-feature h4 {
    color: #0066cc;
    margin-bottom: 5px;
}

.rights-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 15px;
    margin: 20px 0;
}

.right-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 20px;
    background: #f8f9fa;
    border-radius: 8px;
    text-align: center;
}

.right-item i {
    font-size: 32px;
    color: #4CAF50;
    margin-bottom: 10px;
}

.contact-info {
    padding: 15px;
    background: #f0f9ff;
    border-radius: 8px;
    margin-top: 20px;
    border-left: 4px solid #2196F3;
}

/* Terms & Conditions Styles */
.eligibility-box {
    display: flex;
    padding: 25px;
    background: #f0f9f0;
    border-radius: 8px;
    border-left: 4px solid #4CAF50;
}

.eligibility-box i {
    font-size: 32px;
    color: #4CAF50;
    margin-right: 20px;
    margin-top: 5px;
}

.role-explanation {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin: 20px 0;
}

.role-card {
    padding: 25px;
    background: #f8f9fa;
    border-radius: 8px;
    border-top: 4px solid #f57224;
}

.role-card h4 {
    color: #333;
    margin-bottom: 15px;
    font-size: 20px;
}

.role-card ul {
    list-style: none;
    padding-left: 0;
}

.role-card ul li {
    padding: 8px 0;
    display: flex;
    align-items: center;
}

.role-card ul li i {
    color: #f57224;
    margin-right: 10px;
}

.responsibility-list {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 15px;
}

.responsibility {
    display: flex;
    align-items: center;
    padding: 15px;
    background: #f8f9fa;
    border-radius: 8px;
}

.responsibility i {
    font-size: 20px;
    margin-right: 15px;
    width: 24px;
    text-align: center;
}

.responsibility i.fa-check-circle {
    color: #4CAF50;
}

.responsibility i.fa-times-circle {
    color: #ff4444;
}

.responsibility i.fa-balance-scale {
    color: #9C27B0;
}

.responsibility i.fa-user-shield {
    color: #2196F3;
}

.responsibility i.fa-star {
    color: #FFC107;
}

.warning-box {
    display: flex;
    padding: 25px;
    background: #fff5f5;
    border-radius: 8px;
    border-left: 4px solid #ff4444;
}

.warning-box i {
    font-size: 32px;
    color: #ff4444;
    margin-right: 20px;
    margin-top: 5px;
}

/*  Styles */
.obligations-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 20px;
    margin: 20px 0;
}

.obligation {
    padding: 20px;
    background: #f8f9fa;
    border-radius: 8px;
    border-top: 4px solid #2196F3;
    transition: all 0.3s;
}

.obligation:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.obligation i {
    font-size: 28px;
    color: #2196F3;
    margin-bottom: 15px;
}

.obligation h4 {
    color: #333;
    margin-bottom: 10px;
    font-size: 18px;
}

.commission-details {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin: 20px 0;
}

.commission-item {
    padding: 25px;
    background: #f8f9fa;
    border-radius: 8px;
}

.commission-rate {
    text-align: center;
    margin: 20px 0;
    padding: 20px;
    background: white;
    border-radius: 8px;
    border: 2px dashed #f57224;
}

.rate {
    font-size: 48px;
    font-weight: bold;
    color: #f57224;
    display: block;
    line-height: 1;
}

.label {
    font-size: 16px;
    color: #666;
    margin-top: 10px;
    display: block;
}

.prohibited-list {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 15px;
}

.prohibited-item {
    display: flex;
    align-items: center;
    padding: 15px;
    background: #fff5f5;
    border-radius: 8px;
    border-left: 4px solid #ff4444;
}

.prohibited-item i {
    color: #ff4444;
    margin-right: 15px;
    font-size: 18px;
}

.suspension-reasons {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 20px;
    margin-top: 20px;
}

.reason {
    display: flex;
    padding: 20px;
    background: #f8f9fa;
    border-radius: 8px;
}

.reason i {
    font-size: 24px;
    color: #ff9800;
    margin-right: 15px;
    margin-top: 5px;
}

/* Refund & Return Policy Styles */
.return-cases {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 20px;
    margin: 20px 0;
}

.return-case {
    display: flex;
    padding: 20px;
    border-radius: 8px;
    border-left: 4px solid;
}

.return-case.accepted {
    background: #f0f9f0;
    border-left-color: #4CAF50;
}

.return-case.rejected {
    background: #fff5f5;
    border-left-color: #ff4444;
}

.return-case i {
    font-size: 24px;
    margin-right: 15px;
    margin-top: 5px;
}

.return-case.accepted i {
    color: #4CAF50;
}

.return-case.rejected i {
    color: #ff4444;
}

.note {
    padding: 10px 15px;
    background: #f0f9ff;
    border-radius: 6px;
    display: inline-block;
    margin-top: 10px;
}

.refund-process {
    margin: 30px 0;
}

.process-step {
    display: flex;
    align-items: center;
    margin-bottom: 30px;
    padding-bottom: 30px;
    border-bottom: 1px solid #eee;
    position: relative;
}

.process-step:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.step-number {
    width: 50px;
    height: 50px;
    background: #f57224;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: bold;
    margin-right: 20px;
    flex-shrink: 0;
}

.refund-methods {
    margin-top: 40px;
    padding: 25px;
    background: #f8f9fa;
    border-radius: 8px;
}

.methods-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 15px;
    margin: 20px 0;
}

.method {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 20px;
    background: white;
    border-radius: 8px;
    text-align: center;
}

.method i {
    font-size: 32px;
    color: #2196F3;
    margin-bottom: 10px;
}

.processing-time {
    padding: 15px;
    background: #f0f9ff;
    border-radius: 8px;
    margin-top: 20px;
}

/* Order Cancellation Styles */
.cancellation-case {
    display: flex;
    padding: 25px;
    border-radius: 8px;
    margin-bottom: 20px;
    border-left: 4px solid;
}

.cancellation-case.allowed {
    background: #f0f9f0;
    border-left-color: #4CAF50;
}

.cancellation-case.conditional {
    background: #fffbf0;
    border-left-color: #FFC107;
}

.cancellation-case.platform {
    background: #f0f9ff;
    border-left-color: #2196F3;
}

.cancellation-case i {
    font-size: 32px;
    margin-right: 20px;
    margin-top: 5px;
    flex-shrink: 0;
}

.cancellation-case.allowed i {
    color: #4CAF50;
}

.cancellation-case.conditional i {
    color: #FFC107;
}

.cancellation-case.platform i {
    color: #2196F3;
}

.warning {
    padding: 10px 15px;
    background: rgba(255, 193, 7, 0.1);
    border-radius: 6px;
    margin-top: 15px;
}

/* Shipping Policy Styles */
.shipping-factors {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 20px;
    margin: 20px 0;
}

.factor {
    display: flex;
    padding: 20px;
    background: #f8f9fa;
    border-radius: 8px;
}

.factor i {
    font-size: 24px;
    color: #f57224;
    margin-right: 15px;
    margin-top: 5px;
}

.free-shipping-note {
    padding: 15px;
    background: #f0f9f0;
    border-radius: 8px;
    margin-top: 20px;
    border-left: 4px solid #4CAF50;
}

.delivery-timelines {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 20px;
    margin: 20px 0;
}

.timeline {
    padding: 20px;
    background: #f8f9fa;
    border-radius: 8px;
    border-top: 4px solid #2196F3;
}

.timeline-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
}

.time {
    background: #2196F3;
    color: white;
    padding: 5px 10px;
    border-radius: 20px;
    font-weight: bold;
    font-size: 14px;
}

.delay-reasons {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 15px;
}

.delay-reason {
    padding: 8px 15px;
    background: #fff5f5;
    border-radius: 20px;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.failed-delivery-info {
    margin-top: 30px;
}

.attempt {
    display: flex;
    align-items: flex-start;
    margin-bottom: 30px;
    padding-bottom: 30px;
    border-bottom: 1px solid #eee;
}

.attempt:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.attempt-number {
    width: 40px;
    height: 40px;
    background: #9C27B0;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: bold;
    margin-right: 20px;
    flex-shrink: 0;
}

/* Warranty Policy Styles */
.warranty-type {
    display: flex;
    padding: 25px;
    background: #f8f9fa;
    border-radius: 8px;
    margin-bottom: 20px;
    border-left: 4px solid #f57224;
}

.warranty-type i {
    font-size: 32px;
    color: #f57224;
    margin-right: 20px;
    margin-top: 5px;
    flex-shrink: 0;
}

.warranty-exclusions {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 20px;
    margin-top: 20px;
}

.exclusion {
    display: flex;
    padding: 20px;
    background: #fff5f5;
    border-radius: 8px;
    border-left: 4px solid #ff4444;
}

.exclusion i {
    color: #ff4444;
    font-size: 24px;
    margin-right: 15px;
    margin-top: 5px;
}

/* Prohibited Items Styles */
.prohibited-items-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 20px;
    margin: 20px 0;
}

.prohibited-item-card {
    padding: 20px;
    border-radius: 8px;
    text-align: center;
    transition: all 0.3s;
}

.prohibited-item-card:hover {
    transform: translateY(-5px);
}

.prohibited-item-card.illegal {
    background: #fff5f5;
    border: 2px solid #ff4444;
}

.prohibited-item-card.weapons {
    background: #fff5f5;
    border: 2px solid #ff4444;
}

.prohibited-item-card.hazardous {
    background: #fff5f5;
    border: 2px solid #ff9800;
}

.prohibited-item-card.counterfeit {
    background: #fff5f5;
    border: 2px solid #ff9800;
}

.prohibited-item-card.adult {
    background: #fff5f5;
    border: 2px solid #9C27B0;
}

.prohibited-item-card.medicines {
    background: #fff5f5;
    border: 2px solid #ff4444;
}

.prohibited-item-card.alcohol {
    background: #fff5f5;
    border: 2px solid #ff9800;
}

.prohibited-item-card.animals {
    background: #fff5f5;
    border: 2px solid #4CAF50;
}

.prohibited-item-card i {
    font-size: 32px;
    margin-bottom: 15px;
    display: block;
}

.prohibited-item-card.illegal i,
.prohibited-item-card.weapons i,
.prohibited-item-card.medicines i {
    color: #ff4444;
}

.prohibited-item-card.hazardous i,
.prohibited-item-card.counterfeit i,
.prohibited-item-card.alcohol i {
    color: #ff9800;
}

.prohibited-item-card.adult i {
    color: #9C27B0;
}

.prohibited-item-card.animals i {
    color: #4CAF50;
}

.important-note {
    display: flex;
    padding: 25px;
    background: #fff5f5;
    border-radius: 8px;
    border-left: 4px solid #ff4444;
    margin-top: 30px;
}

.important-note i {
    color: #ff4444;
    font-size: 28px;
    margin-right: 20px;
    margin-top: 5px;
    flex-shrink: 0;
}

/* Content Policy Styles */
.content-requirements,
.prohibited-content-list {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 20px;
    margin: 20px 0;
}

.requirement,
.prohibited-content-item {
    display: flex;
    padding: 20px;
    border-radius: 8px;
}

.requirement {
    background: #f0f9f0;
    border-left: 4px solid #4CAF50;
}

.prohibited-content-item {
    background: #fff5f5;
    border-left: 4px solid #ff4444;
}

.requirement i {
    color: #4CAF50;
    font-size: 24px;
    margin-right: 15px;
    margin-top: 5px;
}

.prohibited-content-item i {
    color: #ff4444;
    font-size: 24px;
    margin-right: 15px;
    margin-top: 5px;
}

/* Seller Code of Conduct */
.conduct-rules {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 20px;
    margin: 20px 0;
}

.rule {
    display: flex;
    padding: 20px;
    border-radius: 8px;
}

.rule.must {
    background: #f0f9f0;
    border-left: 4px solid #4CAF50;
}

.rule.must-not {
    background: #fff5f5;
    border-left: 4px solid #ff4444;
}

.rule i {
    font-size: 24px;
    margin-right: 15px;
    margin-top: 5px;
    flex-shrink: 0;
}

.rule.must i {
    color: #4CAF50;
}

.rule.must-not i {
    color: #ff4444;
}

/* Payment Policy Styles */
.payment-methods-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    gap: 15px;
    margin: 20px 0;
}

.payment-method {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 20px;
    background: #f8f9fa;
    border-radius: 8px;
    text-align: center;
    transition: all 0.3s;
}

.payment-method:hover {
    background: #fff5f0;
    transform: translateY(-3px);
}

.payment-method i {
    font-size: 32px;
    color: #2196F3;
    margin-bottom: 10px;
}

.payout-details {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin: 20px 0;
}

.payout-factors,
.payout-schedule {
    padding: 25px;
    background: #f8f9fa;
    border-radius: 8px;
}

.schedule {
    margin: 20px 0;
}

.schedule-item {
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
    border-bottom: 1px solid #eee;
}

.schedule-item:last-child {
    border-bottom: none;
}

/* BNPL Terms Styles */
.refund-info {
    display: flex;
    padding: 25px;
    background: #f0f9ff;
    border-radius: 8px;
    margin: 20px 0;
    border-left: 4px solid #2196F3;
}

.refund-info i {
    font-size: 32px;
    color: #2196F3;
    margin-right: 20px;
    margin-top: 5px;
    flex-shrink: 0;
}

/* SLA Styles */
.metrics-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 20px;
    margin: 20px 0;
}

.metric {
    padding: 20px;
    background: #f8f9fa;
    border-radius: 8px;
    border-top: 4px solid #9C27B0;
}

.metric-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
}

.target {
    background: #9C27B0;
    color: white;
    padding: 5px 10px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: bold;
}

.penalties-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 20px;
    margin-top: 20px;
}

.penalty {
    padding: 20px;
    background: #fff5f5;
    border-radius: 8px;
    text-align: center;
    border-top: 4px solid #ff4444;
}

.penalty i {
    font-size: 32px;
    color: #ff4444;
    margin-bottom: 15px;
    display: block;
}

/* Disclaimer Styles */
.disclaimer-box {
    display: flex;
    padding: 30px;
    background: #f0f9ff;
    border-radius: 8px;
    border-left: 4px solid #2196F3;
}

.disclaimer-box i {
    font-size: 36px;
    color: #2196F3;
    margin-right: 20px;
    margin-top: 5px;
    flex-shrink: 0;
}

.disclaimer-list {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 20px;
    margin-top: 20px;
}

.disclaimer-item {
    display: flex;
    padding: 15px;
    background: white;
    border-radius: 6px;
}

.disclaimer-item i {
    color: #ff4444;
    margin-right: 15px;
    margin-top: 5px;
    font-size: 20px;
}

/* Cookies Policy Styles */
.cookies-uses {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 20px;
    margin: 20px 0;
}

.cookie-use {
    display: flex;
    padding: 20px;
    background: #f8f9fa;
    border-radius: 8px;
}

.cookie-use i {
    font-size: 24px;
    color: #9C27B0;
    margin-right: 15px;
    margin-top: 5px;
}

.cookie-management {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 20px;
}

.management-option {
    padding: 25px;
    background: #f8f9fa;
    border-radius: 8px;
}

/* Digital Products Styles */
.digital-products-list {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 20px;
    margin: 20px 0;
}

.digital-product {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 20px;
    background: #f8f9fa;
    border-radius: 8px;
    text-align: center;
}

.digital-product i {
    font-size: 32px;
    color: #2196F3;
    margin-bottom: 15px;
}

.license-terms {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 20px;
    margin-top: 20px;
}

.license-term {
    display: flex;
    padding: 20px;
    background: #f0f9f0;
    border-radius: 8px;
    border-left: 4px solid #4CAF50;
}

.license-term i {
    color: #4CAF50;
    font-size: 24px;
    margin-right: 15px;
    margin-top: 5px;
}

/* Booking Policy Styles */
.booking-process {
    margin: 30px 0;
}

.booking-step {
    display: flex;
    align-items: center;
    margin-bottom: 30px;
    padding-bottom: 30px;
    border-bottom: 1px solid #eee;
}

.booking-step:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.cancellation-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin: 20px 0;
}

.cancellation-type {
    padding: 20px;
    background: #f8f9fa;
    border-radius: 8px;
    border-top: 4px solid #ff9800;
}

.no-show-policy {
    display: flex;
    padding: 25px;
    background: #fff5f5;
    border-radius: 8px;
    margin-top: 20px;
    border-left: 4px solid #ff4444;
}

.no-show-policy i {
    color: #ff4444;
    font-size: 32px;
    margin-right: 20px;
    margin-top: 5px;
    flex-shrink: 0;
}

/* Dispute Resolution Styles */
.complaint-process {
    margin: 30px 0;
}

.evidence-types {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 20px;
    margin: 20px 0;
}

.evidence-type {
    display: flex;
    padding: 20px;
    background: #f8f9fa;
    border-radius: 8px;
}

.evidence-type i {
    font-size: 24px;
    color: #2196F3;
    margin-right: 15px;
    margin-top: 5px;
}

.final-decision {
    display: flex;
    padding: 25px;
    background: #f0f9ff;
    border-radius: 8px;
    margin-top: 20px;
    border-left: 4px solid #2196F3;
}

.final-decision i {
    color: #2196F3;
    font-size: 32px;
    margin-right: 20px;
    margin-top: 5px;
    flex-shrink: 0;
}

/* Community Guidelines Styles */
.guidelines-list {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 20px;
    margin: 20px 0;
}

.guideline {
    display: flex;
    padding: 20px;
    background: #f0f9f0;
    border-radius: 8px;
    border-left: 4px solid #4CAF50;
}

.guideline i {
    color: #4CAF50;
    font-size: 24px;
    margin-right: 15px;
    margin-top: 5px;
}

.consequences {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 20px;
    margin-top: 20px;
}

.consequence {
    padding: 20px;
    background: #f8f9fa;
    border-radius: 8px;
    border-top: 4px solid;
}

.consequence:nth-child(1) {
    border-top-color: #4CAF50;
}

.consequence:nth-child(2) {
    border-top-color: #FFC107;
}

.consequence:nth-child(3) {
    border-top-color: #ff9800;
}

.consequence:nth-child(4) {
    border-top-color: #ff4444;
}

.severity {
    padding: 5px 10px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: bold;
    color: white;
    display: inline-block;
    margin-bottom: 10px;
}

.consequence:nth-child(1) .severity {
    background: #4CAF50;
}

.consequence:nth-child(2) .severity {
    background: #FFC107;
}

.consequence:nth-child(3) .severity {
    background: #ff9800;
}

.consequence:nth-child(4) .severity {
    background: #ff4444;
}

/* Acknowledgment & Contact */
.policy-acknowledgment {
    margin-top: 50px;
    padding-top: 40px;
    border-top: 2px solid #f57224;
}

.acknowledgment-box {
    display: flex;
    padding: 30px;
    background: #f0f9ff;
    border-radius: 8px;
    margin-bottom: 30px;
    border-left: 4px solid #2196F3;
}

.acknowledgment-box i {
    font-size: 36px;
    color: #2196F3;
    margin-right: 20px;
    margin-top: 5px;
    flex-shrink: 0;
}

.contact-support {
    padding: 30px;
    background: #f8f9fa;
    border-radius: 8px;
}

.contact-details {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-top: 20px;
}

.contact-method {
    display: flex;
    padding: 20px;
    background: white;
    border-radius: 8px;
}

.contact-method i {
    font-size: 24px;
    color: #f57224;
    margin-right: 15px;
    margin-top: 5px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .policy-header h1 {
        font-size: 28px;
    }
    
    .section-header h2 {
        font-size: 24px;
    }
    
    .toc-grid {
        grid-template-columns: 1fr;
    }
    
    .policy-content {
        padding: 20px;
    }
    
    .use-cases,
    .responsibility-list,
    .role-explanation,
    .obligations-grid,
    .prohibited-list,
    .content-requirements,
    .prohibited-content-list,
    .conduct-rules,
    .guidelines-list {
        grid-template-columns: 1fr;
    }
    
    .eligibility-box,
    .warning-box,
    .refund-info,
    .no-show-policy,
    .final-decision,
    .acknowledgment-box {
        flex-direction: column;
    }
    
    .eligibility-box i,
    .warning-box i,
    .refund-info i,
    .no-show-policy i,
    .final-decision i,
    .acknowledgment-box i {
        margin-right: 0;
        margin-bottom: 15px;
    }
    
    .process-step,
    .attempt,
    .booking-step {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .step-number,
    .attempt-number {
        margin-bottom: 15px;
    }
}

@media (max-width: 576px) {
    .policy-page {
        padding: 20px 0;
    }
    
    .policy-header h1 {
        font-size: 24px;
    }
    
    .policy-subsection h3 {
        font-size: 20px;
    }
    
    .security-features,
    .rights-grid,
    .metrics-grid,
    .penalties-grid,
    .digital-products-list,
    .license-terms,
    .cancellation-info,
    .evidence-types,
    .consequences {
        grid-template-columns: 1fr;
    }
    
    .payment-methods-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .delay-reasons {
        flex-direction: column;
    }
    
    .delay-reason {
        width: 100%;
    }
}


/* Seller Agreement Page */
.seller-agreement-page {
    padding: 40px 0;
}

.agreement-header {
    background: linear-gradient(135deg, #e0651a 0%, #f59e0b 100%);
    color: white;
    padding: 40px;
    border-radius: 8px;
    margin-bottom: 30px;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.header-content h1 {
    font-size: 2.2rem;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.platform-name {
    font-size: 1.1rem;
    opacity: 0.9;
    margin-bottom: 5px;
}

.last-updated {
    font-size: 0.9rem;
    opacity: 0.8;
}

.header-actions {
    display: flex;
    gap: 15px;
}

.btn-print, .btn-download {
    background-color: rgba(255, 255, 255, 0.2);
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.3);
    padding: 10px 20px;
    border-radius: 4px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: background-color 0.3s;
}

.btn-print:hover, .btn-download:hover {
    background-color: rgba(255, 255, 255, 0.3);
}

/* Agreement Summary */
.agreement-summary {
    margin-bottom: 40px;
}

.summary-card {
    background-color: white;
    border-radius: 8px;
    padding: 30px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    border-left: 4px solid #2563eb;
}

.summary-card i {
    font-size: 2rem;
    color: #2563eb;
    margin-bottom: 20px;
}

.summary-card h3 {
    color: #1e40af;
    margin-bottom: 15px;
    font-size: 1.5rem;
}

.summary-card p {
    color: #4b5563;
    margin-bottom: 20px;
    line-height: 1.7;
}

.agreement-notice {
    background-color: #fef3c7;
    border-left: 4px solid #f59e0b;
    padding: 15px;
    border-radius: 4px;
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.agreement-notice i {
    color: #f59e0b;
    font-size: 1.2rem;
    margin: 0;
}

.agreement-notice p {
    margin: 0;
    color: #92400e;
}

/* Table of Contents */
.agreement-toc {
    background-color: white;
    border-radius: 8px;
    padding: 30px;
    margin-bottom: 40px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.agreement-toc h2 {
    color: #1e40af;
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.8rem;
}

.toc-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 15px;
}

.toc-item {
    display: flex;
    align-items: center;
    padding: 15px;
    background-color: #f9fafb;
    border-radius: 6px;
    text-decoration: none;
    color: #4b5563;
    transition: all 0.3s;
    border-left: 3px solid transparent;
}

.toc-item:hover {
    background-color: #e0f2fe;
    border-left-color: #2563eb;
    transform: translateX(5px);
}

.toc-number {
    background-color: #2563eb;
    color: white;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    font-weight: bold;
}

.toc-title {
    flex: 1;
    font-weight: 500;
}

.toc-item i {
    color: #9ca3af;
}

/* Agreement Content */
.agreement-content {
    background-color: white;
    border-radius: 8px;
    padding: 40px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.agreement-section {
    margin-bottom: 60px;
    scroll-margin-top: 20px;
}

.section-header {
    display: flex;
    align-items: center;
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 2px solid #e5e7eb;
}

.section-number {
    background-color: #1e40af;
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    font-weight: bold;
    margin-right: 15px;
}

.section-header h2 {
    color: #1e40af;
    font-size: 1.8rem;
}

.section-intro {
    color: #4b5563;
    font-size: 1.1rem;
    margin-bottom: 25px;
    line-height: 1.7;
}

/* Section 1: Definitions */
.definition-list {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 20px;
}

.definition-item {
    background-color: #f8fafc;
    border-radius: 8px;
    padding: 20px;
    border: 1px solid #e2e8f0;
}

.term {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
}

.term i {
    font-size: 1.5rem;
    color: #2563eb;
}

.term h3 {
    color: #1e40af;
    font-size: 1.2rem;
}

.definition-item p {
    color: #4b5563;
    line-height: 1.6;
}

/* Section 2: Eligibility */
.eligibility-requirements {
    margin-bottom: 25px;
}

.requirement {
    display: flex;
    align-items: flex-start;
    margin-bottom: 20px;
    padding: 20px;
    background-color: #f8fafc;
    border-radius: 8px;
    border-left: 4px solid #10b981;
}

.requirement-number {
    background-color: #10b981;
    color: white;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    margin-right: 20px;
    flex-shrink: 0;
}

.requirement-content h3 {
    color: #065f46;
    margin-bottom: 8px;
    font-size: 1.2rem;
}

.requirement-content p {
    color: #4b5563;
    line-height: 1.6;
}

.compliance-notice {
    background-color: #dbeafe;
    border-radius: 8px;
    padding: 20px;
    display: flex;
    align-items: center;
    gap: 20px;
}

.compliance-notice i {
    color: #2563eb;
    font-size: 2rem;
}

.compliance-notice p {
    color: #1e40af;
    margin: 0;
    font-weight: 500;
}

/* Section 3: Seller Account & KYC */
.kyc-requirements {
    margin-bottom: 30px;
}

.kyc-requirements h3 {
    color: #1e40af;
    margin-bottom: 20px;
    font-size: 1.4rem;
}

.requirements-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 20px;
}

.kyc-item {
    background-color: #f0f9ff;
    border-radius: 8px;
    padding: 20px;
    text-align: center;
    border: 1px solid #bae6fd;
}

.kyc-item i {
    font-size: 2rem;
    color: #0284c7;
    margin-bottom: 15px;
}

.kyc-item h4 {
    color: #0369a1;
    margin-bottom: 10px;
    font-size: 1.1rem;
}

.kyc-item p {
    color: #4b5563;
    font-size: 0.95rem;
    line-height: 1.5;
}

.document-requests {
    margin-bottom: 30px;
}

.document-requests h3 {
    color: #1e40af;
    margin-bottom: 15px;
    font-size: 1.4rem;
}

.document-requests > p {
    color: #4b5563;
    margin-bottom: 20px;
}

.document-list {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 15px;
}

.document-type {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding: 15px;
    background-color: #f8fafc;
    border-radius: 6px;
}

.document-type i {
    color: #2563eb;
    font-size: 1.5rem;
    margin-top: 5px;
}

.document-type h4 {
    color: #1e40af;
    margin-bottom: 5px;
    font-size: 1.1rem;
}

.document-type p {
    color: #6b7280;
    font-size: 0.95rem;
    line-height: 1.5;
}

.warning-box {
    background-color: #fef2f2;
    border-left: 4px solid #dc2626;
    padding: 20px;
    border-radius: 6px;
    display: flex;
    align-items: flex-start;
    gap: 20px;
}

.warning-box i {
    color: #dc2626;
    font-size: 1.5rem;
    margin-top: 5px;
}

.warning-box h4 {
    color: #991b1b;
    margin-bottom: 10px;
    font-size: 1.2rem;
}

.warning-box p {
    color: #7f1d1d;
    margin-bottom: 10px;
}

.warning-box ul {
    color: #7f1d1d;
    padding-left: 20px;
}

.warning-box li {
    margin-bottom: 5px;
}

/* Section 4: Seller Responsibilities */
.responsibility-category {
    margin-bottom: 30px;
}

.responsibility-category h3 {
    color: #1e40af;
    margin-bottom: 20px;
    font-size: 1.4rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

.responsibility-items {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 15px;
}

.responsibility-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding: 15px;
    background-color: #f0f9ff;
    border-radius: 6px;
}

.responsibility-item i {
    color: #059669;
    margin-top: 3px;
}

.responsibility-item p {
    color: #4b5563;
    line-height: 1.6;
}

.compliance-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 20px;
    margin-top: 20px;
}

.compliance-item {
    background-color: #f8fafc;
    border-radius: 8px;
    padding: 20px;
    text-align: center;
    border: 1px solid #e2e8f0;
}

.compliance-item i {
    font-size: 2rem;
    color: #2563eb;
    margin-bottom: 15px;
}

.compliance-item h4 {
    color: #1e40af;
    margin-bottom: 10px;
    font-size: 1.1rem;
}

.compliance-item p {
    color: #6b7280;
    font-size: 0.95rem;
}

/* Section 5: Prohibited Items */
.prohibited-intro {
    background-color: #fef2f2;
    border-radius: 8px;
    padding: 20px;
    margin-bottom: 30px;
    display: flex;
    align-items: flex-start;
    gap: 20px;
}

.prohibited-intro i {
    color: #dc2626;
    font-size: 2rem;
    margin-top: 5px;
}

.prohibited-intro p {
    color: #7f1d1d;
    margin: 0;
    line-height: 1.7;
}

.prohibited-categories {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 20px;
    margin-bottom: 30px;
}

.prohibited-category {
    padding: 25px;
    border-radius: 8px;
    color: white;
}

.prohibited-category.illegal {
    background: linear-gradient(135deg, #991b1b 0%, #dc2626 100%);
}

.prohibited-category.counterfeit {
    background: linear-gradient(135deg, #92400e 0%, #f59e0b 100%);
}

.prohibited-category.restricted {
    background: linear-gradient(135deg, #065f46 0%, #10b981 100%);
}

.prohibited-category.dangerous {
    background: linear-gradient(135deg, #3730a3 0%, #7c3aed 100%);
}

.prohibited-category h3 {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
    font-size: 1.3rem;
}

.prohibited-category ul {
    padding-left: 20px;
}

.prohibited-category li {
    margin-bottom: 8px;
    line-height: 1.5;
}

.platform-action {
    background-color: #fef3c7;
    border-left: 4px solid #f59e0b;
    padding: 20px;
    border-radius: 6px;
    display: flex;
    align-items: flex-start;
    gap: 20px;
}

.platform-action i {
    color: #f59e0b;
    font-size: 1.5rem;
    margin-top: 5px;
}

.platform-action h4 {
    color: #92400e;
    margin-bottom: 10px;
    font-size: 1.2rem;
}

.platform-action p {
    color: #92400e;
    margin-bottom: 10px;
}

.platform-action ul {
    color: #92400e;
    padding-left: 20px;
}

.platform-action li {
    margin-bottom: 5px;
}

/* Section 6: Pricing & Taxes */
.seller-responsibility {
    margin-bottom: 30px;
}

.seller-responsibility h3 {
    color: #1e40af;
    margin-bottom: 20px;
    font-size: 1.4rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

.seller-responsibility > p {
    color: #4b5563;
    margin-bottom: 20px;
}

.responsibility-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 20px;
}

.price-item {
    background-color: #f8fafc;
    border-radius: 8px;
    padding: 20px;
    display: flex;
    align-items: flex-start;
    gap: 15px;
    border: 1px solid #e2e8f0;
}

.price-icon {
    background-color: #dbeafe;
    width: 50px;
    height: 50px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.price-icon i {
    color: #2563eb;
    font-size: 1.5rem;
}

.price-content h4 {
    color: #1e40af;
    margin-bottom: 8px;
    font-size: 1.1rem;
}

.price-content p {
    color: #6b7280;
    font-size: 0.95rem;
    line-height: 1.5;
}

.tax-documentation {
    margin-bottom: 30px;
}

.tax-documentation h3 {
    color: #1e40af;
    margin-bottom: 20px;
    font-size: 1.4rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

.tax-info {
    background-color: #f0f9ff;
    border-radius: 8px;
    padding: 20px;
    display: flex;
    align-items: flex-start;
    gap: 20px;
}

.tax-info i {
    color: #0284c7;
    font-size: 1.5rem;
    margin-top: 5px;
}

.tax-info p {
    color: #0369a1;
    margin-bottom: 10px;
    font-weight: 500;
}

.tax-info ul {
    color: #0369a1;
    padding-left: 20px;
}

.tax-info li {
    margin-bottom: 5px;
}

.pricing-guidelines {
    margin-bottom: 30px;
}

.pricing-guidelines h3 {
    color: #1e40af;
    margin-bottom: 20px;
    font-size: 1.4rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

.guidelines {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 15px;
}

.guideline {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px;
    background-color: #f0fdf4;
    border-radius: 6px;
}

.guideline i {
    color: #059669;
}

.guideline p {
    color: #065f46;
    margin: 0;
    font-weight: 500;
}

/* Section 7: Payments & Commissions */
.payment-section {
    margin-bottom: 30px;
}

.payment-section h3 {
    color: #1e40af;
    margin-bottom: 20px;
    font-size: 1.4rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

.payment-info {
    background-color: #f8fafc;
    border-radius: 8px;
    padding: 20px;
    display: flex;
    align-items: flex-start;
    gap: 20px;
}

.payment-info i {
    color: #059669;
    font-size: 2rem;
    margin-top: 5px;
}

.payment-info p {
    color: #4b5563;
    margin-bottom: 10px;
    line-height: 1.6;
}

.payment-info p:last-child {
    margin-bottom: 0;
}

.commission-section {
    margin-bottom: 30px;
}

.commission-section h3 {
    color: #1e40af;
    margin-bottom: 20px;
    font-size: 1.4rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

.commission-structure {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 20px;
}

.commission-card {
    background-color: white;
    border-radius: 8px;
    padding: 25px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    border: 1px solid #e5e7eb;
}

.commission-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 1px solid #e5e7eb;
}

.commission-header h4 {
    color: #1e40af;
    font-size: 1.3rem;
}

.commission-rate {
    background-color: #dbeafe;
    color: #1e40af;
    padding: 5px 15px;
    border-radius: 20px;
    font-weight: bold;
    font-size: 1.2rem;
}

.commission-header i {
    color: #2563eb;
    font-size: 2rem;
}

.commission-card p {
    color: #4b5563;
    margin-bottom: 15px;
    font-weight: 500;
}

.commission-card ul {
    list-style: none;
}

.commission-card li {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
    color: #6b7280;
}

.commission-card li i {
    color: #2563eb;
}

.payout-section {
    margin-bottom: 30px;
}

.payout-section h3 {
    color: #1e40af;
    margin-bottom: 20px;
    font-size: 1.4rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

.payout-schedule h4 {
    color: #1e40af;
    margin-bottom: 20px;
    font-size: 1.2rem;
}

.schedule-options {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 20px;
    margin-bottom: 30px;
}

.schedule-option {
    background-color: #f8fafc;
    border-radius: 8px;
    padding: 20px;
    border: 1px solid #e2e8f0;
}

.option-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
}

.option-header i {
    color: #2563eb;
    font-size: 1.5rem;
}

.option-header h5 {
    color: #1e40af;
    font-size: 1.1rem;
}

.schedule-option p {
    color: #6b7280;
    font-size: 0.95rem;
    line-height: 1.5;
}

.payout-process h4 {
    color: #1e40af;
    margin-bottom: 20px;
    font-size: 1.2rem;
}

.process-steps {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.process-step {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 20px;
    background-color: #f0f9ff;
    border-radius: 8px;
}

.step-number {
    background-color: #0284c7;
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.step-content h5 {
    color: #0369a1;
    margin-bottom: 8px;
    font-size: 1.1rem;
}

.step-content p {
    color: #4b5563;
    font-size: 0.95rem;
}

.payout-delays {
    margin-top: 30px;
}

.payout-delays h4 {
    color: #dc2626;
    margin-bottom: 15px;
    font-size: 1.2rem;
}

.payout-delays > p {
    color: #4b5563;
    margin-bottom: 15px;
}

.delay-reasons {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 15px;
}

.delay-reason {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 15px;
    background-color: #fef2f2;
    border-radius: 6px;
}

.delay-reason i {
    color: #dc2626;
}

.delay-reason span {
    color: #991b1b;
    font-weight: 500;
}

.refund-section {
    margin-bottom: 30px;
}

.refund-section h3 {
    color: #1e40af;
    margin-bottom: 20px;
    font-size: 1.4rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

.refund-process {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 20px;
}

.refund-scenario {
    background-color: #f8fafc;
    border-radius: 8px;
    padding: 25px;
    border: 1px solid #e2e8f0;
}

.refund-scenario h4 {
    color: #1e40af;
    margin-bottom: 15px;
    font-size: 1.2rem;
}

.refund-scenario p {
    color: #4b5563;
    margin-bottom: 15px;
    font-weight: 500;
}

.refund-scenario ol {
    color: #4b5563;
    padding-left: 20px;
}

.refund-scenario li {
    margin-bottom: 8px;
    line-height: 1.5;
}

.protection-tips {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    gap: 15px;
}

.tip {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 15px;
    background-color: #f0fdf4;
    border-radius: 6px;
}

.tip i {
    color: #059669;
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.tip span {
    color: #065f46;
    font-weight: 500;
    font-size: 0.9rem;
}

/* Section 8: Customer Disputes */
.dispute-process {
    margin-bottom: 30px;
}

.dispute-process h3 {
    color: #1e40af;
    margin-bottom: 25px;
    font-size: 1.4rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

.dispute-steps {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 20px;
}

.dispute-step {
    background-color: #f8fafc;
    border-radius: 8px;
    padding: 25px;
    border: 1px solid #e2e8f0;
}

.step-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
}

.step-icon {
    background-color: #dbeafe;
    width: 50px;
    height: 50px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.step-icon i {
    color: #2563eb;
    font-size: 1.5rem;
}

.step-header h4 {
    color: #1e40af;
    font-size: 1.2rem;
}

.dispute-step p {
    color: #4b5563;
    line-height: 1.6;
}

.platform-intervention {
    margin-bottom: 30px;
}

.platform-intervention h3 {
    color: #1e40af;
    margin-bottom: 20px;
    font-size: 1.4rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

.intervention-info {
    background-color: #fef3c7;
    border-radius: 8px;
    padding: 20px;
    display: flex;
    align-items: flex-start;
    gap: 20px;
}

.intervention-info i {
    color: #f59e0b;
    font-size: 1.5rem;
    margin-top: 5px;
}

.intervention-info p {
    color: #92400e;
    margin-bottom: 10px;
}

.intervention-info ul {
    color: #92400e;
    padding-left: 20px;
    margin-bottom: 15px;
}

.intervention-info li {
    margin-bottom: 5px;
}

.final-decision {
    color: #92400e !important;
    font-weight: 600;
    margin-top: 15px !important;
    padding: 10px;
    background-color: rgba(245, 158, 11, 0.1);
    border-radius: 4px;
}

.dispute-prevention {
    margin-bottom: 30px;
}

.dispute-prevention h3 {
    color: #1e40af;
    margin-bottom: 25px;
    font-size: 1.4rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

.prevention-tips {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 20px;
}

.tip {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding: 20px;
    background-color: #f0fdf4;
    border-radius: 8px;
}

.tip i {
    color: #059669;
    font-size: 1.5rem;
    margin-top: 5px;
}

.tip h4 {
    color: #065f46;
    margin-bottom: 8px;
    font-size: 1.1rem;
}

.tip p {
    color: #047857;
    font-size: 0.95rem;
    line-height: 1.5;
    margin: 0;
}

/* Section 9: Content & Intellectual Property */
.seller-obligations {
    margin-bottom: 30px;
}

.seller-obligations h3 {
    color: #1e40af;
    margin-bottom: 20px;
    font-size: 1.4rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

.seller-obligations > p {
    color: #4b5563;
    margin-bottom: 25px;
    line-height: 1.7;
}

.obligation-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.obligation {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 20px;
    background-color: #f8fafc;
    border-radius: 8px;
    border: 1px solid #e2e8f0;
}

.obligation-icon {
    background-color: #dbeafe;
    width: 50px;
    height: 50px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.obligation-icon i {
    color: #2563eb;
    font-size: 1.5rem;
}

.obligation-content h4 {
    color: #1e40af;
    margin-bottom: 10px;
    font-size: 1.2rem;
}

.obligation-content p {
    color: #4b5563;
    line-height: 1.6;
}

.platform-license {
    margin-bottom: 30px;
}

.platform-license h3 {
    color: #1e40af;
    margin-bottom: 20px;
    font-size: 1.4rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

.license-terms {
    background-color: #f0f9ff;
    border-radius: 8px;
    padding: 25px;
    display: flex;
    align-items: flex-start;
    gap: 20px;
}

.license-terms i {
    color: #0284c7;
    font-size: 2rem;
    margin-top: 5px;
}

.license-terms p {
    color: #0369a1;
    margin-bottom: 15px;
    font-weight: 500;
}

.license-terms ul {
    color: #0369a1;
    padding-left: 20px;
    margin-bottom: 15px;
}

.license-terms li {
    margin-bottom: 10px;
    line-height: 1.5;
}

.license-note {
    color: #0369a1 !important;
    font-style: italic;
    padding: 10px;
    background-color: rgba(2, 132, 199, 0.1);
    border-radius: 4px;
    margin-top: 15px !important;
}

.ip-protection {
    margin-bottom: 30px;
}

.ip-protection h3 {
    color: #1e40af;
    margin-bottom: 25px;
    font-size: 1.4rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

.protection-measures {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 20px;
}

.measure {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding: 20px;
    background-color: #f8fafc;
    border-radius: 8px;
    border: 1px solid #e2e8f0;
}

.measure i {
    color: #2563eb;
    font-size: 1.5rem;
    margin-top: 5px;
}

.measure h4 {
    color: #1e40af;
    margin-bottom: 8px;
    font-size: 1.1rem;
}

.measure p {
    color: #6b7280;
    font-size: 0.95rem;
    line-height: 1.5;
    margin: 0;
}

/* Section 10: Fraud & Misconduct */
.fraud-definition {
    margin-bottom: 30px;
}

.fraud-definition h3 {
    color: #1e40af;
    margin-bottom: 20px;
    font-size: 1.4rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

.fraud-definition > p {
    color: #4b5563;
    margin-bottom: 25px;
    line-height: 1.7;
}

.fraud-types {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 20px;
}

.fraud-type {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 20px;
    background-color: #fef2f2;
    border-radius: 8px;
    border-left: 4px solid #dc2626;
}

.fraud-icon {
    background-color: rgba(220, 38, 38, 0.1);
    width: 50px;
    height: 50px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.fraud-icon i {
    color: #dc2626;
    font-size: 1.5rem;
}

.fraud-content h4 {
    color: #991b1b;
    margin-bottom: 10px;
    font-size: 1.2rem;
}

.fraud-content p {
    color: #7f1d1d;
    line-height: 1.6;
}

.platform-actions {
    margin-bottom: 30px;
}

.platform-actions h3 {
    color: #1e40af;
    margin-bottom: 20px;
    font-size: 1.4rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

.actions-list {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 20px;
}

.action {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 20px;
    background-color: #fef3c7;
    border-radius: 8px;
    border-left: 4px solid #f59e0b;
}

.action-icon {
    background-color: rgba(245, 158, 11, 0.1);
    width: 50px;
    height: 50px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.action-icon i {
    color: #f59e0b;
    font-size: 1.5rem;
}

.action-content h4 {
    color: #92400e;
    margin-bottom: 10px;
    font-size: 1.2rem;
}

.action-content p {
    color: #92400e;
    line-height: 1.6;
}

.fraud-prevention {
    margin-bottom: 30px;
}

.fraud-prevention h3 {
    color: #1e40af;
    margin-bottom: 25px;
    font-size: 1.4rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

.prevention-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 20px;
}

.prevention-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 25px;
    background-color: #f0f9ff;
    border-radius: 8px;
    border: 1px solid #bae6fd;
}

.prevention-item i {
    color: #0284c7;
    font-size: 2rem;
    margin-bottom: 15px;
}

.prevention-item h4 {
    color: #0369a1;
    margin-bottom: 10px;
    font-size: 1.1rem;
}

.prevention-item p {
    color: #4b5563;
    font-size: 0.95rem;
    line-height: 1.5;
    margin: 0;
}

/* Section 11: Termination */
.termination-by-platform {
    margin-bottom: 30px;
}

.termination-by-platform h3 {
    color: #1e40af;
    margin-bottom: 20px;
    font-size: 1.4rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

.termination-by-platform > p {
    color: #4b5563;
    margin-bottom: 25px;
    line-height: 1.7;
}

.termination-reasons {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 20px;
}

.reason {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 20px;
    background-color: #fef2f2;
    border-radius: 8px;
    border-left: 4px solid #dc2626;
}

.reason-icon {
    background-color: rgba(220, 38, 38, 0.1);
    width: 50px;
    height: 50px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.reason-icon i {
    color: #dc2626;
    font-size: 1.5rem;
}

.reason-content h4 {
    color: #991b1b;
    margin-bottom: 10px;
    font-size: 1.2rem;
}

.reason-content p {
    color: #7f1d1d;
    line-height: 1.6;
}

.termination-by-seller {
    margin-bottom: 30px;
}

.termination-by-seller h3 {
    color: #1e40af;
    margin-bottom: 20px;
    font-size: 1.4rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

.seller-termination {
    background-color: #f0f9ff;
    border-radius: 8px;
    padding: 25px;
    display: flex;
    align-items: flex-start;
    gap: 20px;
}

.seller-termination i {
    color: #0284c7;
    font-size: 2rem;
    margin-top: 5px;
}

.seller-termination h4 {
    color: #0369a1;
    margin-bottom: 15px;
    font-size: 1.3rem;
}

.seller-termination p {
    color: #0369a1;
    margin-bottom: 20px;
    line-height: 1.6;
}

.closure-process {
    background-color: rgba(2, 132, 199, 0.1);
    border-radius: 6px;
    padding: 20px;
    margin-top: 20px;
}

.closure-process h5 {
    color: #0369a1;
    margin-bottom: 15px;
    font-size: 1.1rem;
}

.closure-process ol {
    color: #0369a1;
    padding-left: 20px;
}

.closure-process li {
    margin-bottom: 10px;
    line-height: 1.5;
}

.termination-consequences {
    margin-bottom: 30px;
}

.termination-consequences h3 {
    color: #1e40af;
    margin-bottom: 25px;
    font-size: 1.4rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

.consequences-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 20px;
}

.consequence {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 25px;
    background-color: #fef2f2;
    border-radius: 8px;
    border: 1px solid #fecaca;
}

.consequence i {
    color: #dc2626;
    font-size: 2rem;
    margin-bottom: 15px;
}

.consequence h4 {
    color: #991b1b;
    margin-bottom: 10px;
    font-size: 1.1rem;
}

.consequence p {
    color: #7f1d1d;
    font-size: 0.95rem;
    line-height: 1.5;
    margin: 0;
}

/* Section 12: Liability Limitations */
.liability-disclaimer {
    background-color: #fef3c7;
    border-radius: 8px;
    padding: 25px;
    margin-bottom: 30px;
    border-left: 4px solid #f59e0b;
}

.disclaimer-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.disclaimer-header i {
    color: #f59e0b;
    font-size: 1.5rem;
}

.disclaimer-header h3 {
    color: #92400e;
    font-size: 1.4rem;
}

.disclaimer-content p {
    color: #92400e;
    margin-bottom: 15px;
    line-height: 1.7;
}

.disclaimer-content p:last-child {
    margin-bottom: 0;
}

.liability-exclusions {
    margin-bottom: 30px;
}

.liability-exclusions h3 {
    color: #1e40af;
    margin-bottom: 20px;
    font-size: 1.4rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

.exclusion-list {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 20px;
}

.exclusion {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 20px;
    background-color: #f8fafc;
    border-radius: 8px;
    border: 1px solid #e2e8f0;
}

.exclusion-icon {
    background-color: #dbeafe;
    width: 50px;
    height: 50px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.exclusion-icon i {
    color: #2563eb;
    font-size: 1.5rem;
}

.exclusion-content h4 {
    color: #1e40af;
    margin-bottom: 10px;
    font-size: 1.2rem;
}

.exclusion-content p {
    color: #4b5563;
    line-height: 1.6;
}

.seller-independence {
    margin-bottom: 30px;
}

.seller-independence h3 {
    color: #1e40af;
    margin-bottom: 20px;
    font-size: 1.4rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

.independence-notice {
    background-color: #f0fdf4;
    border-radius: 8px;
    padding: 25px;
    display: flex;
    align-items: flex-start;
    gap: 20px;
    border-left: 4px solid #10b981;
}

.independence-notice i {
    color: #10b981;
    font-size: 2rem;
    margin-top: 5px;
}

.independence-notice p {
    color: #065f46;
    margin-bottom: 15px;
    font-weight: 600;
    font-size: 1.1rem;
}

.independence-notice ul {
    color: #065f46;
    padding-left: 20px;
}

.independence-notice li {
    margin-bottom: 10px;
    line-height: 1.5;
}

/* Section 13: Data Protection */
.platform-practices {
    margin-bottom: 30px;
}

.platform-practices h3 {
    color: #1e40af;
    margin-bottom: 25px;
    font-size: 1.4rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

.practices-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 20px;
}

.practice {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 25px;
    background-color: #f0f9ff;
    border-radius: 8px;
    border: 1px solid #bae6fd;
}

.practice i {
    color: #0284c7;
    font-size: 2rem;
    margin-bottom: 15px;
}

.practice h4 {
    color: #0369a1;
    margin-bottom: 10px;
    font-size: 1.1rem;
}

.practice p {
    color: #4b5563;
    font-size: 0.95rem;
    line-height: 1.5;
    margin: 0;
}

.seller-responsibilities {
    margin-bottom: 30px;
}

.seller-responsibilities h3 {
    color: #1e40af;
    margin-bottom: 20px;
    font-size: 1.4rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

.seller-duties {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.duty {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 20px;
    background-color: #f8fafc;
    border-radius: 8px;
    border: 1px solid #e2e8f0;
}

.duty-icon {
    background-color: #dbeafe;
    width: 50px;
    height: 50px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.duty-icon i {
    color: #2563eb;
    font-size: 1.5rem;
}

.duty-content h4 {
    color: #1e40af;
    margin-bottom: 10px;
    font-size: 1.2rem;
}

.duty-content p {
    color: #4b5563;
    line-height: 1.6;
}

.data-restrictions {
    margin-bottom: 30px;
}

.data-restrictions h3 {
    color: #1e40af;
    margin-bottom: 20px;
    font-size: 1.4rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

.data-restrictions > p {
    color: #4b5563;
    margin-bottom: 25px;
    font-weight: 500;
}

.restriction-list {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 20px;
}

.restriction {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 20px;
    background-color: #fef2f2;
    border-radius: 8px;
    border-left: 4px solid #dc2626;
}

.restriction i {
    color: #dc2626;
    font-size: 1.5rem;
    margin-top: 5px;
}

.restriction h4 {
    color: #991b1b;
    margin-bottom: 8px;
    font-size: 1.2rem;
}

.restriction p {
    color: #7f1d1d;
    line-height: 1.6;
    margin: 0;
}

.data-breach {
    margin-bottom: 30px;
}

.data-breach h3 {
    color: #1e40af;
    margin-bottom: 20px;
    font-size: 1.4rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

.breach-notice {
    background-color: #fef3c7;
    border-radius: 8px;
    padding: 25px;
    display: flex;
    align-items: flex-start;
    gap: 20px;
}

.breach-notice i {
    color: #f59e0b;
    font-size: 2rem;
    margin-top: 5px;
}

.breach-notice p {
    color: #92400e;
    margin-bottom: 15px;
    font-weight: 500;
}

.breach-notice ol {
    color: #92400e;
    padding-left: 20px;
}

.breach-notice li {
    margin-bottom: 10px;
    line-height: 1.5;
}

/* Section 14: Governing Law */
.governing-law-content {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 20px;
    margin-bottom: 30px;
}

.law-card {
    background-color: #f8fafc;
    border-radius: 8px;
    padding: 25px;
    border: 1px solid #e2e8f0;
    display: flex;
    align-items: flex-start;
    gap: 20px;
}

.law-icon {
    background-color: #dbeafe;
    width: 50px;
    height: 50px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.law-icon i {
    color: #2563eb;
    font-size: 1.5rem;
}

.law-content h3 {
    color: #1e40af;
    margin-bottom: 15px;
    font-size: 1.3rem;
}

.law-content p {
    color: #4b5563;
    line-height: 1.6;
}

.international-sellers {
    margin-bottom: 30px;
}

.international-sellers h3 {
    color: #1e40af;
    margin-bottom: 20px;
    font-size: 1.4rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

.international-notice {
    background-color: #f0f9ff;
    border-radius: 8px;
    padding: 25px;
    display: flex;
    align-items: flex-start;
    gap: 20px;
}

.international-notice i {
    color: #0284c7;
    font-size: 2rem;
    margin-top: 5px;
}

.international-notice p {
    color: #0369a1;
    margin-bottom: 15px;
    font-weight: 500;
}

.international-notice ul {
    color: #0369a1;
    padding-left: 20px;
}

.international-notice li {
    margin-bottom: 10px;
    line-height: 1.5;
}

/* Section 15: Contact Information */
.contact-section {
    margin-bottom: 30px;
}

.contact-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 25px;
}

.contact-header i {
    color: #2563eb;
    font-size: 2rem;
}

.contact-header h3 {
    color: #1e40af;
    font-size: 1.8rem;
}

.contact-details {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 20px;
}

.contact-method {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 20px;
    background-color: #f8fafc;
    border-radius: 8px;
    border: 1px solid #e2e8f0;
}

.contact-icon {
    background-color: #dbeafe;
    width: 50px;
    height: 50px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-icon i {
    color: #2563eb;
    font-size: 1.5rem;
}

.contact-info h4 {
    color: #1e40af;
    margin-bottom: 10px;
    font-size: 1.2rem;
}

.contact-info p {
    color: #4b5563;
    margin-bottom: 5px;
    line-height: 1.5;
}

.contact-info p strong {
    color: #1e40af;
}

.response-time {
    margin-bottom: 30px;
}

.response-time h3 {
    color: #1e40af;
    margin-bottom: 25px;
    font-size: 1.4rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

.response-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 20px;
}

.response-category {
    background-color: #f0fdf4;
    border-radius: 8px;
    padding: 25px;
    text-align: center;
    border: 1px solid #bbf7d0;
}

.response-category h4 {
    color: #065f46;
    margin-bottom: 15px;
    font-size: 1.2rem;
}

.response-time {
    background-color: #10b981;
    color: white;
    display: inline-block;
    padding: 8px 15px;
    border-radius: 20px;
    font-weight: bold;
    font-size: 1.1rem;
    margin-bottom: 10px;
}

.response-category p {
    color: #047857;
    font-size: 0.95rem;
    margin: 0;
    line-height: 1.5;
}

/* Agreement Acceptance */
.agreement-acceptance {
    margin-top: 40px;
    padding-top: 30px;
    border-top: 2px solid #e5e7eb;
}

.acceptance-box {
    background-color: #f0fdf4;
    border-radius: 8px;
    padding: 30px;
    margin-bottom: 40px;
    border: 2px solid #10b981;
}

.acceptance-box h3 {
    color: #065f46;
    margin-bottom: 20px;
    font-size: 1.6rem;
    display: flex;
    align-items: center;
    gap: 15px;
}

.acceptance-content p {
    color: #065f46;
    margin-bottom: 25px;
    line-height: 1.7;
    font-size: 1.1rem;
}

.acceptance-actions {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 15px;
    margin-bottom: 25px;
}

.acceptance-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 15px;
    background-color: rgba(16, 185, 129, 0.1);
    border-radius: 6px;
}

.acceptance-item i {
    color: #10b981;
}

.acceptance-item span {
    color: #065f46;
    font-weight: 500;
}

.version-info {
    background-color: rgba(16, 185, 129, 0.2);
    border-radius: 6px;
    padding: 20px;
}

.version-info p {
    color: #065f46;
    margin-bottom: 10px;
}

.version-info p:last-child {
    margin-bottom: 0;
}

.version-info strong {
    color: #065f46;
}

.next-steps {
    background: linear-gradient(135deg, #1e3a8a 0%, #2563eb 100%);
    border-radius: 8px;
    padding: 40px;
    color: white;
}

.next-steps h3 {
    font-size: 1.8rem;
    margin-bottom: 30px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.steps {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 20px;
}

.step {
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    padding: 25px;
    display: flex;
    align-items: flex-start;
    gap: 20px;
}

.step-number {
    background-color: white;
    color: #2563eb;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.step-content h4 {
    font-size: 1.3rem;
    margin-bottom: 10px;
}

.step-content p {
    margin-bottom: 15px;
    opacity: 0.9;
    line-height: 1.5;
}

.step-action {
    display: inline-block;
    background-color: white;
    color: #2563eb;
    padding: 10px 20px;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 600;
    transition: background-color 0.3s;
}

.step-action:hover {
    background-color: #f1f5f9;
}


