* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    color: #333;
}

/* Language Switcher */
.language-switcher {
    position: absolute;
    top: 1rem;
    right: 1rem;
    display: flex;
    gap: 0.5rem;
    z-index: 100;
}

.lang-btn {
    padding: 0.4rem 0.8rem;
    border: 2px solid #0066cc;
    background: white;
    color: #0066cc;
    cursor: pointer;
    font-weight: bold;
    border-radius: 5px;
    transition: all 0.3s ease;
}

.lang-btn:hover {
    background: #e6f2ff;
}

.lang-btn.active {
    background: #0066cc;
    color: white;
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-around;
    width: 30px;
    height: 25px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 101;
    position: absolute;
    top: 1rem;
    left: 1rem;
}

.mobile-menu-toggle span {
    width: 30px;
    height: 3px;
    background: #0066cc;
    border-radius: 3px;
    transition: all 0.3s ease;
}

.mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(7px, 7px);
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

/* Mobile Responsive Styles */
@media (max-width: 768px) {
    .mobile-menu-toggle {
        display: flex;
    }
    
    .language-switcher {
        position: absolute;
        top: 1rem;
        right: 1rem;
        flex-direction: row;
        gap: 0;
    }
    
    .language-switcher .lang-btn {
        display: none;
    }
    
    .language-switcher .lang-btn.active {
        display: block;
        padding: 0.5rem 1rem;
    }
    
    .home nav,
    .strings nav,
    .contact nav,
    .order nav {
        position: fixed;
        top: 0;
        left: -100%;
        width: 70%;
        max-width: 300px;
        height: 100vh;
        flex-direction: column;
        justify-content: flex-start;
        padding-top: 80px;
        background: #cce5ff;
        box-shadow: 2px 0 10px rgba(0,0,0,0.1);
        transition: left 0.3s ease;
        z-index: 99;
    }
    
    .home nav.mobile-active,
    .strings nav.mobile-active,
    .contact nav.mobile-active,
    .order nav.mobile-active {
        left: 0;
    }
    
    .home nav a,
    .strings nav a,
    .contact nav a,
    .order nav a {
        display: block;
        margin: 0;
        padding: 1rem 1.5rem;
        border-bottom: 1px solid rgba(0, 102, 204, 0.2);
        text-align: left;
    }
    
    .home nav a:hover,
    .strings nav a:hover,
    .contact nav a:hover,
    .order nav a:hover {
        background: rgba(0, 102, 204, 0.1);
        text-decoration: none;
    }
}

/* Light theme pages */
body.home,
body.contact,
body.strings,
body.order {
    background: #f0f8ff;
}

.home header,
.strings header,
.contact header,
.order header {
    background: #e6f2ff;
    color: #0066cc;
    padding: 2rem;
    text-align: center;
    border-bottom: 3px solid #0066cc;
    position: relative;
}

.home nav,
.strings nav,
.contact nav,
.order nav {
    background: #cce5ff;
    padding: 1rem;
    text-align: center;
}

.home nav a,
.strings nav a,
.contact nav a,
.order nav a {
    color: #0066cc;
    margin: 0 1rem;
    text-decoration: none;
    font-weight: bold;
}

.home nav a:hover,
.strings nav a:hover,
.contact nav a:hover,
.order nav a:hover {
    text-decoration: underline;
}

.home .container,
.strings .container,
.contact .container,
.order .container {
    max-width: 1200px;
    margin: 2rem auto;
    padding: 0 1rem;
}

.home .section,
.strings .section,
.contact .section,
.order .section {
    margin: 2rem 0;
    padding: 2rem;
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 102, 204, 0.1);
}

.home h2,
.strings h2,
.contact h2,
.order h2 {
    color: #0066cc;
    margin-bottom: 1.5rem;
}

.home .cards-grid,
.strings .cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.home .card,
.strings .card {
    background: linear-gradient(135deg, #e6f2ff 0%, #cce5ff 100%);
    padding: 2rem;
    border-radius: 8px;
    border: 2px solid #99ccff;
    text-align: center;
    box-shadow: 0 4px 12px rgba(0, 102, 204, 0.15);
}

.home .card h3,
.strings .card h3 {
    color: #0066cc;
    margin-bottom: 1rem;
}

.home .card p,
.strings .card p {
    color: #333;
    margin-bottom: 1.5rem;
}

.strings .section-header {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    align-items: flex-start;
    flex-wrap: wrap;
}

.strings .filter-buttons {
    display: flex;
    gap: 0.75rem;
    align-items: center;
}

.strings .filter-btn {
    background: white;
    border: 2px solid #0066cc;
    color: #0066cc;
    padding: 0.65rem 1.25rem;
    border-radius: 999px;
    font-weight: bold;
    box-shadow: 0 2px 8px rgba(0, 102, 204, 0.15);
}

.strings .filter-btn.active {
    background: #0066cc;
    color: white;
}

.strings .string-card {
    text-align: left;
}

.strings .card-top {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    align-items: flex-start;
}

.strings .sport-tag {
    background: #0066cc;
    color: white;
    padding: 0.3rem 0.7rem;
    border-radius: 12px;
    font-size: 0.9rem;
    text-transform: capitalize;
}

.strings .color-row {
    display: flex;
    gap: 0.35rem;
    flex-wrap: wrap;
    margin-top: 0.5rem;
}

.strings .pill {
    background: white;
    color: #0066cc;
    border: 1px solid #99ccff;
    border-radius: 999px;
    padding: 0.2rem 0.6rem;
    font-size: 0.85rem;
}

.strings .spec-list {
    list-style: none;
    padding: 0;
    margin: 1rem 0;
}

.strings .spec-list li {
    margin: 0.25rem 0;
}

.strings .notes {
    margin: 0;
}

.home button,
.strings button,
.contact button,
.order button {
    background: #0066cc;
    color: white;
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 1rem;
    transition: 0.3s;
}

.home button:hover,
.strings button:hover,
.contact button:hover,
.order button:hover {
    background: #0052a3;
}

.home .cta-button,
.strings .cta-button,
.contact .cta-button,
.order .cta-button {
    margin-top: 1rem;
}

.home footer,
.strings footer,
.contact footer,
.order footer {
    background: #cce5ff;
    color: #0066cc;
    text-align: center;
    padding: 1rem;
    margin-top: 2rem;
    border-top: 3px solid #0066cc;
}

.order .form-group {
    margin-bottom: 1.5rem;
}

.order .form-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1rem 1.5rem;
}

.order label,
.contact label {
    display: block;
    font-weight: bold;
    margin-bottom: 0.5rem;
}

.order select,
.order input,
.order textarea,
.contact select,
.contact input,
.contact textarea {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid #bdc3c7;
    border-radius: 4px;
    font-size: 1rem;
}

.order .options-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1rem;
    margin-bottom: 1rem;
}

.order .tight-grid {
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
}

.order .option-card {
    border: 1px solid #bdc3c7;
    padding: 1rem;
    border-radius: 4px;
    cursor: pointer;
    transition: 0.3s;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.order .option-card:hover {
    background: #ecf0f1;
    border-color: #3498db;
}

.order .option-card input {
    width: auto;
}

.order button {
    padding: 1rem 2rem;
}

.order .string-details {
    margin-top: 0.75rem;
    padding: 0.75rem;
    border: 1px solid #bdc3c7;
    border-radius: 4px;
    background: #f8fbff;
}

.order .detail-row {
    display: flex;
    gap: 0.5rem;
    align-items: center;
    margin: 0.15rem 0;
    flex-wrap: wrap;
}

.order .pill-row {
    display: flex;
    gap: 0.35rem;
    flex-wrap: wrap;
}

.order .pill {
    background: white;
    color: #0066cc;
    border: 1px solid #99ccff;
    border-radius: 999px;
    padding: 0.2rem 0.6rem;
    font-size: 0.85rem;
}

.order .helper-text {
    margin-top: 0.35rem;
    color: #555;
    font-size: 0.9rem;
}

.order .form-status {
    margin-top: 0.75rem;
    font-weight: bold;
    color: #0066cc;
}

.order .form-status.success {
    color: #27ae60;
}

.order .form-status.error {
    color: #c0392b;
}

.option-card.inline {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    margin-right: 0.5rem;
    margin-bottom: 0.5rem;
}

.contact .section form .form-group {
    margin-bottom: 1.25rem;
}

.order .price {
    font-weight: bold;
    color: #27ae60;
    font-size: 1.2rem;
}

.order footer {
    margin-top: 2rem;
}
