/* ==============================================================
   Mahogany Furnitures - Quote & Enquiry System Styles
   ============================================================== */

/* Header Quote Button */
.btn-quote-header {
    background-color: var(--secondary-color, #F8F5EF);
    border: 1px solid rgba(22, 22, 22, 0.15);
    color: var(--primary-color, #161616);
    border-radius: 30px;
    padding: 7px 16px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    outline: none;
    text-decoration: none;
}
.btn-quote-header i {
    font-size: 16px;
    color: var(--accent-color, #B08D57);
    transition: color 0.3s ease;
}
.btn-quote-header:hover {
    background-color: var(--primary-color, #161616);
    color: #ffffff;
    border-color: var(--primary-color, #161616);
}
.btn-quote-header:hover i {
    color: #ffffff;
}
.quote-badge {
    background-color: var(--accent-color, #B08D57);
    color: #ffffff;
    font-size: 11px;
    font-weight: 700;
    padding: 2px 7px;
    border-radius: 10px;
    min-width: 18px;
    text-align: center;
    line-height: 1.3;
}

/* Product Card Add To Quote Button */
.btn-card-quote {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    padding: 10px 16px;
    margin-top: 14px;
    background-color: var(--primary-color, #161616);
    color: #ffffff;
    border: 1px solid var(--primary-color, #161616);
    border-radius: 6px;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.3px;
    transition: all 0.3s ease;
    cursor: pointer;
}
.btn-card-quote:hover {
    background-color: var(--accent-color, #B08D57);
    border-color: var(--accent-color, #B08D57);
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(176, 141, 87, 0.3);
}

/* Floating Quote Button */
.floating-quote-wrapper {
    position: fixed;
    right: 25px;
    bottom: 30px;
    z-index: 9990;
    background-color: var(--primary-color, #161616);
    color: #ffffff;
    border-radius: 50px;
    padding: 10px 20px;
    display: flex;
    align-items: center;
    gap: 12px;
    cursor: pointer;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
    border: 2px solid var(--accent-color, #B08D57);
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
.floating-quote-wrapper:hover {
    background-color: var(--accent-color, #B08D57);
    transform: translateY(-3px) scale(1.03);
    box-shadow: 0 10px 30px rgba(176, 141, 87, 0.4);
}
.floating-quote-icon {
    position: relative;
    font-size: 20px;
    display: flex;
    align-items: center;
}
.floating-quote-count {
    position: absolute;
    top: -9px;
    right: -12px;
    background: #e65757;
    color: #ffffff;
    font-size: 10px;
    font-weight: 700;
    width: 19px;
    height: 19px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid #ffffff;
}
.floating-quote-label {
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.3px;
}

/* Quote Modal Custom Styling */
.quote-modal .modal-content {
    border-radius: 12px;
    border: none;
    box-shadow: 0 20px 45px rgba(0,0,0,0.25);
    overflow: hidden;
}
.quote-modal .modal-header {
    background-color: var(--secondary-color, #F8F5EF);
    border-bottom: 1px solid rgba(22, 22, 22, 0.1);
    padding: 18px 24px;
}
.quote-modal .modal-title {
    font-size: 18px;
    font-weight: 700;
    color: var(--primary-color, #161616);
    display: flex;
    align-items: center;
}
.quote-modal .modal-title i {
    color: var(--accent-color, #B08D57);
    margin-right: 8px;
}
.quote-modal .modal-body {
    padding: 24px;
}
.quote-items-container {
    max-height: 220px;
    overflow-y: auto;
    border: 1px solid #e9ecef;
    border-radius: 8px;
    padding: 8px;
    background: #fdfdfd;
}
.quote-item-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px;
    background: #ffffff;
    border-radius: 6px;
    margin-bottom: 8px;
    border: 1px solid #edf2f7;
    transition: background 0.2s ease;
}
.quote-item-row:last-child {
    margin-bottom: 0;
}
.quote-item-row:hover {
    background: #fafafa;
}
.quote-item-info {
    display: flex;
    align-items: center;
    gap: 12px;
    flex: 1;
    min-width: 0;
}
.quote-item-img {
    width: 48px;
    height: 48px;
    object-fit: cover;
    border-radius: 6px;
    border: 1px solid #e2e8f0;
    flex-shrink: 0;
}
.quote-item-name {
    font-weight: 600;
    font-size: 14px;
    color: var(--primary-color, #161616);
    margin: 0;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.quote-qty-controls {
    display: flex;
    align-items: center;
    gap: 6px;
    margin: 0 12px;
}
.quote-qty-btn {
    width: 26px;
    height: 26px;
    border: 1px solid #cbd5e1;
    background: #ffffff;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 12px;
    color: #475569;
    transition: all 0.2s ease;
}
.quote-qty-btn:hover {
    background: var(--primary-color, #161616);
    color: #ffffff;
    border-color: var(--primary-color, #161616);
}
.quote-qty-num {
    font-weight: 700;
    font-size: 14px;
    min-width: 22px;
    text-align: center;
    color: #1e293b;
}
.quote-remove-btn {
    background: transparent;
    border: none;
    color: #ef4444;
    font-size: 15px;
    cursor: pointer;
    padding: 4px 8px;
    transition: all 0.2s ease;
    border-radius: 4px;
}
.quote-remove-btn:hover {
    background: #fee2e2;
    color: #b91c1c;
}
.quote-empty-box {
    text-align: center;
    padding: 24px 15px;
    color: #64748b;
}
.quote-empty-box i {
    font-size: 32px;
    color: #cbd5e1;
    margin-bottom: 8px;
    display: block;
}
.btn-quote-submit {
    background-color: var(--accent-color, #B08D57);
    border: 1px solid var(--accent-color, #B08D57);
    color: #ffffff;
    font-weight: 600;
    padding: 11px 24px;
    border-radius: 6px;
    transition: all 0.3s ease;
    font-size: 15px;
}
.btn-quote-submit:hover {
    background-color: #9a7641;
    border-color: #9a7641;
    color: #ffffff;
    box-shadow: 0 4px 12px rgba(176, 141, 87, 0.3);
}
.quote-form-section .form-label {
    font-size: 13px;
    font-weight: 600;
    color: #334155;
    margin-bottom: 4px;
}
.quote-form-section .form-control {
    font-size: 14px;
    border-radius: 6px;
    border: 1px solid #cbd5e1;
    padding: 8px 12px;
}
.quote-form-section .form-control:focus {
    border-color: var(--accent-color, #B08D57);
    box-shadow: 0 0 0 3px rgba(176, 141, 87, 0.15);
}

/* Toast Notification for Quick Add */
.quote-toast {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 10000;
    background: var(--primary-color, #161616);
    color: #ffffff;
    padding: 12px 20px;
    border-radius: 8px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.25);
    border-left: 4px solid var(--accent-color, #B08D57);
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 14px;
    transform: translateY(-50px);
    opacity: 0;
    transition: all 0.3s ease;
}
.quote-toast.show {
    transform: translateY(0);
    opacity: 1;
}

/* ==============================================================
   Bespoke Custom Furniture Section
   ============================================================== */
.bespoke-custom-section {
    background-color: #151515 !important;
    padding: 90px 0;
    position: relative;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.custom-features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    margin-top: 25px;
    margin-bottom: 15px;
}
@media (max-width: 576px) {
    .custom-features-grid {
        grid-template-columns: 1fr;
    }
}
.custom-feature-item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    padding: 14px 16px;
    border-radius: 10px;
    transition: all 0.3s ease;
}
.custom-feature-item:hover {
    background: rgba(176, 141, 87, 0.08);
    border-color: rgba(176, 141, 87, 0.35);
    transform: translateY(-2px);
}
.custom-feature-icon {
    width: 40px;
    height: 40px;
    background: rgba(176, 141, 87, 0.15);
    color: var(--accent-color, #B08D57);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    flex-shrink: 0;
}
.custom-feature-item h5 {
    color: #ffffff;
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 4px;
}
.custom-feature-item p {
    color: #a0a0a0;
    font-size: 13px;
    line-height: 1.4;
    margin: 0;
}

/* ==============================================================
   Luxury Footer Styles
   ============================================================== */
.luxury-footer {
    background-color: #0d0d0d !important;
    color: #d1d5db;
    position: relative;
    border-top: 3px solid var(--accent-color, #B08D57);
}
/* Footer Highlights Ribbon */
.footer-highlights {
    background: #141414;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    padding: 30px 0;
}
.footer-highlight-card {
    display: flex;
    align-items: center;
    gap: 15px;
}
@media (max-width: 767px) {
    .footer-highlight-card {
        flex-direction: column;
        text-align: center;
    }
}
.highlight-icon {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: rgba(176, 141, 87, 0.12);
    border: 1px solid rgba(176, 141, 87, 0.3);
    color: var(--accent-color, #B08D57);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    flex-shrink: 0;
}
.highlight-text h6 {
    color: #ffffff;
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 2px;
}
.highlight-text span {
    color: #8e8e93;
    font-size: 13px;
}

/* Footer Main */
.footer-main-content {
    padding: 60px 0 45px;
}
.footer-logo {
    display: inline-block;
    margin-bottom: 20px;
}
.footer-about-text {
    color: #9ca3af;
    font-size: 14px;
    line-height: 1.7;
    margin-bottom: 25px;
}
.footer-social-links {
    display: flex;
    align-items: center;
    gap: 12px;
}
.social-circle {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.12);
    color: #e5e7eb;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    text-decoration: none;
    transition: all 0.3s ease;
}
.social-circle:hover {
    background: var(--accent-color, #B08D57);
    border-color: var(--accent-color, #B08D57);
    color: #ffffff;
    transform: translateY(-3px);
    box-shadow: 0 6px 15px rgba(176, 141, 87, 0.35);
}
.social-circle.wa:hover {
    background: #25D366;
    border-color: #25D366;
    box-shadow: 0 6px 15px rgba(37, 211, 102, 0.35);
}
.social-circle.ig:hover {
    background: #E1306C;
    border-color: #E1306C;
    box-shadow: 0 6px 15px rgba(225, 48, 108, 0.35);
}
.social-circle.fb:hover {
    background: #1877F2;
    border-color: #1877F2;
    box-shadow: 0 6px 15px rgba(24, 119, 242, 0.35);
}
.social-circle.pt:hover {
    background: #E60023;
    border-color: #E60023;
    box-shadow: 0 6px 15px rgba(230, 0, 35, 0.35);
}

.footer-title {
    color: #ffffff;
    font-size: 17px;
    font-weight: 700;
    margin-bottom: 22px;
    position: relative;
    padding-bottom: 10px;
    letter-spacing: 0.5px;
}
.footer-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 32px;
    height: 2px;
    background: var(--accent-color, #B08D57);
}
.footer-nav-links {
    list-style: none;
    padding: 0;
    margin: 0;
}
.footer-nav-links li {
    margin-bottom: 12px;
}
.footer-nav-links a {
    color: #9ca3af;
    text-decoration: none;
    font-size: 14px;
    transition: all 0.25s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}
.footer-nav-links a i {
    font-size: 10px;
    color: var(--accent-color, #B08D57);
    transition: transform 0.25s ease;
}
.footer-nav-links a:hover {
    color: #ffffff;
    transform: translateX(4px);
}
.footer-nav-links a:hover i {
    transform: translateX(2px);
    color: #ffffff;
}

/* Contact Card Items */
.contact-card-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}
.contact-card-item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
}
.contact-card-item .contact-icon {
    width: 38px;
    height: 38px;
    border-radius: 8px;
    background: rgba(176, 141, 87, 0.12);
    border: 1px solid rgba(176, 141, 87, 0.25);
    color: var(--accent-color, #B08D57);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 15px;
    flex-shrink: 0;
    margin-top: 2px;
}
.contact-card-item .contact-info label {
    display: block;
    color: #6b7280;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 2px;
    font-weight: 600;
}
.contact-card-item .contact-info span,
.contact-card-item .contact-info a {
    color: #e5e7eb;
    font-size: 14px;
    text-decoration: none;
    line-height: 1.4;
    transition: color 0.2s ease;
}
.contact-card-item .contact-info a:hover {
    color: var(--accent-color, #B08D57);
}

/* Bottom Bar */
.footer-bottom-bar {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding: 22px 0;
    background: #090909;
}
.copyright-text {
    font-size: 13px;
    color: #9ca3af;
}
.footer-craft-tag {
    font-size: 13px;
    color: #9ca3af;
}
