/*
    components.css
    Reusable UI components: header, menu, cart, modals, buttons
    Codex Studio - Minimalist Black & White Design
*/

/* ========== Header / Topbar ========== */
.topbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 28px;
    border-bottom: 1px solid #eee;
    position: sticky;
    top: 0;
    background: var(--bg);
    z-index: 50;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
}

.left-area,
.right-area {
    display: flex;
    align-items: center;
    gap: 4px;
}

.brand {
    font-weight: 800;
    font-size: 32px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--fg);
    font-family: 'Helvetica Neue', Arial, sans-serif;
    transition: transform 0.3s ease;
}

.brand:hover {
    transform: scale(1.02);
}

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

.icon-btn {
    background: transparent;
    border: 0;
    padding: 8px;
    cursor: pointer;
}

.icon-btn svg {
    display: block;
}

.burger {
    display: inline-block;
    width: 26px;
    height: 18px;
    position: relative;
}

.burger::before,
.burger::after,
.burger span {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--fg);
}

.burger::before {
    top: 0;
}

.burger::after {
    bottom: 0;
}

.burger span {
    top: 50%;
    transform: translateY(-50%);
}

.instagram {
    display: flex;
    align-items: center;
}

.instagram a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 44px;
    min-height: 44px;
}

/* ========== Search Box ========== */
.search-box {
    position: absolute;
    top: 100%;
    right: 0;
    margin-top: 8px;
    background: #fff;
    border: 1px solid #000;
    border-radius: 8px;
    padding: 12px;
    width: 280px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    z-index: 100;
}

.search-box input {
    width: 100%;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: 16px;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

.search-box input:focus {
    outline: none;
    border-color: #000;
}

.search-buttons {
    margin-top: 12px;
    display: flex;
    gap: 8px;
}

.search-btn-primary {
    flex: 1;
    padding: 8px;
    background: #000;
    color: #fff;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 14px;
    transition: opacity 0.3s ease;
}

.search-btn-primary:hover {
    opacity: 0.8;
}

.search-btn-secondary {
    flex: 1;
    padding: 8px;
    background: #f5f5f5;
    color: #000;
    border: 1px solid #ddd;
    border-radius: 4px;
    cursor: pointer;
    font-size: 14px;
    transition: background 0.3s ease;
}

.search-btn-secondary:hover {
    background: #eee;
}

.search-input {
    width: 100%;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: 16px;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

.search-input:focus {
    outline: none;
    border-color: #000;
}

/* Search History Dropdown */
.search-history-dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    margin-top: 4px;
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 6px;
    max-height: 300px;
    overflow-y: auto;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    z-index: 1000;
}

.search-history-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 12px;
    border-bottom: 1px solid #eee;
    font-size: 12px;
    font-weight: 600;
    color: #666;
}

.search-history-clear-all {
    background: none;
    border: none;
    color: #000;
    font-size: 11px;
    font-weight: 500;
    cursor: pointer;
    padding: 4px 8px;
    border-radius: 4px;
    transition: background 0.2s ease;
}

.search-history-clear-all:hover {
    background: #f5f5f5;
}

.search-history-item {
    display: flex;
    align-items: center;
    padding: 8px 12px;
    border-bottom: 1px solid #f5f5f5;
    transition: background 0.2s ease;
}

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

.search-history-item:hover {
    background: #f9f9f9;
}

.search-history-query {
    flex: 1;
    display: flex;
    align-items: center;
    gap: 8px;
    background: none;
    border: none;
    padding: 4px;
    text-align: left;
    cursor: pointer;
    font-size: 14px;
    color: #000;
    font-family: inherit;
}

.search-history-query svg {
    flex-shrink: 0;
    color: #666;
}

.search-history-query span {
    flex: 1;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.search-history-delete {
    background: none;
    border: none;
    padding: 4px;
    cursor: pointer;
    color: #999;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 4px;
    transition: all 0.2s ease;
    flex-shrink: 0;
}

.search-history-delete:hover {
    background: #f5f5f5;
    color: #000;
}

.search-history-empty {
    padding: 20px;
    text-align: center;
    color: #999;
    font-size: 14px;
}

/* ========== Side Menu ========== */
.side-menu {
    position: fixed;
    left: -100%;
    top: 0;
    width: 320px;
    height: 100%;
    background: var(--bg);
    color: var(--fg);
    box-shadow: 2px 0 12px rgba(0, 0, 0, 0.06);
    transition: left 0.28s ease;
    z-index: 70;
    padding-top: 80px;
    overflow-y: auto;
}

.side-menu.open {
    left: 0;
}

.side-menu ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.side-menu li {
    padding: 18px 24px;
    border-bottom: 1px solid #f0f0f0;
}

.side-menu a {
    color: var(--fg);
    text-decoration: none;
    font-size: 18px;
    display: block;
    padding: 8px 0;
}

.close-menu {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 20px;
    padding: 12px;
    min-width: 44px;
    min-height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.side-menu-footer {
    position: absolute;
    bottom: 24px;
    left: 0;
    right: 0;
    padding: 0 24px;
    text-align: left;
    font-size: 16px;
    color: #000;
    font-style: italic;
    letter-spacing: 0.02em;
    font-weight: 500;
}

.menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
    opacity: 0;
    visibility: hidden;
    transition: all 0.28s ease;
    z-index: 65;
}

.menu-overlay.show {
    opacity: 1;
    visibility: visible;
}

/* ========== Shopping Cart Drawer ========== */
.cart-drawer {
    position: fixed;
    right: -100%;
    top: 0;
    width: 420px;
    height: 100%;
    background: var(--bg);
    color: var(--fg);
    box-shadow: -6px 0 18px rgba(0, 0, 0, 0.08);
    transition: right 0.28s ease;
    z-index: 70;
    display: flex;
    flex-direction: column;
    overflow-y: auto;
}

.cart-drawer.open {
    right: 0;
}

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

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

.cart-footer {
    padding: 14px 20px;
    border-top: 1px solid #f0f0f0;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.cart-total {
    font-weight: 600;
}

.checkout-btn {
    background: #000;
    color: #fff;
    padding: 10px 14px;
    text-decoration: none;
    border-radius: 6px;
}

.cart-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
    opacity: 0;
    visibility: hidden;
    transition: all 0.28s ease;
    z-index: 65;
}

.cart-overlay.show {
    opacity: 1;
    visibility: visible;
}

.cart-item {
    display: flex;
    gap: 12px;
    padding: 10px 0;
    border-bottom: 1px solid #f6f6f6;
}

.cart-item img {
    width: 80px;
    height: 120px;
    object-fit: cover;
    border-radius: 6px;
    background: #eee;
}

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

.qty-controls {
    display: flex;
    gap: 8px;
    align-items: center;
}

.qty-controls button {
    width: 28px;
    height: 28px;
    border-radius: 4px;
    border: 1px solid #ddd;
    background: #fff;
    cursor: pointer;
}

.empty-cart {
    text-align: center;
    padding: 2rem;
    color: #666;
}

/* Cart Item Components */
.cart-item-container {
    display: flex;
    gap: 12px;
    padding: 12px 0;
    border-bottom: 1px solid #f0f0f0;
    align-items: center;
}

.cart-item-image {
    width: 80px;
    height: 120px;
    object-fit: cover;
    border-radius: 6px;
    background: #f5f5f5;
    flex-shrink: 0;
    display: block;
}

.cart-item-details-wrapper {
    flex: 1;
    min-width: 0;
}

.cart-item-name {
    font-weight: 500;
    margin-bottom: 4px;
    font-size: 14px;
}

.cart-item-size {
    font-size: 12px;
    color: #666;
    margin-bottom: 4px;
}

.cart-item-price-text {
    font-size: 13px;
    color: #666;
    margin-bottom: 8px;
}

.cart-item-controls {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
}

.cart-item-qty-wrapper {
    display: flex;
    align-items: center;
    gap: 8px;
    background: #f8f8f8;
    padding: 4px 8px;
    border-radius: 6px;
}

.cart-qty-btn {
    width: 28px;
    height: 28px;
    border: none;
    background: #fff;
    border-radius: 4px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.cart-qty-text {
    min-width: 24px;
    text-align: center;
    font-weight: 500;
    font-size: 14px;
}

.cart-remove-btn {
    padding: 6px 12px;
    border: 1px solid #ff4444;
    color: #ff4444;
    background: #fff;
    border-radius: 6px;
    font-size: 12px;
    cursor: pointer;
    transition: all 0.2s;
}

.cart-remove-btn:hover {
    background: #ff4444;
    color: #fff;
}

.cart-item-total {
    font-weight: 500;
    font-size: 14px;
}

/* ========== Login Modal ========== */
.login-modal,
#loginStateLoggedIn {
    display: none;
}

.login-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    align-items: center;
    justify-content: center;
    z-index: 100;
    padding: 20px;
}

.login-modal.show {
    display: flex;
}

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

.login-container {
    background: #fff;
    border-radius: 12px;
    padding: 40px;
    width: 100%;
    max-width: 400px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
    position: relative;
    animation: slideDown 0.3s ease;
}

.login-modal-content {
    background: #fff;
    border-radius: 12px;
    padding: 40px;
    width: 90%;
    max-width: 400px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
    position: relative;
}

.login-modal-title {
    margin: 0 0 8px;
    font-size: 1.8em;
    text-align: center;
}

.login-modal-subtitle {
    margin: 0 0 32px;
    text-align: center;
    color: #666;
    font-size: 0.9em;
}

.login-container h2 {
    margin: 0 0 8px;
    font-size: 1.8em;
    text-align: center;
}

.login-container p {
    margin: 0 0 32px;
    text-align: center;
    color: #666;
    font-size: 0.9em;
}

.login-options {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 32px;
}

.login-container button {
    width: 100%;
    padding: 12px;
    border-radius: 8px;
    cursor: pointer;
    font-size: 1em;
    font-weight: 500;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    border: 1.5px solid;
}

.login-btn-facebook {
    width: 100%;
    padding: 12px;
    background: #fff;
    color: #000;
    border: 1.5px solid #000;
    border-radius: 8px;
    cursor: pointer;
    font-size: 1em;
    font-weight: 500;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.login-btn-facebook:hover {
    background: #f5f5f5;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.login-btn-apple {
    width: 100%;
    padding: 12px;
    background: #000;
    color: #fff;
    border: 1.5px solid #000;
    border-radius: 8px;
    cursor: pointer;
    font-size: 1em;
    font-weight: 500;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.login-btn-apple:hover {
    background: #333;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.login-btn-instagram {
    width: 100%;
    padding: 12px;
    background: #fff;
    color: #000;
    border: 1.5px solid #000;
    border-radius: 8px;
    cursor: pointer;
    font-size: 1em;
    font-weight: 500;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.login-btn-instagram:hover {
    background: #f5f5f5;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.login-btn-guest {
    width: 100%;
    padding: 14px 20px;
    margin-bottom: 12px;
    background: #f5f5f5;
    color: #666;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 500;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: all 0.2s ease;
}

.login-btn-guest:hover {
    background: #e8e8e8;
    border-color: #999;
    color: #333;
}

.login-btn-guest:hover svg circle,
.login-btn-guest:hover svg path {
    stroke: #333;
}

.login-container #appleLogin {
    background: #000;
    color: #fff;
    border-color: #000;
}

.login-container #appleLogin:hover {
    background: #333;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.login-container #instagramLogin {
    background: #fff;
    color: #000;
    border-color: #000;
}

.login-container #instagramLogin:hover {
    background: #f5f5f5;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.login-success-message {
    display: none;
    text-align: center;
    padding: 32px 20px;
    margin-bottom: 24px;
    background: #f5f5f5;
    border: 1px solid #000;
    border-radius: 12px;
}

.login-success-message svg {
    margin-bottom: 16px;
}

.login-success-message svg circle {
    stroke: #000;
}

.login-success-message svg path {
    stroke: #000;
}

.success-text {
    font-size: 24px;
    font-weight: 600;
    color: #000;
    margin: 0 0 8px 0;
}

.success-subtext {
    font-size: 14px;
    color: #666;
    margin: 0;
}

.user-info {
    text-align: center;
    padding: 32px 20px;
    margin-bottom: 24px;
}

.user-avatar {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    background: #f5f5f5;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid #ddd;
}

.user-name {
    font-size: 20px;
    font-weight: 600;
    color: #000;
    margin: 0 0 8px 0;
}

.user-type {
    font-size: 14px;
    color: #666;
    margin: 0;
    text-transform: capitalize;
}

.logout-btn {
    width: 100%;
    padding: 14px 20px;
    background: #000;
    color: #fff;
    border: none;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
}

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

.login-terms {
    margin-top: 32px;
    text-align: center;
    font-size: 0.8em;
    color: #999;
}

.login-terms a {
    color: #000;
    text-decoration: underline;
}

.login-container .close-btn {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    opacity: 0.6;
    transition: opacity 0.2s ease;
}

.login-container .close-btn:hover {
    opacity: 1;
}

.close-btn {
    font-size: 20px;
    padding: 8px 12px;
    cursor: pointer;
}

/* ========== No Results Modal ========== */
.no-results-modal {
    display: flex;
    animation: fadeIn 0.2s ease;
}

.no-results-modal-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    z-index: 1000;
    align-items: center;
    justify-content: center;
}

.no-results-content {
    animation: slideUp 0.3s ease;
}

.no-results-content-box {
    background: #fff;
    border-radius: 0;
    padding: 48px 40px;
    max-width: 420px;
    width: 90%;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    position: relative;
    text-align: center;
}

.no-results-close-btn {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    opacity: 0.6;
    transition: opacity 0.2s ease;
}

.no-results-close-btn:hover {
    opacity: 1;
}

.no-results-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 24px;
    border: 3px solid #000;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.no-results-title {
    margin: 0 0 12px;
    font-size: 1.5em;
    font-weight: 600;
    color: #000;
}

.no-results-text {
    margin: 0 0 32px;
    color: #666;
    font-size: 0.95em;
    line-height: 1.6;
}

.no-results-ok-btn {
    background: #000;
    color: #fff;
    border: none;
    padding: 14px 32px;
    font-size: 0.95em;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
    letter-spacing: 0.5px;
}

.no-results-ok-btn:hover {
    background: #333;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.no-results-ok-btn:active {
    transform: translateY(0);
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
}

.no-results-modal button:hover {
    opacity: 1;
}

/* ========== Privacy Policy Modal ========== */
.privacy-modal {
    display: flex;
}

.privacy-content {
    animation: slideDown 0.3s ease;
}

.privacy-content h2 {
    color: #000;
}

.privacy-content ul {
    margin: 8px 0;
}

.privacy-content li {
    margin: 6px 0;
}

.privacy-policy-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1000;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.privacy-policy-content {
    background: #fff;
    border-radius: 12px;
    max-width: 980px;
    max-height: 90vh;
    overflow-y: auto;
    padding: 40px;
    position: relative;
}

.privacy-close-btn {
    position: absolute;
    top: 12px;
    right: 12px;
    background: transparent;
    border: none;
    font-size: 28px;
    cursor: pointer;
    color: #000;
    line-height: 1;
    z-index: 1;
}

.privacy-close-btn:hover {
    opacity: 0.7;
}

.privacy-title {
    margin: 0 0 8px;
    font-size: 2.5em;
    font-weight: 600;
}

.privacy-date {
    color: #86868b;
    font-size: 14px;
    margin-bottom: 32px;
}

.privacy-body {
    line-height: 1.6;
    color: #1d1d1f;
}

.privacy-paragraph {
    margin-bottom: 24px;
}

.privacy-heading-1 {
    margin-top: 32px;
    margin-bottom: 12px;
    font-size: 1.5em;
    font-weight: 600;
}

.privacy-heading-2 {
    margin-top: 20px;
    margin-bottom: 8px;
    font-size: 1.2em;
    font-weight: 600;
}

.privacy-list {
    margin: 12px 0 12px 24px;
}

.privacy-footer {
    margin-top: 48px;
    padding-top: 24px;
    border-top: 1px solid #d2d2d7;
}

.privacy-footer-text {
    color: #86868b;
    font-size: 14px;
}

.privacy-link {
    color: #0066cc;
    text-decoration: none;
}

/* ========== Buttons ========== */
.add-btn {
    margin-top: auto;
    background: #000;
    color: #fff;
    padding: 10px;
    border-radius: 8px;
    border: 0;
    cursor: pointer;
}

/* ========== Filter Pills ========== */
.filter-pills {
    display: flex;
    justify-content: flex-start;
    gap: 0.5rem;
    margin: 1rem 0 0.4rem;
    padding: 0 1rem;
    position: relative;
    z-index: 10;
}

.pill {
    background: #fff;
    border: 1px solid #000;
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    cursor: pointer;
    font-size: 14px;
    transition: all 0.3s ease;
    white-space: nowrap;
    color: #000;
    text-decoration: none;
    -webkit-tap-highlight-color: transparent;
    outline: none;
}

.pill.active {
    background: #000;
    color: #fff;
}

/* Interactive Elements Hover/Active States */
.product-card,
.pill,
.checkout-btn,
.see-more-container a,
.scroll-arrow {
    transition: transform 0.15s ease, box-shadow 0.15s ease, opacity 0.15s ease, background-color 0.15s ease;
    touch-action: manipulation;
    -webkit-user-select: none;
    user-select: none;
}

/* Hover effect - only for devices with hover capability (desktop) */
@media (hover: hover) and (pointer: fine) {

    .product-card:hover,
    .pill:hover,
    .checkout-btn:hover,
    .see-more-container a:hover,
    .scroll-arrow:hover {
        transform: translateY(-3px);
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    }
}

/* Enhanced touch feedback - more obvious for mobile */
.product-card:active,
.pill:active,
.checkout-btn:active,
.see-more-container a:active,
.scroll-arrow:active {
    transform: scale(0.96) !important;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1) !important;
    opacity: 0.85;
    transition: transform 0.08s ease, box-shadow 0.08s ease, opacity 0.08s ease !important;
}

/* Ensure active state works on touch devices */
@media (hover: none) and (pointer: coarse) {

    .product-card:active,
    .pill:active,
    .checkout-btn:active,
    .see-more-container a:active,
    .scroll-arrow:active {
        transform: scale(0.95) !important;
        opacity: 0.8;
    }
}

/* ========== Footer ========== */
.footer {
    background: #000;
    color: #fff;
    padding: 40px 20px;
    margin-top: 80px;
    text-align: center;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
}

.footer-links {
    margin-bottom: 16px;
    font-size: 0.95em;
}

.footer-links a {
    color: #fff;
    text-decoration: none;
    transition: opacity 0.3s ease;
    padding: 0 8px;
}

.footer-links a:hover {
    opacity: 0.7;
    text-decoration: underline;
}

.footer-separator {
    margin: 0 4px;
    opacity: 0.5;
}

.footer-copyright {
    font-size: 0.9em;
    opacity: 0.8;
    margin-top: 12px;
}

.footer-website-link {
    color: inherit;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-website-link:hover {
    color: #000;
}

.footer-website-text {
    margin-top: 8px;
    font-size: 12px;
    color: #666;
}