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

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

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

/* Top Banner */
.top-banner {
    background: linear-gradient(135deg, #0C213E 0%, #024459 100%);
    color: white;
    padding: 10px 0;
    text-align: center;
    font-size: 14px;
}

.top-banner i {
    margin-right: 8px;
}

/* Header */
.header {
    background: white;
    padding: 20px 0;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

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

.logo h1 {
    font-size: 28px;
    font-weight: 700;
    color: #0C213E;
    margin-bottom: 5px;
}

.logo h1 span {
    color: #0080FF;
}

.logo .tagline {
    font-size: 12px;
    color: #666;
    margin-top: -5px;
}

.header-right {
    display: flex;
    align-items: center;
    gap: 30px;
}

.contact-info {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 18px;
    font-weight: 600;
    color: #0C213E;
}

.contact-info i {
    color: #0080FF;
}

.cart-icon {
    position: relative;
    font-size: 24px;
    color: #0C213E;
    text-decoration: none;
}

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

/* Navigation */
.main-nav {
    background: #0C213E;
    padding: 0;
}

.nav-menu {
    list-style: none;
    display: flex;
    justify-content: center;
    margin: 0;
}

.nav-menu li {
    margin: 0;
}

.nav-menu a {
    display: block;
    padding: 15px 25px;
    color: white;
    text-decoration: none;
    font-weight: 500;
    transition: background 0.3s;
}

.nav-menu a:hover,
.nav-menu a.active {
    background: #0080FF;
}

.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    color: white;
    font-size: 24px;
    cursor: pointer;
    padding: 10px;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #024459 0%, #0C213E 100%);
    color: white;
    padding: 60px 0;
    text-align: center;
}

.hero h2 {
    font-size: 42px;
    margin-bottom: 15px;
    font-weight: 700;
}

.hero p {
    font-size: 20px;
    opacity: 0.9;
}

/* Products Section */
.products-section {
    padding: 60px 0;
}

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

.section-header h2 {
    font-size: 32px;
    color: #0C213E;
}

.products-controls {
    display: flex;
    align-items: center;
    gap: 20px;
}

.results-count {
    color: #666;
    font-size: 14px;
}

.sort-dropdown {
    padding: 8px 15px;
    border: 1px solid #ddd;
    border-radius: 4px;
    background: white;
    cursor: pointer;
}

/* Products Grid */
.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.product-card {
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    transition: transform 0.3s, box-shadow 0.3s;
}

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

.product-image {
    position: relative;
    overflow: hidden;
    background: #f8f8f8;
    height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
}

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

.sale-badge {
    position: absolute;
    top: 10px;
    left: 10px;
    background: #D32F2F;
    color: white;
    padding: 5px 12px;
    border-radius: 4px;
    font-weight: 600;
    font-size: 12px;
}

.product-info {
    padding: 20px;
}

.product-info h3 {
    font-size: 16px;
    margin-bottom: 15px;
    color: #0C213E;
    min-height: 48px;
    line-height: 1.5;
}

.product-price {
    margin-bottom: 15px;
}

.old-price {
    text-decoration: line-through;
    color: #999;
    margin-right: 10px;
    font-size: 14px;
}

.current-price {
    color: #0080FF;
    font-size: 22px;
    font-weight: 700;
}

.add-to-cart {
    width: 100%;
    padding: 12px;
    background: #0080FF;
    color: white;
    border: none;
    border-radius: 4px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s;
}

.add-to-cart:hover {
    background: #0066CC;
}

/* Pagination */
.pagination {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 40px;
}

.page-link {
    padding: 10px 15px;
    background: white;
    border: 1px solid #ddd;
    border-radius: 4px;
    color: #0C213E;
    text-decoration: none;
    transition: all 0.3s;
}

.page-link:hover,
.page-link.active {
    background: #0080FF;
    color: white;
    border-color: #0080FF;
}

/* Footer */
.footer {
    background: #0C213E;
    color: white;
    padding: 50px 0 20px;
    margin-top: 60px;
}

.footer-top {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-col h4 {
    font-size: 18px;
    margin-bottom: 20px;
    color: #0080FF;
}

.footer-col p {
    margin-bottom: 10px;
    font-size: 14px;
}

.footer-col i {
    margin-right: 8px;
    color: #0080FF;
}

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

.footer-col ul li {
    margin-bottom: 10px;
}

.footer-col ul li a {
    color: white;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s;
}

.footer-col ul li a:hover {
    color: #0080FF;
}

.payment-badge {
    margin-top: 20px;
}

.payment-badge img {
    background: white;
    padding: 5px;
    border-radius: 4px;
}

.guarantee-badge {
    margin-top: 15px;
    padding: 10px;
    background: rgba(0, 128, 255, 0.2);
    border-radius: 4px;
    border-left: 3px solid #0080FF;
}

.guarantee-badge i {
    font-size: 18px;
}

.partner-logos {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
}

.partner-logo {
    background: rgba(255, 255, 255, 0.1);
    padding: 10px;
    text-align: center;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 600;
}

.sale-widget {
    background: rgba(255, 255, 255, 0.1);
    padding: 15px;
    border-radius: 4px;
}

.sale-item {
    padding: 10px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

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

.sale-item p {
    font-size: 13px;
    margin-bottom: 5px;
}

.sale-price {
    color: #0080FF;
    font-weight: 700;
    font-size: 16px;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 20px;
    text-align: center;
}

.footer-links {
    margin-top: 15px;
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.footer-links a {
    color: white;
    text-decoration: none;
    font-size: 13px;
}

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

/* Responsive Design */
@media (max-width: 768px) {
    .header-content {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }

    .header-right {
        flex-direction: column;
        gap: 15px;
    }

    .nav-menu {
        flex-direction: column;
        display: none;
    }

    .nav-menu.active {
        display: flex;
    }

    .mobile-menu-toggle {
        display: block;
        margin: 0 auto;
    }

    .hero h2 {
        font-size: 28px;
    }

    .hero p {
        font-size: 16px;
    }

    .section-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }

    .products-controls {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
        width: 100%;
    }

    .sort-dropdown {
        width: 100%;
    }

    .products-grid {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
        gap: 20px;
    }

    .footer-top {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .footer-links {
        flex-direction: column;
        gap: 10px;
    }
}

@media (max-width: 480px) {
    .products-grid {
        grid-template-columns: 1fr;
    }

    .logo h1 {
        font-size: 22px;
    }

    .contact-info {
        font-size: 16px;
    }
}

/* Page Content Styles */
.page-content {
    padding: 60px 0;
    background: #f5f5f5;
}

.page-title {
    font-size: 36px;
    color: #0C213E;
    margin-bottom: 30px;
    text-align: center;
}

.content-box {
    background: white;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    margin-bottom: 30px;
}

.content-box p {
    margin-bottom: 20px;
    line-height: 1.8;
    color: #555;
}

.content-box h2 {
    color: #0C213E;
    font-size: 28px;
    margin: 30px 0 20px;
}

.content-box h3 {
    color: #0080FF;
    font-size: 20px;
    margin: 20px 0 15px;
}

/* Feature Grid (About Page) */
.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin: 30px 0;
}

.feature-item {
    background: #f8f8f8;
    padding: 30px;
    border-radius: 8px;
    transition: transform 0.3s;
}

.feature-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.feature-icon {
    font-size: 40px;
    color: #0080FF;
    margin-bottom: 15px;
}

.feature-item h3 {
    color: #0C213E;
    margin: 15px 0;
}

.feature-item p {
    color: #666;
    line-height: 1.6;
    margin: 0;
}

/* Contact Section */
.contact-section {
    background: #f8f8f8;
    padding: 30px;
    border-radius: 8px;
    margin-top: 30px;
}

.contact-section h3 {
    color: #0C213E;
    margin-bottom: 20px;
}

.contact-section p {
    margin-bottom: 15px;
    font-size: 16px;
}

.contact-section i {
    color: #0080FF;
    margin-right: 10px;
    width: 20px;
}

/* Partners Section */
.partners-section {
    margin-top: 40px;
    text-align: center;
}

.partners-section h3 {
    color: #0C213E;
    margin-bottom: 20px;
}

.partners-section p {
    color: #666;
    margin-bottom: 20px;
}

.partners-section .partner-logos {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
    gap: 15px;
}

.partners-section .partner-logo {
    background: #0C213E;
    color: white;
    padding: 15px;
    border-radius: 8px;
    font-weight: 600;
    transition: background 0.3s;
}

.partners-section .partner-logo:hover {
    background: #0080FF;
}

/* Contact Page */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 40px;
    margin-bottom: 40px;
}

.contact-card {
    background: white;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    text-align: center;
    margin-bottom: 20px;
}

.contact-icon {
    font-size: 40px;
    color: #0080FF;
    margin-bottom: 15px;
}

.contact-card h3 {
    color: #0C213E;
    margin-bottom: 10px;
}

.contact-card p {
    color: #666;
    margin-bottom: 5px;
}

.contact-form-section {
    background: white;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.contact-form-section h2 {
    color: #0C213E;
    margin-bottom: 30px;
}

.contact-form .form-group {
    margin-bottom: 25px;
}

.contact-form label {
    display: block;
    color: #0C213E;
    font-weight: 600;
    margin-bottom: 8px;
}

.contact-form .required {
    color: #D32F2F;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 14px;
    font-family: inherit;
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: #0080FF;
}

.contact-form textarea {
    resize: vertical;
}

.submit-btn {
    background: #0080FF;
    color: white;
    padding: 15px 40px;
    border: none;
    border-radius: 4px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s;
}

.submit-btn:hover {
    background: #0066CC;
}

.submit-btn i {
    margin-right: 8px;
}

/* Disclaimer Page */
.disclaimer-text {
    background: #f8f8f8;
    padding: 30px;
    border-radius: 8px;
    margin-bottom: 30px;
}

.key-points {
    margin: 40px 0;
}

.point-item {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
    padding: 20px;
    background: #f8f8f8;
    border-radius: 8px;
}

.point-icon {
    font-size: 40px;
    color: #0080FF;
    flex-shrink: 0;
}

.point-content h3 {
    color: #0C213E;
    margin-bottom: 10px;
}

.point-content p {
    color: #666;
    margin: 0;
}

.business-description {
    background: #f8f8f8;
    padding: 30px;
    border-radius: 8px;
    margin: 30px 0;
}

.affiliated-brands {
    margin: 40px 0;
}

.affiliated-brands .partner-logos {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
    gap: 15px;
}

.affiliated-brands .partner-logo {
    background: #0C213E;
    color: white;
    padding: 15px;
    border-radius: 8px;
    text-align: center;
    font-weight: 600;
}

/* Breadcrumb */
.breadcrumb {
    background: #f8f8f8;
    padding: 15px 0;
    font-size: 14px;
}

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

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

.breadcrumb span {
    color: #666;
}

/* Cart Page */
.cart-page {
    background: #f5f5f5;
}

.empty-cart {
    background: white;
    padding: 80px 40px;
    text-align: center;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.empty-cart-icon {
    font-size: 80px;
    color: #ddd;
    margin-bottom: 20px;
}

.empty-cart p {
    font-size: 20px;
    color: #666;
    margin-bottom: 30px;
}

.return-to-shop {
    display: inline-block;
    padding: 15px 40px;
    background: #0080FF;
    color: white;
    text-decoration: none;
    border-radius: 4px;
    font-weight: 600;
    transition: background 0.3s;
}

.return-to-shop:hover {
    background: #0066CC;
}

/* Cart Content */
.cart-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
}

.cart-table-wrapper {
    background: white;
    border-radius: 8px;
    overflow-x: auto;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

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

.cart-table thead {
    background: #0C213E;
    color: white;
}

.cart-table th {
    padding: 20px;
    text-align: left;
    font-weight: 600;
}

.cart-table td {
    padding: 20px;
    border-bottom: 1px solid #eee;
    vertical-align: middle;
}

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

.product-cell {
    min-width: 250px;
}

.product-info-cell h4 {
    color: #0C213E;
    margin: 0;
    font-size: 16px;
}

.price-cell {
    color: #0080FF;
    font-weight: 600;
    font-size: 18px;
}

.quantity-controls {
    display: flex;
    align-items: center;
    gap: 10px;
}

.qty-btn {
    width: 35px;
    height: 35px;
    border: 1px solid #ddd;
    background: white;
    cursor: pointer;
    font-size: 18px;
    border-radius: 4px;
    transition: all 0.3s;
}

.qty-btn:hover {
    background: #0080FF;
    color: white;
    border-color: #0080FF;
}

.qty-input {
    width: 60px;
    height: 35px;
    text-align: center;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 16px;
}

.subtotal-cell {
    color: #0C213E;
    font-weight: 700;
    font-size: 18px;
}

.remove-btn {
    background: #D32F2F;
    color: white;
    border: none;
    width: 35px;
    height: 35px;
    border-radius: 4px;
    cursor: pointer;
    transition: background 0.3s;
}

.remove-btn:hover {
    background: #B71C1C;
}

/* Cart Actions */
.cart-actions {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    background: white;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.cart-coupon {
    display: flex;
    gap: 10px;
    flex: 1;
}

.cart-coupon input {
    flex: 1;
    max-width: 300px;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 14px;
}

.apply-coupon-btn {
    padding: 12px 30px;
    background: #0C213E;
    color: white;
    border: none;
    border-radius: 4px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s;
}

.apply-coupon-btn:hover {
    background: #024459;
}

.update-cart-btn {
    padding: 12px 30px;
    background: #0080FF;
    color: white;
    border: none;
    border-radius: 4px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s;
}

.update-cart-btn:hover {
    background: #0066CC;
}

/* Cart Totals */
.cart-totals {
    background: white;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.cart-totals h2 {
    color: #0C213E;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 2px solid #f0f0f0;
}

.totals-table {
    width: 100%;
    margin-bottom: 30px;
}

.totals-table tr {
    border-bottom: 1px solid #f0f0f0;
}

.totals-table th {
    padding: 15px 0;
    text-align: left;
    color: #666;
    font-weight: 600;
}

.totals-table td {
    padding: 15px 0;
    text-align: right;
    color: #0C213E;
    font-weight: 600;
}

.totals-table .total-row {
    border-top: 2px solid #0C213E;
    border-bottom: none;
}

.totals-table .total-row th,
.totals-table .total-row td {
    font-size: 20px;
    color: #0C213E;
    padding: 20px 0;
}

.totals-table .total-row td {
    color: #0080FF;
}

.shipping-note {
    font-size: 13px;
    color: #999;
    margin-top: 5px;
}

.checkout-btn {
    width: 100%;
    padding: 18px;
    background: #28a745;
    color: white;
    border: none;
    border-radius: 4px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s;
}

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

.checkout-btn i {
    margin-right: 10px;
}

/* Sidebar Sections */
.sidebar-section {
    background: white;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    margin-top: 30px;
}

.sidebar-section h3 {
    color: #0C213E;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 2px solid #f0f0f0;
}

.review-items,
.sale-items {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.review-item {
    display: flex;
    gap: 15px;
    padding: 15px;
    background: #f8f8f8;
    border-radius: 8px;
}

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

.review-info h4 {
    color: #0C213E;
    font-size: 14px;
    margin-bottom: 8px;
}

.review-rating {
    color: #FFC107;
    font-size: 12px;
    margin-bottom: 8px;
}

.review-price {
    color: #0080FF;
    font-weight: 700;
    font-size: 16px;
}

.sale-item-card {
    display: flex;
    gap: 15px;
    padding: 15px;
    background: #f8f8f8;
    border-radius: 8px;
}

.sale-item-card img {
    width: 80px;
    height: 80px;
    object-fit: contain;
    border-radius: 4px;
}

.sale-info h4 {
    color: #0C213E;
    font-size: 14px;
    margin-bottom: 8px;
}

/* Responsive for new pages */
@media (max-width: 768px) {
    .contact-grid {
        grid-template-columns: 1fr;
    }

    .feature-grid {
        grid-template-columns: 1fr;
    }

    .point-item {
        flex-direction: column;
        text-align: center;
    }

    .content-box {
        padding: 20px;
    }

    .page-title {
        font-size: 28px;
    }

    .contact-form-section {
        padding: 20px;
    }

    .cart-actions {
        flex-direction: column;
        align-items: stretch;
    }

    .cart-coupon {
        flex-direction: column;
    }

    .cart-coupon input {
        max-width: 100%;
    }

    .cart-table th,
    .cart-table td {
        padding: 10px;
        font-size: 14px;
    }

    .product-cell {
        min-width: 180px;
    }
}

/* Checkout Page */
.checkout-page {
    background: #f5f5f5;
}

.checkout-notice {
    background: #f0f8ff;
    border-left: 3px solid #0080FF;
    padding: 15px 20px;
    margin-bottom: 20px;
    border-radius: 4px;
}

.checkout-notice i {
    color: #0080FF;
    margin-right: 8px;
}

.checkout-notice a {
    color: #0080FF;
    text-decoration: none;
    font-weight: 600;
}

.checkout-notice a:hover {
    text-decoration: underline;
}

.coupon-form {
    background: white;
    padding: 20px;
    margin-bottom: 30px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.coupon-input-group {
    display: flex;
    gap: 10px;
    margin-top: 15px;
}

.coupon-input-group input {
    flex: 1;
    max-width: 300px;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 14px;
}

.checkout-grid {
    display: grid;
    grid-template-columns: 1fr 500px;
    gap: 40px;
    margin-top: 30px;
}

.billing-section {
    background: white;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.billing-section h2,
.billing-section h3 {
    color: #0C213E;
    margin-bottom: 25px;
}

.billing-section h3 {
    margin-top: 40px;
    font-size: 22px;
}

.checkout-form .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.checkout-form .form-group {
    margin-bottom: 20px;
}

.checkout-form .form-group.half {
    margin-bottom: 0;
}

.checkout-form label {
    display: block;
    color: #0C213E;
    font-weight: 600;
    margin-bottom: 8px;
    font-size: 14px;
}

.checkout-form input[type="text"],
.checkout-form input[type="email"],
.checkout-form input[type="tel"],
.checkout-form input[type="password"],
.checkout-form select,
.checkout-form textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 14px;
    font-family: inherit;
}

.checkout-form input:focus,
.checkout-form select:focus,
.checkout-form textarea:focus {
    outline: none;
    border-color: #0080FF;
}

.checkout-form select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23333' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 12px center;
    padding-right: 35px;
}

.checkout-form input[type="checkbox"] {
    width: auto;
    margin-right: 8px;
}

.checkout-form label:has(input[type="checkbox"]) {
    display: flex;
    align-items: center;
    font-weight: 400;
    cursor: pointer;
}

.order-section {
    background: white;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    height: fit-content;
    position: sticky;
    top: 20px;
}

.order-section h2 {
    color: #0C213E;
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 2px solid #f0f0f0;
}

.order-table {
    width: 100%;
    margin-bottom: 0;
}

.order-table thead {
    background: #f8f8f8;
}

.order-table th {
    padding: 15px;
    text-align: left;
    color: #666;
    font-weight: 600;
    font-size: 14px;
    border-bottom: 1px solid #ddd;
}

.order-table td {
    padding: 15px;
    border-bottom: 1px solid #f0f0f0;
}

.order-table tbody tr:last-child td {
    border-bottom: 1px solid #ddd;
}

.order-table .product-name {
    color: #0C213E;
}

.order-table .product-total {
    text-align: right;
    color: #0080FF;
    font-weight: 600;
}

.order-table tfoot th {
    padding: 15px;
    text-align: left;
    color: #666;
}

.order-table tfoot td {
    padding: 15px;
    text-align: right;
    font-weight: 600;
}

.order-table .subtotal-row th,
.order-table .subtotal-row td {
    color: #0C213E;
}

.order-table .shipping-row td {
    color: #0C213E;
}

.order-table .shipping-row small {
    display: block;
    color: #999;
    font-weight: 400;
    margin-top: 5px;
}

.order-table .total-row {
    background: #f8f8f8;
    border-top: 2px solid #0C213E;
}

.order-table .total-row th,
.order-table .total-row td {
    font-size: 20px;
    color: #0C213E;
    padding: 20px 15px;
}

.order-table .total-row td {
    color: #0080FF;
}

.payment-section {
    margin-top: 30px;
    padding-top: 30px;
    border-top: 2px solid #f0f0f0;
}

.payment-section h3 {
    color: #0C213E;
    margin-bottom: 20px;
}

.payment-methods {
    margin-bottom: 20px;
}

.payment-method {
    display: flex;
    align-items: center;
    padding: 15px;
    border: 2px solid #ddd;
    border-radius: 4px;
    cursor: pointer;
    transition: border-color 0.3s;
}

.payment-method:hover {
    border-color: #0080FF;
}

.payment-method input[type="radio"] {
    margin-right: 15px;
}

.payment-label {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
}

.payment-label img {
    height: 20px;
}

.payment-description {
    margin-top: 15px;
    padding: 15px;
    background: #f8f8f8;
    border-radius: 4px;
    font-size: 14px;
    color: #666;
}

.privacy-policy {
    background: #f0f8ff;
    padding: 15px;
    border-radius: 4px;
    font-size: 13px;
    color: #666;
    margin-bottom: 20px;
}

.privacy-policy a {
    color: #0080FF;
    text-decoration: none;
}

.privacy-policy a:hover {
    text-decoration: underline;
}

.place-order-btn {
    width: 100%;
    padding: 18px;
    background: #0080FF;
    color: white;
    border: none;
    border-radius: 4px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s;
}

.place-order-btn:hover {
    background: #0066CC;
}

.place-order-btn i {
    margin-right: 10px;
}

/* Responsive Checkout */
@media (max-width: 1024px) {
    .checkout-grid {
        grid-template-columns: 1fr;
    }

    .order-section {
        position: static;
    }
}

@media (max-width: 768px) {
    .billing-section,
    .order-section {
        padding: 20px;
    }

    .checkout-form .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .checkout-form .form-group.half {
        margin-bottom: 20px;
    }

    .coupon-input-group {
        flex-direction: column;
    }

    .coupon-input-group input {
        max-width: 100%;
    }
}

/* Policies Page Styles */
.policies-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin: 40px 0;
}

.policy-card {
    background: white;
    border-radius: 8px;
    padding: 40px 30px;
    text-align: center;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    transition: transform 0.3s, box-shadow 0.3s;
}

.policy-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 16px rgba(0,0,0,0.15);
}

.policy-icon {
    font-size: 48px;
    color: #0080FF;
    margin-bottom: 20px;
}

.policy-card h3 {
    font-size: 22px;
    color: #333;
    margin-bottom: 15px;
}

.policy-card p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 20px;
}

.policy-link {
    display: inline-block;
    color: #0080FF;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s;
}

.policy-link:hover {
    color: #0066cc;
}

.policy-link i {
    margin-left: 5px;
    font-size: 14px;
}

.policy-notice {
    background: #f8f9fa;
    border-left: 4px solid #0080FF;
    padding: 20px 25px;
    margin: 40px 0;
    border-radius: 4px;
}

.policy-notice i {
    color: #0080FF;
    margin-right: 10px;
    font-size: 20px;
}

.policy-notice p {
    display: inline;
    color: #666;
    margin: 0;
}

.policy-notice a {
    color: #0080FF;
    text-decoration: none;
    font-weight: 600;
}

.policy-notice a:hover {
    text-decoration: underline;
}

/* Policy Content Pages */
.policy-content {
    max-width: 900px;
    margin: 0 auto;
    background: white;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.policy-content h2 {
    font-size: 28px;
    color: #333;
    margin: 30px 0 15px 0;
    border-bottom: 2px solid #0080FF;
    padding-bottom: 10px;
}

.policy-content h3 {
    font-size: 22px;
    color: #444;
    margin: 25px 0 12px 0;
}

.policy-content p {
    color: #666;
    line-height: 1.8;
    margin-bottom: 15px;
}

.policy-content ul {
    margin: 15px 0 15px 25px;
    color: #666;
}

.policy-content li {
    margin-bottom: 10px;
    line-height: 1.6;
}

.policy-content strong {
    color: #333;
}

.policy-back-link {
    display: inline-block;
    margin-bottom: 20px;
    color: #0080FF;
    text-decoration: none;
    font-weight: 600;
}

.policy-back-link:hover {
    text-decoration: underline;
}

.policy-back-link i {
    margin-right: 5px;
}

@media (max-width: 768px) {
    .policies-grid {
        grid-template-columns: 1fr;
    }

    .policy-content {
        padding: 25px 20px;
    }

    .policy-content h2 {
        font-size: 24px;
    }
}

/* Enhanced Payment Methods Styling */
.payment-methods {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.payment-method {
    background: white;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    padding: 20px;
    margin-bottom: 0;
    display: flex;
    align-items: center;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
}

.payment-method:hover {
    border-color: #0080FF;
    background: #f8fbff;
    box-shadow: 0 4px 12px rgba(0, 128, 255, 0.1);
}

.payment-method input[type="radio"] {
    width: 20px;
    height: 20px;
    margin-right: 15px;
    cursor: pointer;
    accent-color: #0080FF;
}

.payment-method input[type="radio"]:checked + .payment-label {
    color: #0080FF;
}

.payment-method:has(input[type="radio"]:checked) {
    border-color: #0080FF;
    background: #f0f8ff;
    box-shadow: 0 4px 16px rgba(0, 128, 255, 0.15);
}

.payment-label {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    cursor: pointer;
}

.payment-label strong {
    font-size: 16px;
    color: #333;
    font-weight: 600;
}

.card-logos {
    display: flex;
    gap: 12px;
    align-items: center;
    margin-left: 15px;
}

.card-logos i {
    font-size: 32px;
    opacity: 0.7;
    transition: opacity 0.3s;
}

.card-logos .fa-cc-visa {
    color: #1A1F71;
}

.card-logos .fa-cc-mastercard {
    color: #EB001B;
}

.card-logos .fa-cc-amex {
    color: #006FCF;
}

.card-logos .fa-cc-discover {
    color: #FF6000;
}

.payment-method:hover .card-logos i {
    opacity: 1;
}

/* Card Form Styling */
.card-form {
    margin-top: 20px;
}

.card-form .form-group {
    margin-bottom: 20px;
}

.card-form .form-group label {
    display: block;
    font-weight: 600;
    color: #333;
    margin-bottom: 8px;
    font-size: 14px;
}

.card-form .form-group input {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid #e0e0e0;
    border-radius: 6px;
    font-size: 15px;
    transition: all 0.3s;
    background: white;
}

.card-form .form-group input:focus {
    outline: none;
    border-color: #0080FF;
    box-shadow: 0 0 0 3px rgba(0, 128, 255, 0.1);
}

.card-form .form-group input::placeholder {
    color: #999;
}

.card-form .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

.payment-description {
    margin-top: 0;
    padding: 25px;
    background: #fafbfc;
    border: 1px solid #e8ebed;
    border-radius: 8px;
    border-top-left-radius: 0;
    border-top-right-radius: 0;
}

/* Gift Card Styling */
.apply-gift-card-btn {
    width: 100%;
    padding: 12px 20px;
    background: linear-gradient(135deg, #0080FF 0%, #0066CC 100%);
    color: white;
    border: none;
    border-radius: 6px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    margin-top: 15px;
}

.apply-gift-card-btn:hover {
    background: linear-gradient(135deg, #0066CC 0%, #0052A3 100%);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 128, 255, 0.3);
}

.apply-gift-card-btn:active {
    transform: translateY(0);
}

#giftCardBalance {
    background: #e8f5e9;
    padding: 15px;
    border-radius: 6px;
    border: 1px solid #a5d6a7;
}

#giftCardBalance i {
    margin-right: 8px;
}

/* Required field indicator */
.required {
    color: #ff4444;
    margin-left: 3px;
}

/* Privacy Policy Section */
.privacy-policy {
    background: linear-gradient(135deg, #f0f8ff 0%, #e6f2ff 100%);
    padding: 18px 20px;
    border-radius: 8px;
    font-size: 13px;
    color: #555;
    margin: 25px 0 20px 0;
    border-left: 4px solid #0080FF;
    line-height: 1.6;
}

.privacy-policy a {
    color: #0080FF;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s;
}

.privacy-policy a:hover {
    color: #0066CC;
    text-decoration: underline;
}

/* Place Order Button Enhancement */
.place-order-btn {
    width: 100%;
    padding: 20px;
    background: linear-gradient(135deg, #0080FF 0%, #0066CC 100%);
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 18px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s;
    box-shadow: 0 4px 12px rgba(0, 128, 255, 0.3);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.place-order-btn:hover {
    background: linear-gradient(135deg, #0066CC 0%, #0052A3 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 128, 255, 0.4);
}

.place-order-btn:active {
    transform: translateY(0);
}

.place-order-btn i {
    margin-right: 12px;
    font-size: 20px;
}

/* Input Focus Animations */
@keyframes inputFocus {
    0% {
        box-shadow: 0 0 0 0 rgba(0, 128, 255, 0.4);
    }
    100% {
        box-shadow: 0 0 0 4px rgba(0, 128, 255, 0);
    }
}

.card-form input:focus {
    animation: inputFocus 0.6s ease;
}

/* Responsive Payment Methods */
@media (max-width: 768px) {
    .card-form .form-row {
        grid-template-columns: 1fr;
    }

    .card-logos {
        flex-wrap: wrap;
        gap: 8px;
    }

    .card-logos i {
        font-size: 28px;
    }

    .payment-method {
        padding: 15px;
    }

    .payment-label strong {
        font-size: 15px;
    }

    .payment-description {
        padding: 20px 15px;
    }
}
