/* Global Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
}

body {
    background-color: #fff;
}

/* Top Banner */
.top-banner {
    background-color: #f5f5f5;
    text-align: center;
    padding: 8px;
    font-size: 14px;
}

.top-banner a {
    color: #000;
    text-decoration: none;
}

/* Navigation */
.main-nav {
    padding: 15px 0;
    border-bottom: 1px solid #eee;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 20px;
}

.logo img {
    height: 40px;
}

.nav-links {
    display: flex;
    gap: 30px;
}

.nav-links a {
    text-decoration: none;
    color: #000;
    font-weight: 500;
}

.nav-right {
    display: flex;
    align-items: center;
    gap: 20px;
}

.search-bar {
    position: relative;
}

.search-bar input {
    padding: 8px 35px 8px 15px;
    border: 1px solid #ddd;
    border-radius: 20px;
    width: 200px;
    font-size: 14px;
}

.search-bar i {
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    color: #666;
}

.user-actions {
    display: flex;
    gap: 15px;
}

.user-actions a {
    color: #000;
    font-size: 20px;
}

/* Breadcrumb */
.breadcrumb {
    max-width: 1200px;
    margin: 20px auto;
    padding: 0 20px;
    font-size: 14px;
}

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

.breadcrumb span {
    color: #000;
}

/* Product Container */
.product-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

/* Product Gallery */
.product-gallery {
    display: flex;
    gap: 20px;
    width: 100%;
}

.thumbnail-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
    width: 80px;
}

.thumbnail-list img {
    width: 80px;
    height: 80px;
    border-radius: 8px;
    cursor: pointer;
    border: 2px solid transparent;
    padding: 5px;
    background: #fff;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
}

.thumbnail-list img.active {
    border-color: #ff0000;
}

.main-image {
    position: relative;
    flex-grow: 1;
    height: 600px;
    background: #f8f8f8;
    border-radius: 12px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

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

.nav-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    background: #fff;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    z-index: 2;
}

.nav-btn.prev {
    left: 20px;
}

.nav-btn.next {
    right: 20px;
}

.nav-btn i {
    color: #333;
    font-size: 18px;
}

.view-similar {
    position: absolute;
    bottom: 20px;
    right: 20px;
    background: #fff;
    padding: 12px 24px;
    border-radius: 25px;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    z-index: 2;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.sale-timer {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    background: #1a1a1a;
    color: white;
    padding: 12px 24px;
    border-radius: 25px;
    font-size: 16px;
    z-index: 2;
    display: flex;
    align-items: center;
    gap: 8px;
    white-space: nowrap;
}

.sale-timer::before {
    content: "⚡";
    font-size: 18px;
}

/* Product Info Section */
.product-info {
    padding: 20px;
}

/* Product Info */
.product-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.rating {
    display: flex;
    align-items: center;
    gap: 5px;
}

.offer-badge {
    background: #fff3f3;
    color: #ff0000;
    padding: 8px 15px;
    border-radius: 20px;
    font-size: 14px;
}

.product-info h1 {
    font-size: 24px;
    margin-bottom: 10px;
}

.product-description {
    color: #666;
    margin-bottom: 20px;
}

.pricing {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 10px;
}

.current-price {
    font-size: 28px;
    font-weight: bold;
}

.original-price {
    color: #666;
    text-decoration: line-through;
}

.discount {
    color: #00b300;
}

.mrp-text {
    color: #666;
    font-size: 12px;
    margin-bottom: 30px;
}

/* Color Selection */
.color-selection {
    margin-bottom: 30px;
}

.color-selection h3 {
    margin-bottom: 15px;
}

.color-options {
    display: flex;
    gap: 15px;
}

.color-btn {
    width: 50px;
    height: 50px;
    border-radius: 8px;
    border: 2px solid transparent;
    cursor: pointer;
    padding: 2px;
}

.color-btn.active {
    border-color: #ff0000;
}

.color-btn img {
    width: 100%;
    height: 100%;
    border-radius: 6px;
}

/* Delivery Check */
.delivery-check {
    margin-bottom: 30px;
}

.pincode-input {
    display: flex;
    gap: 10px;
    margin: 15px 0;
}

.pincode-input input {
    padding: 8px 15px;
    border: 1px solid #ddd;
    border-radius: 4px;
    width: 120px;
}

.change-btn {
    background: #000;
    color: white;
    border: none;
    padding: 8px 20px;
    border-radius: 4px;
    cursor: pointer;
}

.delivery-info {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #00b300;
}

/* Rewards Section */
.rewards-section {
    margin-bottom: 30px;
}

.reward-item {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 15px;
    padding: 15px;
    background: #f9f9f9;
    border-radius: 8px;
}

.reward-item img {
    width: 24px;
    height: 24px;
}

/* Support Buttons */
.support-buttons {
    position: fixed;
    bottom: 20px;
    right: 20px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.support-buttons a {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: white;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
}

.support-buttons img {
    width: 30px;
    height: 30px;
}

/* Active Offers */
.active-offers {
    margin-bottom: 30px;
}

.active-offers h3 {
    font-size: 24px;
    margin-bottom: 20px;
}

.offers-container {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
}

.offer-card {
    flex: 1;
    background-color: #f8faf8;
    border: 1px solid #e0e6e0;
    border-radius: 12px;
    padding: 20px;
    text-align: center;
    position: relative;
    min-width: 200px;
}

.offer-card h4 {
    font-size: 18px;
    line-height: 1.4;
    margin-bottom: 15px;
}

.dotted-line {
    border-top: 2px dotted #ccc;
    margin: 15px 0;
}

.offer-card .discount {
    color: #4863D4;
    font-size: 20px;
    font-weight: 600;
    margin: 15px 0;
}

.offer-card .price {
    font-size: 16px;
    color: #333;
    margin-bottom: 10px;
}

.offer-card .code {
    font-size: 16px;
    color: #333;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.offer-card .code i {
    cursor: pointer;
    color: #666;
}

.offer-tag {
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
    white-space: nowrap;
}

.most-popular .offer-tag {
    background-color: #4CAF50;
    color: white;
}

.best-value .offer-tag {
    background-color: #1a1a1a;
    color: white;
}

.most-savings .offer-tag {
    background-color: #1a1a1a;
    color: white;
}

/* Purchase Buttons */
.purchase-buttons {
    display: flex;
    gap: 20px;
    margin-top: 30px;
}

.purchase-buttons button {
    flex: 1;
    padding: 15px 30px;
    border-radius: 8px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    border: none;
    transition: all 0.3s ease;
}

.add-to-cart {
    background-color: #1a1a1a;
    color: white;
}

.add-to-cart:hover {
    background-color: #333;
}

.buy-now {
    background-color: #4CAF50;
    color: white;
}

.buy-now:hover {
    background-color: #45a049;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .offers-container {
        flex-direction: column;
    }

    .offer-card {
        width: 100%;
    }

    .purchase-buttons {
        flex-direction: column;
    }

    .product-gallery {
        flex-direction: column;
    }

    .thumbnail-list {
        flex-direction: row;
        width: 100%;
        overflow-x: auto;
        padding-bottom: 10px;
    }

    .thumbnail-list img {
        width: 60px;
        height: 60px;
    }

    .main-image {
        height: 400px;
    }
}

/* Services Banner */
.services-banner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 40px 0;
    margin-top: 40px;
    border-top: 1px solid #eee;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.service-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 15px;
}

.service-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.service-info {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
}

.service-info .highlight {
    font-size: 15px;
    font-weight: 600;
    color: #1a1a1a;
}

.service-info .label {
    font-size: 14px;
    color: #666;
    display: flex;
    align-items: center;
    gap: 4px;
}

.service-info .label i {
    font-size: 12px;
    color: #666;
    cursor: pointer;
}

@media (max-width: 992px) {
    .services-banner {
        flex-wrap: wrap;
        gap: 30px;
        padding: 30px 20px;
    }

    .service-item {
        width: calc(50% - 15px);
    }
}

@media (max-width: 576px) {
    .service-item {
        width: 100%;
    }
}

/* Product Highlights Section */
.product-highlights {
    min-height: 100vh;
    width: 100%;
    padding: 2rem;
    background: linear-gradient(to bottom, #f5f5f5, #ffffff);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.highlights-title {
    text-align: center;
    font-size: 4rem;
    margin-bottom: 3rem;
    color: #000;
    font-weight: 600;
}

.highlights-grid {
    width: 100%;
    max-width: 1800px;
    margin: 0 auto;
}

.main-highlight {
    width: 100%;
    padding: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    background: transparent;
    box-shadow: none;
}

.main-highlight img {
    width: 100%;
    max-width: 1600px;
    height: auto;
    object-fit: contain;
}

.main-highlight h3 {
    font-size: 2.5rem;
    margin-top: 2rem;
    color: #000;
}

/* Media Queries */
@media (max-width: 1200px) {
    .highlights-title {
        font-size: 3rem;
    }
    
    .main-highlight img {
        max-width: 100%;
    }
    
    .main-highlight h3 {
        font-size: 2rem;
    }
}

@media (max-width: 768px) {
    .product-highlights {
        padding: 1rem;
    }

    .highlights-title {
        font-size: 2.5rem;
        margin-bottom: 2rem;
    }

    .main-highlight h3 {
        font-size: 1.75rem;
    }
}

/* Features Section */
.features-section {
    width: 100%;
    padding: 4rem 2rem;
    background-color: #f8f9fa;
}

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

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

.feature-icon {
    width: 120px;
    height: 120px;
    background-color: #e8f0f2;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.feature-icon img {
    width: 60px;
    height: 60px;
    object-fit: contain;
}

.feature-text h3 {
    font-size: 1.25rem;
    color: #000;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.feature-text p {
    font-size: 1rem;
    color: #666;
    line-height: 1.4;
}

/* Media Queries */
@media (max-width: 992px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 3rem;
    }
}

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

    .features-section {
        padding: 2rem 1rem;
    }

    .feature-icon {
        width: 100px;
        height: 100px;
    }

    .feature-icon img {
        width: 50px;
        height: 50px;
    }
}

/* Technical Specifications Section */
.technical-specs {
    padding: 4rem 2rem;
    background-color: #ffffff;
    max-width: 1200px;
    margin: 0 auto;
}

.specs-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #000;
    font-weight: 600;
}

.specs-title span {
    font-weight: 400;
}

.specs-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-bottom: 3rem;
}

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

.spec-item {
    display: flex;
    padding: 1rem;
    background-color: #f8f9fa;
    border-radius: 8px;
}

.spec-label {
    flex: 1;
    color: #666;
    font-size: 0.9rem;
}

.spec-value {
    flex: 1;
    color: #000;
    font-weight: 500;
}

.additional-info {
    border-top: 1px solid #eee;
    padding-top: 2rem;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

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

.info-section h3 {
    color: #000;
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.info-section p {
    color: #666;
    line-height: 1.6;
}

.info-section ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

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

/* Media Queries */
@media (max-width: 768px) {
    .technical-specs {
        padding: 2rem 1rem;
    }

    .specs-title {
        font-size: 2rem;
        margin-bottom: 2rem;
    }

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

    .spec-item {
        flex-direction: column;
        gap: 0.5rem;
    }

    .spec-label {
        font-weight: 600;
    }
}

/* User Manual Download Section */
.manual-download {
    padding: 2rem;
    max-width: 1200px;
    margin: 2rem auto;
}

.manual-container {
    display: flex;
    align-items: center;
    gap: 2rem;
    background-color: #f8f9fa;
    padding: 2rem;
    border-radius: 12px;
}

.manual-icon {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.manual-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.manual-content {
    flex-grow: 1;
}

.manual-content h3 {
    font-size: 1.25rem;
    color: #000;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.manual-content p {
    color: #666;
    font-size: 0.95rem;
    margin: 0;
}

.download-button {
    flex-shrink: 0;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background-color: #000;
    color: #fff;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 500;
    transition: background-color 0.3s ease;
}

.download-button:hover {
    background-color: #333;
}

.download-button i {
    font-size: 1.1rem;
}

/* Media Queries */
@media (max-width: 768px) {
    .manual-container {
        flex-direction: column;
        text-align: center;
        padding: 1.5rem;
        gap: 1rem;
    }

    .manual-icon {
        width: 40px;
        height: 40px;
    }

    .download-button {
        width: 100%;
        justify-content: center;
    }
}

/* FAQs Section */
.faqs-section {
    padding: 4rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.faqs-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #000;
    font-weight: 600;
}

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

.faq-item {
    border-radius: 8px;
    overflow: hidden;
    background: #f8f9fa;
}

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

.faq-question:hover {
    background-color: #f1f3f5;
}

.faq-question i {
    font-size: 1.2rem;
    transition: transform 0.3s ease;
}

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

.faq-item.active .faq-answer {
    max-height: 200px;
    padding-bottom: 1.5rem;
}

.faq-answer p {
    color: #666;
    line-height: 1.6;
    margin: 0;
}

.faq-notes {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid #eee;
    color: #666;
}

.faq-notes p {
    margin: 0.5rem 0;
    font-size: 0.9rem;
}

.faq-notes p:first-child {
    color: #000;
    font-weight: 500;
}

/* Media Queries */
@media (max-width: 768px) {
    .faqs-section {
        padding: 2rem 1rem;
    }

    .faqs-section h2 {
        font-size: 2rem;
        margin-bottom: 2rem;
    }

    .faq-question {
        padding: 1.25rem;
        font-size: 0.95rem;
    }
}

/* Product Notes Section */
.product-notes {
    padding: 4rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
    background-color: #ffffff;
}

.product-notes h3 {
    color: #000;
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.product-notes h4 {
    color: #666;
    font-size: 1.1rem;
    margin-bottom: 2rem;
    font-weight: 400;
}

.features-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.feature-note {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.feature-number {
    color: #000;
    font-weight: 600;
    font-size: 1rem;
    min-width: 25px;
}

.feature-note p {
    color: #666;
    line-height: 1.8;
    margin: 0;
    font-size: 1rem;
}

/* Media Queries */
@media (max-width: 768px) {
    .product-notes {
        padding: 2rem 1rem;
    }

    .feature-note {
        gap: 0.75rem;
    }

    .feature-number {
        font-size: 0.9rem;
        min-width: 20px;
    }

    .feature-note p {
        font-size: 0.95rem;
        line-height: 1.6;
    }
}

/* Footer Styles */
.site-footer {
    background-color: #f8f9fa;
    padding: 4rem 2rem;
}

.footer-container {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

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

.footer-section h4 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: #000;
}

.footer-section h5 {
    font-size: 1rem;
    font-weight: 500;
    margin-bottom: 1rem;
    color: #000;
}

.footer-section ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

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

.footer-section ul li a {
    color: #666;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s;
}

.footer-section ul li a:hover {
    color: #000;
}

.shop-by-price {
    color: #000;
    font-weight: 500;
    margin: 1rem 0 0.5rem;
    font-size: 0.9rem;
}

/* Media Queries */
@media (max-width: 992px) {
    .footer-container {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .site-footer {
        padding: 2rem 1rem;
    }

    .footer-container {
        grid-template-columns: 1fr;
    }
}

/* Big Deals Section */
.big-deals-section {
    padding: 4rem 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

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

.section-header h2 {
    font-size: 2.5rem;
    font-weight: 600;
    margin: 0;
}

.view-all {
    color: #0066CC;
    text-decoration: none;
    font-weight: 500;
    font-size: 1.1rem;
}

.big-deals-tabs {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2rem;
    overflow-x: auto;
    padding-bottom: 0.5rem;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none; /* Firefox */
}

.big-deals-tabs::-webkit-scrollbar {
    display: none; /* Chrome, Safari, Edge */
}

.big-deals-tabs button {
    background: none;
    border: none;
    padding: 0.8rem 1.5rem;
    font-size: 1rem;
    color: #666;
    cursor: pointer;
    white-space: nowrap;
    transition: all 0.3s ease;
    border-radius: 25px;
    border: 1px solid #ddd;
}

.big-deals-tabs button:hover {
    color: #000;
    background-color: #f5f5f5;
    border-color: #999;
}

.big-deals-tabs button.active {
    background-color: #000;
    color: #fff;
    border-color: #000;
}

.big-deals-products {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

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

.deal-card {
    background: #fff;
    border-radius: 12px;
    padding: 1.5rem;
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 4px 6px rgba(0,0,0,0.05);
    cursor: pointer;
}

.deal-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 15px rgba(0,0,0,0.1);
}

.deal-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    color: #fff;
}

.deal-badge.green { background-color: #4CAF50; }
.deal-badge.blue { background-color: #2196F3; }
.deal-badge.red { background-color: #f44336; }
.deal-badge.purple { background-color: #9C27B0; }

.deal-card img {
    width: 100%;
    height: auto;
    margin-bottom: 1rem;
    transition: transform 0.3s ease;
}

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

.deal-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.5rem 1rem;
    border-radius: 6px;
    margin-bottom: 1rem;
    font-size: 0.9rem;
}

.deal-info.yellow { background-color: #FFF3E0; }
.deal-info.blue { background-color: #E3F2FD; }
.deal-info.red { background-color: #FFEBEE; }
.deal-info.purple { background-color: #F3E5F5; }

.star {
    color: #FFA000;
    font-weight: 600;
}

.deal-title {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #000;
}

.deal-price {
    font-size: 1.2rem;
    font-weight: 700;
    color: #000;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.deal-price .old {
    color: #999;
    text-decoration: line-through;
    font-size: 1rem;
    font-weight: 400;
}

.deal-price .off {
    color: #4CAF50;
    font-size: 0.9rem;
    font-weight: 600;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .big-deals-section {
        padding: 2rem 1rem;
    }

    .section-header h2 {
        font-size: 2rem;
    }

    .big-deals-tabs {
        gap: 1rem;
    }

    .big-deals-tabs button {
        padding: 0.6rem 1.2rem;
        font-size: 0.9rem;
    }

    .deal-card {
        padding: 1rem;
    }

    .deal-title {
        font-size: 1rem;
    }

    .deal-price {
        font-size: 1.1rem;
    }
}

/* Login Modal Styles */
.login-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 1000;
}

.login-modal-overlay.active {
    display: flex;
}

/* Modal Container */
.login-modal {
    background: #fff;
    border-radius: 16px;
    width: 90%;
    max-width: 800px;
    position: relative;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

/* Close Button */
.close-btn {
    position: absolute;
    top: 16px;
    right: 16px;
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    color: #666;
    z-index: 2;
}

/* Modal Content Layout */
.modal-content {
    display: flex;
    min-height: 500px;
}

/* Left Column */
.modal-left {
    flex: 1;
    background: #68d6d2;
    padding: 40px;
    border-radius: 16px 0 0 16px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.boat-logo {
    height: 40px;
    margin-bottom: 16px;
}

.kwikpass-logo {
    height: 32px;
    margin-bottom: 40px;
}

/* Benefits Section */
.benefits {
    display: flex;
    flex-direction: column;
    gap: 32px;
    margin-top: auto;
    width: 100%;
}

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

.benefit-item img {
    width: 32px;
    height: 32px;
    object-fit: contain;
}

.benefit-item p {
    font-size: 16px;
    color: #333;
    margin: 0;
}

/* Right Column */
.modal-right {
    flex: 1;
    padding: 40px;
    display: flex;
    flex-direction: column;
}

/* Login Form */
.login-form {
    max-width: 400px;
    margin: 0 auto;
    width: 100%;
}

.login-form h2 {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 8px;
    color: #000;
}

.login-form > p {
    color: #666;
    font-size: 16px;
    margin-bottom: 32px;
}

/* Input Styles */
.input-group {
    margin-bottom: 24px;
}

.input-group input {
    width: 100%;
    padding: 16px;
    border: 1px solid #f7aaaa;
    border-radius: 8px;
    font-size: 16px;
    transition: all 0.3s ease;
}

.input-group input:focus {
    outline: none;
    border-color: #000;
    box-shadow: 0 0 0 2px rgba(0, 0, 0, 0.1);
}

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

/* Checkbox Styles */
.checkbox-group {
    margin-bottom: 24px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.checkbox-group input[type="checkbox"] {
    width: 20px;
    height: 20px;
    margin: 0;
}

.checkbox-group label {
    font-size: 14px;
    color: #333;
}

/* Button Styles */
.submit-btn {
    width: 100%;
    padding: 16px;
    background: #000;
    color: #ef5c5c;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    transition: background-color 0.3s;
    margin-bottom: 24px;
}

.submit-btn:hover {
    background: #333;
}

.submit-btn:disabled {
    background: #ccc;
    cursor: not-allowed;
}

/* Terms Text */
.terms {
    text-align: center;
    margin-bottom: 16px;
}

.terms p {
    font-size: 14px;
    color: #666;
}

.terms a, .help-link a {
    color: #5829bc;
    text-decoration: none;
    font-weight: 500;
}

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

/* Help Link */
.help-link {
    text-align: center;
}

.help-link a {
    font-size: 14px;
}

/* Success Message */
.success-message {
    text-align: center;
    padding: 40px;
}

.success-message img {
    width: 64px;
    height: 64px;
    margin-bottom: 24px;
}

.success-message h3 {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 8px;
    color: #000;
}

.success-message p {
    color: #666;
    font-size: 16px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .modal-content {
        flex-direction: column;
    }
    
    .modal-left {
        border-radius: 16px 16px 0 0;
        padding: 24px;
    }
    
    .modal-right {
        padding: 24px;
    }
    
    .benefits {
        gap: 20px;
        margin-top: 24px;
    }
    
    .login-modal {
        width: 95%;
        margin: 16px;
    }
}

/* Checkout Popup Styles */
.checkout-popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 1000;
    backdrop-filter: blur(5px);
}

.checkout-popup-overlay.active {
    display: flex;
}

.checkout-popup {
    background: white;
    width: 90%;
    max-width: 800px;
    max-height: 90vh;
    border-radius: 12px;
    padding: 2rem;
    position: relative;
    overflow-y: auto;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

.close-checkout {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    color: #666;
    z-index: 2;
}

/* Checkout Steps */
.checkout-steps {
    display: flex;
    justify-content: space-between;
    margin-bottom: 2rem;
    position: relative;
    padding: 0 1rem;
}

.checkout-steps::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 2px;
    background: #eee;
    z-index: 1;
}

.step {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    position: relative;
    z-index: 2;
    background: white;
    padding: 0 1rem;
}

.step-number {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: #eee;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 500;
    transition: all 0.3s ease;
}

.step.active .step-number {
    background: #000;
    color: white;
}

/* Checkout Sections */
.checkout-section {
    display: none;
    margin-top: 2rem;
}

.checkout-section.active {
    display: block;
    animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

.checkout-section h2 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    color: #000;
}

/* Cart Section */
.cart-item {
    display: grid;
    grid-template-columns: auto 1fr auto;
    gap: 1.5rem;
    padding: 1rem;
    border: 1px solid #eee;
    border-radius: 8px;
    margin-bottom: 1rem;
    background: #f9f9f9;
}

.cart-item-image {
    width: 100px;
    height: 100px;
    object-fit: contain;
    background: white;
    border-radius: 4px;
    padding: 0.5rem;
}

.cart-item-details h3 {
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
    color: #000;
}

.cart-item-color {
    color: #666;
    margin-bottom: 1rem;
    font-size: 0.9rem;
}

.quantity-controls {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.qty-btn {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    border: 1px solid #ddd;
    background: white;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    transition: all 0.2s ease;
}

.qty-btn:hover {
    background: #f0f0f0;
}

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

.cart-summary {
    margin-top: 2rem;
    border-top: 1px solid #eee;
    padding-top: 1rem;
}

.summary-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 0.5rem;
    color: #666;
}

.summary-row.total {
    font-weight: 500;
    font-size: 1.1rem;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid #eee;
    color: #000;
}

/* Delivery Section */
.delivery-form {
    display: grid;
    gap: 1rem;
}

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

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: #666;
    font-size: 0.9rem;
}

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

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #000;
    box-shadow: 0 0 0 2px rgba(0, 0, 0, 0.1);
}

/* Payment Section */
.payment-options {
    display: grid;
    gap: 1rem;
    margin-bottom: 2rem;
}

.payment-option {
    display: block;
    border: 1px solid #ddd;
    border-radius: 4px;
    padding: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.payment-option:hover {
    border-color: #000;
    background: #f9f9f9;
}

.payment-option input[type="radio"] {
    display: none;
}

.payment-option input[type="radio"]:checked + .option-content {
    color: #000;
}

.payment-option input[type="radio"]:checked + .option-content i {
    color: #000;
}

.option-content {
    display: flex;
    align-items: center;
    gap: 1rem;
    color: #666;
}

.option-content i {
    font-size: 1.2rem;
    color: #666;
    transition: color 0.3s ease;
}

/* Buttons */
.continue-btn,
.place-order-btn {
    width: 100%;
    padding: 1rem;
    background: #000;
    color: white;
    border: none;
    border-radius: 4px;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    margin-top: 2rem;
    transition: all 0.3s ease;
}

.continue-btn:hover,
.place-order-btn:hover {
    background: #333;
}

.continue-btn:disabled,
.place-order-btn:disabled {
    background: #ccc;
    cursor: not-allowed;
}

/* Toast Notifications */
.toast {
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    background: #333;
    color: white;
    padding: 1rem 2rem;
    border-radius: 4px;
    z-index: 1100;
    animation: slideUp 0.3s ease;
}

@keyframes slideUp {
    from { transform: translate(-50%, 100%); opacity: 0; }
    to { transform: translate(-50%, 0); opacity: 1; }
}

/* Responsive Design */
@media (max-width: 768px) {
    .checkout-popup {
        width: 95%;
        padding: 1rem;
        margin: 1rem;
    }

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

    .cart-item {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .cart-item-image {
        margin: 0 auto;
    }

    .cart-item-price {
        text-align: center;
    }

    .quantity-controls {
        justify-content: center;
    }

    .checkout-steps {
        flex-direction: column;
        gap: 1rem;
        padding: 0;
    }

    .checkout-steps::before {
        display: none;
    }

    .step {
        padding: 0.5rem;
        justify-content: center;
    }
}

