/* WooCommerce-Like Location Materiel Native Styles - Creovibe Dark Single Theme */

.lmn-woocommerce-layout {
    font-family: inherit;
    color: #a0a0a0;
    line-height: 1.6;
    background-color: transparent; 
}

.lmn-woocommerce-layout .lmn-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 120px 20px 60px;
}

/* --- Archive / Shop Banner --- */
.lmn-shop-banner {
    position: relative;
    padding: 100px 0;
    background-color: #0b0b0b;
    background-image: url('../img/shop-bg.jpg'); /* Placeholder for user's background */
    background-size: cover;
    background-position: center;
    text-align: center;
    color: #fff;
    margin-bottom: 0;
}

.lmn-banner-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    z-index: 1;
}

.lmn-shop-banner .lmn-container {
    position: relative;
    z-index: 2;
}

.lmn-banner-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin: 0 0 15px;
    letter-spacing: 1px;
}

.lmn-breadcrumb {
    font-size: 0.95rem;
    color: #ccc;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
}

.lmn-breadcrumb a {
    color: #fff;
    text-decoration: none;
    transition: color 0.3s;
}

.lmn-breadcrumb a:hover {
    color: #ff22ff;
}

.lmn-breadcrumb .lmn-sep {
    color: #666;
}

/* --- Shop Toolbar (Filters/Sorting) --- */
.lmn-shop-toolbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
    color: #888;
    font-size: 0.9rem;
}

.lmn-toolbar-right {
    display: flex;
    gap: 15px;
}

.lmn-custom-select {
    background: #111;
    border: 1px solid #222;
    padding: 10px 20px;
    border-radius: 4px;
    color: #fff;
    display: flex;
    align-items: center;
    gap: 15px;
    cursor: pointer;
    transition: border-color 0.3s;
}

.lmn-custom-select:hover {
    border-color: #ff22ff;
}

/* --- Product Grid & Items (Creovibe Premium) --- */
.lmn-creo-products {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    list-style: none;
    padding: 0;
    margin: 0 0 60px;
}

@media (max-width: 1024px) { .lmn-creo-products { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 768px) { .lmn-creo-products { grid-template-columns: repeat(2, 1fr); } .lmn-shop-toolbar { flex-direction: column; gap: 20px; text-align: center; } }
@media (max-width: 480px) { .lmn-creo-products { grid-template-columns: 1fr; } }

.lmn-creo-product {
    position: relative;
    overflow: hidden;
    transition: transform 0.3s ease;
}

.lmn-creo-img-wrap {
    background-color: #1a1a1a; /* Darker tile background */
    position: relative;
    padding: 50px 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    aspect-ratio: 1 / 1.1;
    overflow: hidden;
}

.lmn-creo-img-wrap img {
    max-width: 100%;
    height: auto;
    object-fit: contain;
    transition: transform 0.6s cubic-bezier(0.2, 1, 0.3, 1);
}

.lmn-creo-product:hover .lmn-creo-img-wrap img {
    transform: scale(1.1);
}

/* Sale Badge */
.lmn-sale-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: #ff22ff;
    color: #fff;
    font-size: 10px;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: 12px;
    letter-spacing: 0.5px;
    z-index: 10;
}

/* Hover Actions */
.lmn-product-actions {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%) translateY(20px);
    display: flex;
    gap: 10px;
    opacity: 0;
    transition: all 0.4s ease;
    z-index: 15;
}

.lmn-creo-product:hover .lmn-product-actions {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
}

.lmn-action-btn {
    background: #fff;
    color: #000;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.3s;
    text-decoration: none;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.lmn-action-btn:hover {
    background: #ff22ff;
    color: #fff;
}

.lmn-creo-content {
    padding: 25px 15px;
    text-align: center;
    background: transparent;
}

.lmn-creo-price {
    color: #ff22ff;
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 8px;
    display: block;
}

.lmn-creo-title {
    margin: 0;
    font-size: 1.15rem;
    font-weight: 600;
    line-height: 1.3;
}

.lmn-creo-title a {
    color: #fff;
    text-decoration: none;
}

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

.lmn-pagination .page-numbers {
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #111;
    color: #fff;
    text-decoration: none;
    border-radius: 50%;
    font-weight: 600;
    transition: 0.3s;
    border: 1px solid #222;
}

.lmn-pagination .page-numbers.current,
.lmn-pagination .page-numbers:hover {
    background: #ff22ff;
    border-color: #ff22ff;
    color: #fff;
}

/* --- Single Product Page (Existing Styles Kept Below) --- */
.lmn-close-product {
    position: relative;
    width: 44px;
    height: 44px;
    background: rgba(255, 34, 255, 0.05);
    border: 1px solid rgba(255, 34, 255, 0.3);
    color: #ff22ff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
    flex-shrink: 0;
    backdrop-filter: blur(5px);
}

.lmn-close-product svg {
    width: 20px;
    height: 20px;
    stroke-width: 2.5;
}

.lmn-close-product:hover {
    background: #ff22ff;
    color: #fff;
    transform: rotate(90deg);
    border-color: #ff22ff;
    box-shadow: 0 0 15px rgba(255, 34, 255, 0.4);
}

.lmn-single-layout .lmn-single-product {
    display: block;
}

.lmn-single-top {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    margin-bottom: 30px;
    color: #fff;
}

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

.lmn-product-gallery {
    display: flex;
    gap: 15px;
    align-items: stretch;
}

.lmn-gallery-thumbnails {
    display: flex;
    flex-direction: column;
    gap: 10px;
    width: 80px;
    flex-shrink: 0;
}

.lmn-thumb {
    background: #f5f5f5;
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    border: 2px solid transparent;
    padding: 5px;
}

.lmn-thumb.active {
    border-color: #555;
    background: #e9e9e9;
}

.lmn-thumb img {
    max-width: 100%;
    max-height: 100%;
    mix-blend-mode: multiply;
}

.lmn-gallery-main {
    background: #f5f5f5;
    flex-grow: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px;
    position: relative;
    border-radius: 2px;
}

.lmn-zoom-trigger {
    position: absolute;
    top: 20px;
    right: 20px;
    background: #fff;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #999;
    cursor: pointer;
    border: none;
    padding: 0;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    z-index: 5;
}

.lmn-zoom-trigger:hover {
    background: #ff22ff;
    color: #fff;
    transform: scale(1.1);
}

.lmn-gallery-main img {
    width: 100%;
    max-height: 500px;
    object-fit: contain;
    mix-blend-mode: multiply;
    cursor: zoom-in;
}

.lmn-product-summary .lmn-product-title {
    font-size: 2.2rem;
    margin: 0 0 10px;
    color: #ffffff;
    font-weight: 500;
}

.lmn-product-summary .price {
    font-size: 1.3rem;
    color: #ff22ff;
    font-weight: 500;
    margin-bottom: 25px;
}

.lmn-product-excerpt {
    color: #a0a0a0;
    margin-bottom: 35px;
    line-height: 1.8;
}

/* --- Reservation Form & Guest Info --- */
.lmn-cart-form {
    margin-bottom: 30px;
    background: #0f0f0f;
    padding: 30px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

.lmn-guest-info h3 {
    font-size: 1.2rem;
    color: #fff;
    margin-bottom: 25px;
    font-weight: 500;
}

.lmn-form-row {
    display: flex;
    gap: 15px;
    margin-bottom: 15px;
    width: 100%;
}

.lmn-form-col {
    flex: 1;
}

.lmn-guest-info input, .lmn-guest-info textarea {
    width: 100%;
    background: rgba(255,255,255,0.03) !important;
    border: 1px solid rgba(255,255,255,0.08) !important;
    border-radius: 8px !important;
    padding: 15px 20px !important;
    color: #fff !important;
    font-size: 0.95rem;
    outline: none !important;
    transition: all 0.3s ease;
}

.lmn-guest-info input:focus, .lmn-guest-info textarea:focus {
    border-color: #ff22ff !important;
    background: rgba(255,255,255,0.05) !important;
    box-shadow: 0 0 15px rgba(255, 34, 255, 0.1);
}

.lmn-guest-info textarea {
    min-height: 100px;
    resize: vertical;
}

.lmn-add-to-cart-wrapper {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 20px;
    margin-top: 25px;
    padding-top: 25px;
    border-top: 1px solid rgba(255,255,255,0.05);
}

.lmn-dates-group {
    display: flex;
    align-items: center;
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 8px;
    padding: 0;
    height: 55px;
    overflow: hidden;
}

.lmn-qty-date {
    background: transparent;
    color: #fff;
    border: none !important;
    padding: 0 15px;
    height: 100%;
    min-width: 140px;
    font-size: 0.9em;
    font-family: inherit;
    outline: none;
}

.lmn-qty-date::-webkit-calendar-picker-indicator {
    filter: invert(1);
    cursor: pointer;
}

.lmn-date-sep {
    color: #444;
    font-weight: bold;
}

.single_add_to_cart_button {
    background-color: #ff22ff;
    color: #fff;
    border: none;
    padding: 0 35px;
    border-radius: 8px;
    font-weight: 700;
    font-size: 0.95rem;
    cursor: pointer;
    transition: all 0.3s ease;
    height: 55px;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 5px 20px rgba(255, 34, 255, 0.2);
}

.single_add_to_cart_button:hover {
    background-color: #fff;
    color: #000;
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(255, 34, 255, 0.3);
}

.product_meta {
    font-size: 0.9em;
    color: #ccc;
    display: flex;
    flex-direction: column;
    gap: 5px;
    margin-top: 20px;
}

.product_meta a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.2s;
}

.product_meta a:hover {
    color: #ff22ff;
}

.sku_wrapper strong { margin-right: 5px; font-weight: 600; }
.posted_in strong { margin-right: 5px; font-weight: 600; }

/* --- Tabs --- */
.lmn-tabs-wrapper {
    margin-top: 60px;
}

.lmn-tabs {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    border-bottom: 1px solid #222;
    gap: 30px;
}

.lmn-tab a {
    display: block;
    padding: 15px 0;
    color: #999;
    text-decoration: none;
    font-size: 1rem;
    position: relative;
    transition: all 0.3s;
}

.lmn-tab.active a {
    color: #ff22ff;
}

.lmn-tab.active a::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: #ff22ff;
}

.lmn-tab a:hover {
    color: #ff22ff;
}

.lmn-tab-content {
    color: #a0a0a0;
    line-height: 1.8;
    padding-top: 30px;
}

/* --- Related Products --- */
.lmn-related-products {
    margin-top: 80px;
}

.lmn-related-products h2 {
    font-size: 1.5rem;
    color: #fff;
    margin-bottom: 30px;
    font-weight: 600;
}

/* --- Notices --- */
.woocommerce-message, .woocommerce-error, .woocommerce-info {
    padding: 15px 20px;
    margin: 0 0 30px;
    background: #1a1a1a;
    border-top: 3px solid;
    border-radius: 2px;
    color: #fff;
    list-style: none;
}

.woocommerce-message { border-top-color: #8fae1b; }
.woocommerce-error { border-top-color: #b81c23; }
.woocommerce-info { border-top-color: #ff22ff; padding: 20px; text-align: center; }

.stock.out-of-stock {
    color: #b81c23;
    font-weight: 600;
    font-size: 1.1em;
}
/* --- Lightbox Modal --- */
.lmn-lightbox {
    display: none;
    position: fixed;
    z-index: 9999;
    padding: 50px 0;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.92);
    backdrop-filter: blur(5px);
}

.lmn-lightbox-content {
    position: relative;
    margin: auto;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 80%;
    height: 100%;
    max-width: 1000px;
}

.lmn-lightbox-content img {
    display: block;
    max-width: 100%;
    max-height: 90vh;
    object-fit: contain;
    animation: fadeIn 0.4s ease;
}

@keyframes fadeIn {
    from { opacity: 0; transform: scale(0.95); }
    to { opacity: 1; transform: scale(1); }
}

.lmn-lightbox-close {
    position: absolute;
    top: 30px;
    right: 40px;
    color: #fff;
    font-size: 40px;
    font-weight: 300;
    transition: 0.3s;
    cursor: pointer;
    line-height: 1;
}

.lmn-lightbox-close:hover {
    color: #ff22ff;
}

.lmn-lightbox-prev, .lmn-lightbox-next {
    cursor: pointer;
    position: absolute;
    top: 50%;
    width: auto;
    padding: 20px;
    margin-top: -50px;
    color: white;
    font-weight: bold;
    font-size: 40px;
    transition: 0.3s ease;
    border-radius: 3px;
    user-select: none;
    text-decoration: none;
}

.lmn-lightbox-next {
    right: 30px;
}

.lmn-lightbox-prev {
    left: 30px;
}

.lmn-lightbox-prev:hover, .lmn-lightbox-next:hover {
    color: #ff22ff;
}

/* --- Reservation Modal --- */
.lmn-modal {
    display: none;
    position: fixed;
    z-index: 10000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    padding-top: 50px;
}

.lmn-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.8);
    backdrop-filter: blur(8px);
}

.lmn-modal-content {
    background-color: #0d0d0d;
    margin: auto;
    padding: 40px;
    border: 1px solid rgba(255, 34, 255, 0.2);
    width: 90%;
    max-width: 650px;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.8);
    position: relative;
    z-index: 10001;
    animation: modalDown 0.4s ease-out;
}

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

.lmn-modal-close {
    position: absolute;
    top: 20px;
    right: 25px;
    color: #fff;
    font-size: 30px;
    font-weight: 300;
    cursor: pointer;
    transition: 0.3s;
}

.lmn-modal-close:hover {
    color: #ff22ff;
    transform: rotate(90deg);
}

.lmn-modal-title {
    color: #fff;
    margin-bottom: 30px;
    font-size: 1.8rem;
    font-weight: 700;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 2px;
}

@media (max-width: 768px) {
    .lmn-modal-content {
        padding: 30px 20px;
        width: 95%;
    }
}
/* --- My Account & Wishlist Styles --- */
.lmn-my-account-wrapper {
    background: #0f0a14;
    padding: 20px;
}

.lmn-acc-title {
    font-size: 1.8rem;
    color: #fff;
    margin-bottom: 30px;
    border-left: 4px solid #ff22ff;
    padding-left: 15px;
}

.lmn-table-responsive {
    overflow-x: auto;
    margin-bottom: 50px;
}

.lmn-acc-table {
    width: 100%;
    border-collapse: collapse;
    background: #151515;
    border-radius: 8px;
    overflow: hidden;
    color: #fff;
}

.lmn-acc-table th {
    background: #1a1a1a;
    padding: 18px 20px;
    text-align: left;
    font-size: 0.95rem;
    text-transform: uppercase;
    color: #888;
}

.lmn-acc-table td {
    padding: 20px;
    border-bottom: 1px solid #222;
    font-size: 0.95rem;
    vertical-align: middle;
}

.lmn-mini-thumb {
    width: 60px;
    height: 60px;
    object-fit: contain;
    background: #fff;
    padding: 2px;
    border-radius: 4px;
}

.lmn-acc-table tr:last-child td { border-bottom: none; }

.lmn-acc-table a {
    color: #ff22ff;
    font-weight: 600;
}

.lmn-status-badge {
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
}

.lmn-status-badge.status-pending { background: rgba(255, 193, 7, 0.1); color: #ffc107; }
.lmn-status-badge.status-confirmed, .lmn-status-badge.status-approved { background: rgba(40, 167, 69, 0.1); color: #28a745; }
.lmn-status-badge.status-rejected { background: rgba(220, 53, 69, 0.1); color: #dc3545; }

.lmn-creo-products.mini-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    gap: 20px;
}

/* Wishlist Icon Animation */
.lmn-wishlist-toggle svg {
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.lmn-wishlist-toggle.active svg {
    color: #ff22ff;
    transform: scale(1.2);
}

.lmn-wishlist-toggle.loading { opacity: 0.5; pointer-events: none; }

.lmn-creo-wishlist-icon {
    position: absolute;
    bottom: 20px;
    background: #fff;
    color: #000;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.3s;
    text-decoration: none;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
    border: none;
    cursor: pointer;
    z-index: 15;
}

.lmn-creo-wishlist-icon:hover, .lmn-creo-wishlist-icon.active {
    background: #ff22ff;
    color: #fff;
}
.mt-5 { margin-top: 3rem; }

/* --- Auth Forms (Login / Register) --- */
.lmn-auth-container {
    max-width: 450px;
    margin: 50px auto;
    background: #111;
    border: 1px solid #222;
    border-radius: 10px;
    padding: 40px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

.lmn-auth-tabs {
    display: flex;
    gap: 30px;
    margin-bottom: 30px;
    border-bottom: 1px solid #222;
}

.lmn-auth-tab-btn {
    background: none !important;
    border: none !important;
    color: #888 !important;
    padding: 10px 0;
    cursor: pointer;
    font-size: 1rem;
    font-weight: 700;
    transition: 0.3s;
    border-bottom: 2px solid transparent !important;
}

.lmn-auth-tab-btn.active {
    color: #ff22ff !important;
    border-bottom-color: #ff22ff !important;
}

.lmn-auth-content { display: none; }
.lmn-auth-content.active { display: block; }

.lmn-auth-content label {
    display: block;
    margin-bottom: 8px;
    font-size: 0.9rem;
    color: #ccc;
}

.lmn-auth-content input[type="text"],
.lmn-auth-content input[type="email"],
.lmn-auth-content input[type="password"] {
    width: 100%;
    background: #1a1a1a;
    border: 1px solid #333;
    padding: 12px 15px;
    color: #fff;
    margin-bottom: 20px;
}

.lmn-auth-content .button {
    width: 100%;
    background: #ff22ff;
    color: #fff;
    border: none;
    height: 50px;
    font-weight: 700;
    text-transform: uppercase;
    cursor: pointer;
    transition: background 0.3s;
}

.lmn-auth-content .button:hover {
    background: #d112d1;
}

.lmn-auth-msg {
    text-align: center;
    padding: 40px;
    background: #111;
    border: 1px solid #222;
    border-radius: 10px;
}
.lmn-auth-msg a { color: #ff22ff; font-weight: 600; }
/* --- Contact Form 7 Premium Styling --- */
.mf-contact-form-card .wpcf7-form p {
    margin-bottom: 25px;
}

.mf-contact-form-card .wpcf7-text, 
.mf-contact-form-card .wpcf7-textarea, 
.mf-contact-form-card .wpcf7-tel, 
.mf-contact-form-card .wpcf7-email {
    border-bottom: 1px solid rgba(255,255,255,0.15) !important;
    padding: 15px 0 !important;
}

.mf-contact-form-card .wpcf7-not-valid-tip {
    color: #ff4d4d !important;
    font-size: 12px !important;
    margin-top: 5px !important;
}

.mf-contact-form-card .wpcf7-response-output {
    margin: 20px 0 0 0 !important;
    padding: 15px !important;
    border-radius: 12px !important;
    border: 1px solid rgba(255,255,255,0.1) !important;
    background: rgba(255,255,255,0.03) !important;
    color: #fff !important;
    font-size: 14px !important;
}

.mf-contact-form-card .wpcf7-spinner {
    background-color: #bf21cc !important;
}

/* Reserve Icon specifically */
.lmn-reserve-icon-btn {
    background: #bf21cc !important;
    color: #fff !important;
}
.lmn-reserve-icon-btn:hover {
    background: #a01aa8 !important;
}

/* Tooltip for Action Buttons */
.lmn-action-btn {
    position: relative;
    overflow: visible !important;
}
.lmn-action-btn[data-tooltip]:hover::after {
    content: attr(data-tooltip);
    position: absolute;
    bottom: -32px;
    left: 50%;
    transform: translateX(-50%);
    background: #000;
    color: #fff;
    font-size: 11px;
    padding: 4px 8px;
    border-radius: 4px;
    border: 1px solid rgba(255,255,255,0.2);
    white-space: nowrap;
    pointer-events: none;
    z-index: 20;
    font-family: inherit;
    box-shadow: 0 4px 10px rgba(0,0,0,0.3);
}
