/* ===== ΒΑΣΙΚΕΣ ΡΥΘΜΙΣΕΙΣ ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-blue: #1a5276;
    --dark-blue: #154360;
    --light-blue: #2e86c1;
    --red: #e74c3c;
    --dark-red: #c0392b;
    --white: #ffffff;
    --light-gray: #f5f6fa;
    --gray: #7f8c8d;
    --dark: #2c3e50;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--dark);
    overflow-x: hidden;
}

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

/* ===== HEADER ===== */
.header {
    background: var(--white);
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 20px;
    position: relative;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-shrink: 0;
}

.logo img {
    height: 50px;
    width: auto;
}

.logo-text h1 {
    color: var(--red);
    font-size: 26px;
    font-weight: 800;
    line-height: 1;
}

.logo-text span {
    color: var(--primary-blue);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.5px;
}

/* ===== NAVIGATION ===== */
.nav {
    display: flex;
    gap: 4px;
    align-items: center;
    margin-left: auto;
    margin-right: 15px;
}

.nav a {
    text-decoration: none;
    color: var(--dark);
    font-weight: 600;
    font-size: 13px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    padding: 8px 14px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 6px;
    position: relative;
    overflow: hidden;
    white-space: nowrap;
}

.nav a::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--red);
    border-radius: 50px;
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: -1;
}

.nav a:hover::before,
.nav a.active::before {
    transform: scaleX(1);
    transform-origin: left;
}

.nav a:hover,
.nav a.active {
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(231, 76, 60, 0.35);
}

.nav a.active {
    background: var(--red);
}

.nav-icon {
    font-size: 14px;
    width: 18px;
    text-align: center;
    transition: transform 0.3s;
}

.nav a:hover .nav-icon {
    transform: scale(1.2);
}

/* ===== MOBILE MENU ===== */
.mobile-menu-btn {
    display: none;
    font-size: 20px;
    color: var(--primary-blue);
    cursor: pointer;
    background: var(--light-gray);
    border: none;
    padding: 10px;
    border-radius: 12px;
    transition: all 0.3s;
    width: 42px;
    height: 42px;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.mobile-menu-btn:hover {
    background: var(--red);
    color: white;
}

.nav.active {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: calc(100% + 10px);
    left: 20px;
    right: 20px;
    background: var(--white);
    padding: 15px;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.15);
    gap: 5px;
    animation: menuSlideIn 0.3s ease;
    margin-left: 0;
    margin-right: 0;
}

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

.nav.active a {
    width: 100%;
    justify-content: flex-start;
    padding: 12px 18px;
    border-radius: 12px;
    font-size: 15px;
}

.nav.active a::before {
    border-radius: 12px;
}

.nav.active a:hover,
.nav.active a.active {
    transform: translateX(5px);
}

/* ===== HERO SECTION ===== */
.hero {
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--dark-blue) 100%);
    color: var(--white);
    padding: 150px 0 100px;
    margin-top: 70px;
}

.hero .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 50px;
}

.hero-content {
    flex: 1;
}

.hero-content h2 {
    font-size: 42px;
    font-weight: 800;
    margin-bottom: 10px;
    line-height: 1.2;
}

.hero-content h3 {
    font-size: 24px;
    color: #aed6f1;
    margin-bottom: 20px;
    font-weight: 600;
}

.hero-content p {
    font-size: 18px;
    margin-bottom: 30px;
    opacity: 0.9;
}

.hero-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.btn {
    padding: 15px 35px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 16px;
    transition: all 0.3s;
    display: inline-block;
    border: none;
    cursor: pointer;
}

.btn-primary {
    background: white;
    color: #e74c3c !important;
    border: 2px solid white;
}

.btn-primary:hover {
    background: #e74c3c;
    color: white !important;
    border-color: #e74c3c;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(231, 76, 60, 0.6);
}

.btn-secondary {
    background: #1a5276;
    color: white;
    border: 2px solid #1a5276;
}

.btn-secondary:hover {
    background: #e74c3c;
    color: white;
    border-color: #e74c3c;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(231, 76, 60, 0.6);
}
.hero-image {
    flex: 0 0 300px;
}

.hero-image img {
    width: 100%;
    max-width: 280px;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.3);
}

@media (max-width: 768px) {
    .hero-image img {
        max-width: 140px;
    }
}
/* ===== SERVICES SECTION ===== */
.services {
    padding: 80px 0;
    background: var(--light-gray);
}

.section {
    padding: 80px 0;
}

.section-title {
    text-align: center;
    font-size: 36px;
    color: var(--primary-blue);
    margin-bottom: 15px;
    position: relative;
}

.section-title::after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background: var(--red);
    margin: 15px auto 0;
    border-radius: 2px;
}

.section-subtitle {
    text-align: center;
    color: var(--gray);
    font-size: 18px;
    margin-bottom: 50px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 30px;
}

.service-card {
    background: var(--white);
    padding: 40px 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    transition: all 0.3s;
    border-bottom: 4px solid transparent;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
    border-bottom-color: var(--red);
}

.service-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-blue), var(--light-blue));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    color: var(--white);
    font-size: 32px;
}

.service-card h3 {
    font-size: 22px;
    color: var(--dark);
    margin-bottom: 15px;
}

.service-card p {
    color: var(--gray);
    font-size: 15px;
    line-height: 1.7;
}

/* ===== ABOUT SECTION ===== */
.about {
    padding: 80px 0;
    background: var(--white);
}

.about-content {
    max-width: 800px;
    margin: 0 auto;
}

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

.feature {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 20px;
    background: var(--light-gray);
    border-radius: 10px;
    transition: all 0.3s;
}

.feature:hover {
    background: var(--primary-blue);
    color: var(--white);
}

.feature i {
    color: var(--red);
    font-size: 24px;
}

.feature:hover i {
    color: var(--white);
}

.feature span {
    font-weight: 600;
    font-size: 16px;
}

/* ===== CONTACT SECTION ===== */
.contact {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--light-gray) 0%, #e8f4f8 100%);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: start;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 20px;
    background: var(--white);
    border-radius: 12px;
    box-shadow: 0 3px 15px rgba(0,0,0,0.05);
    transition: all 0.3s;
}

.contact-item:hover {
    transform: translateX(5px);
    box-shadow: 0 5px 25px rgba(0,0,0,0.1);
}

.contact-item i {
    font-size: 24px;
    color: var(--red);
    width: 30px;
    text-align: center;
    margin-top: 3px;
}

.contact-item h4 {
    color: var(--primary-blue);
    font-size: 18px;
    margin-bottom: 5px;
}

.contact-item p {
    color: var(--gray);
    font-size: 15px;
    line-height: 1.5;
}

.contact-form {
    background: var(--white);
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
}

.contact-form h3 {
    color: var(--primary-blue);
    font-size: 24px;
    margin-bottom: 25px;
    text-align: center;
}

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 15px;
    border: 2px solid #e0e0e0;
    border-radius: 10px;
    font-size: 16px;
    font-family: inherit;
    transition: border-color 0.3s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-blue);
}

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

/* ===== FOOTER ===== */
.footer {
    background: var(--dark);
    color: var(--white);
    padding: 50px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-bottom: 30px;
}

.footer-logo img {
    height: 60px;
    margin-bottom: 10px;
}

.footer-logo p {
    color: #bdc3c7;
    font-weight: 600;
}

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

.footer-links a {
    color: #bdc3c7;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: var(--red);
}

.footer-contact p {
    color: #bdc3c7;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-contact i {
    color: var(--red);
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.social-links a {
    width: 45px;
    height: 45px;
    background: var(--primary-blue);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-size: 20px;
    transition: all 0.3s;
}

.social-links a:hover {
    background: var(--red);
}

.viber-btn {
    background: #7360f2 !important;
}

.viber-btn:hover {
    background: #5a4bc7 !important;
}

.footer-bottom {
    border-top: 1px solid #34495e;
    padding-top: 20px;
    text-align: center;
    color: #7f8c8d;
    font-size: 14px;
}

/* ===== PRODUCTS PAGE STYLES ===== */
.products-hero {
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--dark-blue) 100%);
    color: var(--white);
    padding: 150px 0 60px;
    margin-top: 70px;
    text-align: center;
}

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

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

.category-buttons {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin: 40px 0;
    flex-wrap: wrap;
}

.cat-btn {
    padding: 15px 35px;
    border: 2px solid var(--primary-blue);
    background: var(--white);
    color: var(--primary-blue);
    border-radius: 50px;
    font-weight: 700;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.cat-btn:hover,
.cat-btn.active {
    background: var(--primary-blue);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(26, 82, 118, 0.3);
}

.cat-btn.active {
    background: var(--red);
    border-color: var(--red);
}

.category-section {
    display: none;
    padding: 40px 0;
}

.category-section.active {
    display: block;
    animation: fadeIn 0.5s;
}

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

.sub-cat-buttons {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin: 20px 0 30px;
    flex-wrap: wrap;
}

.sub-cat-btn {
    padding: 10px 25px;
    background: #f5f6fa;
    border: 2px solid #ddd;
    color: var(--dark);
    border-radius: 30px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.sub-cat-btn:hover,
.sub-cat-btn.active {
    background: var(--light-blue);
    color: var(--white);
    border-color: var(--light-blue);
}

.sub-category {
    display: none;
}

.sub-category.active {
    display: block;
    animation: fadeIn 0.5s;
}

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

.product-card {
    background: var(--white);
    border-radius: 15px;
    padding: 20px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    transition: all 0.3s;
    border-bottom: 4px solid transparent;
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
    border-bottom-color: var(--red);
}

.product-card-img {
    width: 100%;
    height: auto;
    max-height: 220px;
    object-fit: contain;
    object-position: center;
    background: #f5f6fa;
    border-radius: 10px;
    margin-bottom: 15px;
}

.product-card h3 {
    font-size: 20px;
    color: var(--dark);
    margin-bottom: 10px;
}

.product-specs {
    color: var(--gray);
    font-size: 14px;
    margin: 10px 0;
    line-height: 1.6;
}

.product-price {
    color: var(--red);
    font-weight: 800;
    font-size: 26px;
    margin: 10px 0;
}

.product-price-old {
    color: #95a5a6;
    text-decoration: line-through;
    font-size: 16px;
    margin-left: 10px;
}

.refurbished-tag {
    display: inline-block;
    background: var(--red);
    color: var(--white);
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    margin-top: 10px;
}

.new-tag {
    display: inline-block;
    background: #27ae60;
    color: var(--white);
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    margin-top: 10px;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
    .nav {
        display: none;
    }

    .mobile-menu-btn {
        display: flex;
    }

    .hero .container {
        flex-direction: column;
        text-align: center;
    }

    .hero-content h2 {
        font-size: 32px;
    }

    .hero-image {
        order: -1;
    }

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

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

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

    .products-hero h2 {
        font-size: 32px;
    }

    .cat-btn {
        padding: 12px 25px;
        font-size: 14px;
    }

    .contact-form {
        padding: 25px;
    }
}


/* ===== E-SHOP STYLES ===== */

/* Cart Icon in Header */
.cart-icon {
    position: relative;
    cursor: pointer;
    font-size: 22px;
    color: var(--primary-blue);
    transition: all 0.3s;
    padding: 8px;
    border-radius: 50%;
    background: rgba(26, 82, 118, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    flex-shrink: 0;
}

.cart-icon:hover {
    color: var(--red);
    background: rgba(231, 76, 60, 0.15);
    transform: scale(1.1);
}

.cart-count {
    position: absolute;
    top: -5px;
    right: -5px;
    background: var(--red);
    color: white;
    font-size: 11px;
    font-weight: 700;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    display: none;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 5px rgba(0,0,0,0.2);
    border: 2px solid white;
}

/* Add to Cart Button */
.btn-add-cart {
    width: 100%;
    padding: 12px;
    margin-top: 10px;
    background: linear-gradient(135deg, #1a5276, #154360);
    color: white;
    border: none;
    border-radius: 50px;
    font-weight: 700;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.btn-add-cart:hover {
    background: linear-gradient(135deg, #e74c3c, #c0392b);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(231, 76, 60, 0.4);
}

/* Cart Sidebar */
.cart-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
    z-index: 9998;
    backdrop-filter: blur(3px);
}

.cart-overlay.active {
    display: block;
}

.cart-sidebar {
    position: fixed;
    top: 0;
    right: -420px;
    width: 400px;
    max-width: 90vw;
    height: 100%;
    background: white;
    z-index: 9999;
    box-shadow: -5px 0 30px rgba(0,0,0,0.2);
    transition: right 0.4s ease;
    display: flex;
    flex-direction: column;
}

.cart-sidebar.active {
    right: 0;
}

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

.cart-header h3 {
    color: var(--primary-blue);
    font-size: 20px;
    margin: 0;
}

.cart-close {
    font-size: 28px;
    color: #7f8c8d;
    cursor: pointer;
    background: none;
    border: none;
    transition: color 0.3s;
}

.cart-close:hover {
    color: var(--red);
}

.cart-items {
    flex: 1;
    overflow-y: auto;
    padding: 20px;
}

.cart-empty {
    text-align: center;
    padding: 60px 20px;
    color: #7f8c8d;
}

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

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

.cart-item img {
    width: 60px;
    height: 60px;
    object-fit: contain;
    border-radius: 8px;
    background: #f5f6fa;
}

.cart-item-info {
    flex: 1;
}

.cart-item-info h4 {
    font-size: 14px;
    color: var(--dark);
    margin-bottom: 5px;
    line-height: 1.3;
}

.cart-item-price {
    color: var(--red);
    font-weight: 700;
    font-size: 14px;
    margin-bottom: 8px;
}

.cart-item-qty {
    display: flex;
    align-items: center;
    gap: 10px;
}

.cart-item-qty button {
    width: 28px;
    height: 28px;
    border: 1px solid #ddd;
    background: white;
    border-radius: 6px;
    cursor: pointer;
    font-weight: 700;
    transition: all 0.3s;
}

.cart-item-qty button:hover {
    background: var(--primary-blue);
    color: white;
    border-color: var(--primary-blue);
}

.cart-item-qty span {
    font-weight: 600;
    min-width: 20px;
    text-align: center;
}

.cart-item-remove {
    background: none;
    border: none;
    color: #95a5a6;
    cursor: pointer;
    font-size: 16px;
    padding: 5px;
    transition: color 0.3s;
}

.cart-item-remove:hover {
    color: var(--red);
}

.cart-footer {
    padding: 25px;
    border-top: 2px solid #eee;
    background: #f8f9fa;
}

.cart-total-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    font-size: 20px;
}

.cart-total-row strong {
    color: var(--red);
    font-size: 24px;
}

.btn-checkout {
    width: 100%;
    padding: 16px;
    background: linear-gradient(135deg, #27ae60, #219a52);
    color: white;
    border: none;
    border-radius: 50px;
    font-weight: 700;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.btn-checkout:hover {
    background: linear-gradient(135deg, #219a52, #1e8449);
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(39, 174, 96, 0.4);
}

/* Cart Notification */
.cart-notification {
    position: fixed;
    top: 100px;
    right: -300px;
    background: var(--primary-blue);
    color: white;
    padding: 15px 25px;
    border-radius: 50px;
    font-weight: 600;
    z-index: 10000;
    box-shadow: 0 5px 20px rgba(0,0,0,0.2);
    transition: right 0.4s ease;
    display: flex;
    align-items: center;
    gap: 10px;
}

.cart-notification.show {
    right: 30px;
}

.cart-notification i {
    font-size: 20px;
}

/* Checkout Modal */
.checkout-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.6);
    z-index: 10001;
    justify-content: center;
    align-items: center;
    padding: 20px;
    backdrop-filter: blur(5px);
}

.checkout-modal.active {
    display: flex;
}

.checkout-content {
    background: white;
    border-radius: 20px;
    max-width: 600px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    box-shadow: 0 25px 80px rgba(0,0,0,0.4);
    animation: checkoutSlideIn 0.3s ease;
}

@keyframes checkoutSlideIn {
    from { opacity: 0; transform: translateY(-30px) scale(0.95); }
    to { opacity: 1; transform: translateY(0) scale(1); }
}

.checkout-close {
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 32px;
    color: #7f8c8d;
    cursor: pointer;
    background: none;
    border: none;
    z-index: 10;
    transition: color 0.3s;
}

.checkout-close:hover {
    color: var(--red);
}

.checkout-body {
    padding: 40px;
}

.checkout-body h2 {
    color: var(--primary-blue);
    margin-bottom: 10px;
    font-size: 24px;
}

.checkout-body > p {
    color: #7f8c8d;
    margin-bottom: 25px;
}

.checkout-summary {
    background: #f8f9fa;
    padding: 20px;
    border-radius: 15px;
    margin-bottom: 25px;
}

.checkout-order-items {
    margin-bottom: 15px;
}

.checkout-item {
    display: flex;
    justify-content: space-between;
    padding: 8px 0;
    border-bottom: 1px dashed #ddd;
    font-size: 14px;
}

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

.checkout-total {
    display: flex;
    justify-content: space-between;
    padding-top: 15px;
    border-top: 2px solid var(--primary-blue);
    font-size: 18px;
    color: var(--red);
}

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

.checkout-form .form-group label {
    display: block;
    color: var(--dark);
    font-weight: 600;
    margin-bottom: 5px;
    font-size: 14px;
}

.checkout-form .form-group label .required {
    color: var(--red);
}

.checkout-form input,
.checkout-form textarea,
.checkout-form select {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid #e0e0e0;
    border-radius: 10px;
    font-size: 15px;
    font-family: inherit;
    transition: border-color 0.3s;
}

.checkout-form input:focus,
.checkout-form textarea:focus,
.checkout-form select:focus {
    outline: none;
    border-color: var(--primary-blue);
}

.checkout-form textarea {
    min-height: 80px;
    resize: vertical;
}

.bank-options {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin-top: 8px;
}

@media (min-width: 500px) {
    .bank-options {
        grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
    }
}

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

.bank-option {
    position: relative;
}

.bank-option input {
    position: absolute;
    opacity: 0;
}

.bank-option label {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    padding: 15px 10px;
    border: 2px solid #e0e0e0;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s;
    text-align: center;
    font-size: 13px;
    font-weight: 600;
}

.bank-option input:checked + label {
    border-color: var(--primary-blue);
    background: #e8f4f8;
    color: var(--primary-blue);
}

.bank-option label i {
    font-size: 24px;
}

.checkout-submit {
    width: 100%;
    padding: 16px;
    margin-top: 10px;
    background: linear-gradient(135deg, var(--red), var(--dark-red));
    color: white;
    border: none;
    border-radius: 50px;
    font-weight: 700;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.checkout-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(231, 76, 60, 0.4);
}

.checkout-success {
    display: none;
    text-align: center;
    padding: 40px 20px;
}

.checkout-success i {
    font-size: 80px;
    color: #27ae60;
    margin-bottom: 20px;
}

.checkout-success h3 {
    color: var(--primary-blue);
    font-size: 24px;
    margin-bottom: 15px;
}

.checkout-success p {
    color: #7f8c8d;
    margin-bottom: 10px;
}

.order-id {
    background: #f8f9fa;
    padding: 15px 25px;
    border-radius: 10px;
    font-family: monospace;
    font-size: 18px;
    color: var(--red);
    font-weight: 700;
    display: inline-block;
    margin: 15px 0;
}

@media (max-width: 768px) {
    .cart-sidebar {
        width: 100%;
        right: -100%;
    }

    .bank-options {
        grid-template-columns: 1fr;
    }

    .checkout-content {
        margin: 10px;
        max-height: 95vh;
    }

    .checkout-body {
        padding: 25px;
    }
}


/* ===== IBAN INFO BOX ===== */
.iban-info-box {
    background: linear-gradient(135deg, #f8f9fa 0%, #e8f4f8 100%);
    border: 2px solid var(--primary-blue);
    border-radius: 15px;
    padding: 30px;
    margin-bottom: 20px;
}

.iban-info-box h3 {
    color: var(--primary-blue);
    margin-bottom: 15px;
    font-size: 20px;
}

.iban-detail {
    padding: 12px 0;
    border-bottom: 1px dashed #ddd;
    font-size: 15px;
    color: var(--dark);
}

.iban-detail:last-of-type {
    border-bottom: none;
}

.iban-code {
    font-family: 'Courier New', monospace;
    font-size: 16px;
    font-weight: 700;
    color: var(--primary-blue);
    background: white;
    padding: 5px 10px;
    border-radius: 5px;
    letter-spacing: 1px;
}

.btn-copy {
    background: var(--primary-blue);
    color: white;
    border: none;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 12px;
    cursor: pointer;
    margin-left: 10px;
    transition: all 0.3s;
}

.btn-copy:hover {
    background: var(--red);
    transform: scale(1.05);
}

/* Add Viva Wallet to bank options */
.bank-options {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin-top: 8px;
}

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


/* ===== IBAN DISPLAY STYLES ===== */
.iban-box {
    display: flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, #f8f9fa, #e8f4f8);
    padding: 15px 20px;
    border-radius: 12px;
    border: 2px dashed var(--primary-blue);
    font-family: 'Courier New', monospace;
    font-size: 16px;
    font-weight: 700;
    color: var(--primary-blue);
    letter-spacing: 1px;
    word-break: break-all;
}

.iban-box span {
    flex: 1;
}

.btn-copy-iban {
    background: var(--primary-blue);
    color: white;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 10px;
    cursor: pointer;
    font-size: 16px;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.btn-copy-iban:hover {
    background: var(--red);
    transform: scale(1.1);
}

.iban-hint {
    font-size: 13px;
    color: #7f8c8d;
    margin-top: 10px;
    font-style: italic;
}

#iban-display {
    animation: fadeIn 0.3s ease;
}

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


/* ===== DELIVERY & SHIPPING STYLES ===== */
.delivery-info {
    background: linear-gradient(135deg, #e8f4f8, #f0f8ff);
    padding: 20px;
    border-radius: 15px;
    margin-bottom: 20px;
    border-left: 4px solid var(--primary-blue);
}

.delivery-item {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
    font-size: 14px;
    color: var(--dark);
}

.delivery-item:last-child {
    margin-bottom: 0;
}

.delivery-item i {
    font-size: 20px;
    color: var(--primary-blue);
    width: 30px;
    text-align: center;
}

.shipping-display {
    background: #f8f9fa;
    padding: 20px;
    border-radius: 15px;
    margin: 20px 0;
    border: 2px solid #e0e0e0;
    animation: fadeIn 0.3s ease;
}

.shipping-row {
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
    border-bottom: 1px dashed #ddd;
    font-size: 15px;
}

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

.shipping-total {
    font-size: 18px;
    color: var(--red);
    padding-top: 15px;
    margin-top: 10px;
    border-top: 2px solid var(--primary-blue);
}

#co-region {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid #e0e0e0;
    border-radius: 10px;
    font-size: 15px;
    font-family: inherit;
    background: white;
    cursor: pointer;
    transition: border-color 0.3s;
}

#co-region:focus {
    outline: none;
    border-color: var(--primary-blue);
}
html, body {
    overflow-x: hidden;
    max-width: 100%;
}
.hero-badges {
    display: flex;
    gap: 10px;
    justify-content: center;
    margin-bottom: 25px;
    flex-wrap: wrap;
    padding-bottom: 10px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 260px;
    min-height: 48px;
    background: rgba(255,255,255,0.15);
    color: white;
    padding: 10px 18px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 13px;
    white-space: nowrap;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.3);
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    transition: all 0.3s ease;
}

.hero-badge:hover {
    background: rgba(255,255,255,0.15);
    border-color: rgba(255,255,255,0.3);
    color: white;
    transform: none;
    cursor: default;
}
/* ===== PC100 HOME HERO REFRESH ===== */
.pc-hero {
    position: relative;
    min-height: 680px;
    padding: 90px 0 75px;
    overflow: hidden;
    background:
        radial-gradient(circle at 15% 15%, rgba(52, 152, 219, .22), transparent 34%),
        radial-gradient(circle at 85% 70%, rgba(241, 196, 15, .13), transparent 28%),
        linear-gradient(135deg, #071e33 0%, #0c3658 48%, #15547b 100%);
}
.pc-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    opacity: .13;
    background-image: linear-gradient(rgba(255,255,255,.18) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.18) 1px, transparent 1px);
    background-size: 46px 46px;
    mask-image: linear-gradient(to bottom, black, transparent 85%);
}
.pc-hero-grid {
    position: relative;
    z-index: 1;
    display: grid !important;
    grid-template-columns: minmax(0, 1.12fr) minmax(360px, .88fr) !important;
    align-items: center;
    gap: 80px;
}
.pc-hero-copy { color: #fff; }
.pc-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    margin-bottom: 22px;
    padding: 9px 15px;
    border: 1px solid rgba(255,255,255,.22);
    border-radius: 999px;
    color: #dbefff;
    background: rgba(255,255,255,.08);
    backdrop-filter: blur(10px);
    font-size: 14px;
    font-weight: 700;
    letter-spacing: .25px;
}
.pc-eyebrow i { color: #f1c40f; }
.pc-hero-copy h1 {
    max-width: 720px;
    margin: 0 0 24px;
    color: #fff;
    font-size: clamp(44px, 5.8vw, 76px);
    line-height: 1.02;
    letter-spacing: -2.7px;
    font-weight: 850;
}
.pc-hero-copy h1 span { color: #f4cf3e; }
.pc-hero-lead {
    max-width: 690px;
    margin: 0 0 32px;
    color: #c9deed;
    font-size: clamp(17px, 1.6vw, 20px);
    line-height: 1.72;
}
.pc-hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 34px; }
.pc-hero-actions .btn { min-width: 178px; justify-content: center; padding: 15px 24px; border-radius: 12px; font-size: 16px; }
.pc-btn-main { color: #102a3e !important; background: #f4cf3e; box-shadow: 0 12px 32px rgba(241,196,15,.25); }
.pc-btn-main:hover { color: #102a3e !important; background: #ffe16b; transform: translateY(-3px); }
.pc-btn-ghost { color: #fff !important; border: 1px solid rgba(255,255,255,.35); background: rgba(255,255,255,.08); backdrop-filter: blur(10px); }
.pc-btn-ghost:hover { color: #fff !important; background: rgba(255,255,255,.16); transform: translateY(-3px); }
.pc-trust-row { display: flex; flex-wrap: wrap; gap: 15px 22px; color: #d8e9f5; font-size: 14px; font-weight: 650; }
.pc-trust-row span { display: inline-flex; align-items: center; gap: 7px; }
.pc-trust-row i { color: #50d890; }
.pc-hero-visual { position: relative; min-height: 470px; display: grid; place-items: center; }
.pc-glow { position: absolute; width: 390px; height: 390px; border-radius: 50%; background: rgba(44,151,219,.28); filter: blur(55px); }
.pc-store-card {
    position: relative;
    z-index: 2;
    width: min(100%, 350px);
    padding: 34px 30px 30px;
    border: 1px solid rgba(255,255,255,.22);
    border-radius: 28px;
    color: #fff;
    text-align: center;
    background: linear-gradient(145deg, rgba(255,255,255,.18), rgba(255,255,255,.07));
    box-shadow: 0 30px 70px rgba(0,0,0,.32);
    backdrop-filter: blur(18px);
}
.pc-store-card img { width: 130px; height: 130px; object-fit: contain; filter: drop-shadow(0 12px 18px rgba(0,0,0,.2)); }
.pc-store-title { margin-top: 11px; color: #f4cf3e; font-size: 39px; line-height: 1; font-weight: 900; letter-spacing: 3px; }
.pc-store-subtitle { margin-top: 7px; color: #d9eaf6; font-size: 14px; font-weight: 750; letter-spacing: 2px; }
.pc-store-divider { width: 55px; height: 3px; margin: 20px auto; border-radius: 4px; background: #f4cf3e; }
.pc-store-card p { margin: 0 0 10px; color: #d8e7f1; font-size: 14px; }
.pc-store-card a { color: #fff; text-decoration: none; font-size: 19px; font-weight: 800; }
.pc-store-card i { margin-right: 8px; color: #f4cf3e; }
.pc-float-card {
    position: absolute;
    z-index: 3;
    display: flex;
    align-items: center;
    gap: 12px;
    min-width: 190px;
    padding: 14px 17px;
    border: 1px solid rgba(255,255,255,.7);
    border-radius: 16px;
    color: #23445d;
    background: rgba(255,255,255,.94);
    box-shadow: 0 18px 40px rgba(0,0,0,.2);
    font-size: 12px;
    line-height: 1.35;
}
.pc-float-card > i { color: #1a6f9f; font-size: 25px; }
.pc-float-card strong { font-size: 13px; }
.pc-float-one { top: 55px; right: -25px; }
.pc-float-two { bottom: 50px; left: -45px; }
@media (max-width: 1000px) {
    .pc-hero { padding: 75px 0 65px; }
    .pc-hero-grid { grid-template-columns: 1fr !important; gap: 45px; text-align: center; }
    .pc-hero-copy h1, .pc-hero-lead { margin-left: auto; margin-right: auto; }
    .pc-hero-actions, .pc-trust-row { justify-content: center; }
    .pc-hero-visual { min-height: 450px; width: min(100%, 520px); margin: 0 auto; }
}
@media (max-width: 600px) {
    .pc-hero { min-height: auto; padding: 60px 0 45px; }
    .pc-hero-copy h1 { font-size: 43px; letter-spacing: -1.7px; }
    .pc-hero-lead { font-size: 16px; line-height: 1.65; }
    .pc-hero-actions { display: grid; grid-template-columns: 1fr; }
    .pc-trust-row { flex-direction: column; align-items: center; gap: 10px; }
    .pc-hero-visual { min-height: 410px; }
    .pc-store-card { width: 88%; padding: 28px 20px 25px; }
    .pc-float-card { min-width: 165px; padding: 11px 13px; }
    .pc-float-one { top: 25px; right: -5px; }
    .pc-float-two { bottom: 18px; left: -5px; }
}
/* ===== PC100 HEADER REFRESH ===== */
.header {
    background: rgba(255, 255, 255, .94);
    border-bottom: 1px solid rgba(26, 82, 118, .1);
    box-shadow: 0 8px 30px rgba(13, 48, 72, .08);
    backdrop-filter: blur(18px) saturate(150%);
    -webkit-backdrop-filter: blur(18px) saturate(150%);
}
.header.scrolled {
    box-shadow: 0 12px 36px rgba(13, 48, 72, .14);
}
.header::after {
    content: '';
    position: absolute;
    right: 0;
    bottom: -1px;
    left: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, rgba(46,134,193,.45), rgba(241,196,15,.65), transparent);
}
.header .container {
    max-width: 1380px;
    min-height: 76px;
    padding: 9px 24px;
}
.logo { gap: 10px; }
.logo img {
    width: 52px;
    height: 52px;
    object-fit: contain;
    filter: drop-shadow(0 5px 8px rgba(21,67,96,.14));
}
.logo-text h1 {
    color: #c93c31;
    font-size: 25px;
    letter-spacing: -.6px;
}
.logo-text span {
    color: #527085;
    font-size: 10px;
    letter-spacing: 1px;
}
.nav {
    gap: 2px;
    margin-right: 12px;
}
.nav a {
    padding: 10px 11px;
    border-radius: 10px;
    color: #355267;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .1px;
    overflow: visible;
}
.nav a::before {
    inset: auto 12px 3px;
    width: auto;
    height: 2px;
    border-radius: 4px;
    background: #e74c3c;
    transform: scaleX(0);
}
.nav a:hover::before,
.nav a.active::before { transform: scaleX(1); }
.nav a:hover,
.nav a.active {
    color: #174d70;
    background: rgba(46,134,193,.075);
    box-shadow: none;
    transform: none;
}
.nav a.active { color: #c83f34; }
.nav-icon {
    width: 15px;
    color: #2e86c1;
    font-size: 12px;
}
.nav a.active .nav-icon { color: #e74c3c; }
.nav a:hover .nav-icon { transform: translateY(-1px); }
.cart-icon {
    width: 40px;
    height: 40px;
    padding: 0;
    border: 1px solid rgba(26,82,118,.12);
    border-radius: 12px;
    color: #1a5276;
    background: #f3f8fb;
    font-size: 17px;
}
.cart-icon:hover {
    color: #fff;
    background: #1a5276;
    border-color: #1a5276;
    transform: translateY(-2px);
    box-shadow: 0 8px 18px rgba(26,82,118,.2);
}
.mobile-menu-btn {
    border: 1px solid rgba(26,82,118,.12);
    border-radius: 12px;
    background: #f3f8fb;
}
@media (max-width: 1180px) {
    .nav { display: none; }
    .mobile-menu-btn { display: flex; }
    .header .container { min-height: 70px; }
    .nav.active {
        display: flex;
        top: calc(100% + 8px);
        border: 1px solid rgba(26,82,118,.1);
        background: rgba(255,255,255,.98);
        box-shadow: 0 24px 60px rgba(15,48,70,.18);
        backdrop-filter: blur(18px);
    }
    .nav.active a::before { display: none; }
    .nav.active a:hover,
    .nav.active a.active {
        color: #174d70;
        background: #edf5fa;
        box-shadow: none;
        transform: translateX(4px);
    }
}
@media (max-width: 520px) {
    .header .container { min-height: 66px; padding: 7px 14px; }
    .logo img { width: 46px; height: 46px; }
    .logo-text h1 { font-size: 22px; }
    .logo-text span { font-size: 9px; }
    .cart-icon { width: 38px; height: 38px; margin-right: 8px !important; }
    .mobile-menu-btn { width: 38px; height: 38px; }
}