/* Add here all your CSS customizations */

/* Product Image Sizing - Ensure consistent display */
.product .product-image-area .product-image,
.product-image-area .product-image {
    position: relative;
    overflow: hidden;
    width: 100%;
    aspect-ratio: 1 / 1; /* Square aspect ratio for consistent sizing */
}

.product .product-image-area .product-image img,
.product-image-area .product-image img {
    width: 100%;
    height: 100%;
    object-fit: contain; /* Show full image without cropping, centered */
    object-position: center;
    display: block;
}

/* For product detail page main image */
.product-img-box-wrapper .product-img-wrapper,
.product-img-box .product-img-wrapper {
    position: relative;
    width: 100%;
    aspect-ratio: 1 / 1;
    overflow: hidden;
}

.product-img-box-wrapper img,
.product-img-box img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
    display: block;
}

/* Product gallery thumbnails */
#productGalleryThumbs .product-img-wrapper {
    aspect-ratio: 1 / 1;
    overflow: hidden;
}

#productGalleryThumbs .product-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
}

/* Mobile Menu Fixes - Ensure dark background and white text */
.mobile-nav {
    background-color: #151515 !important;
    background: #151515 !important;
    visibility: visible !important;
    opacity: 1 !important;
}

.mobile-nav-wrapper {
    min-height: 100px;
    visibility: visible !important;
    opacity: 1 !important;
    background-color: transparent !important;
}

.mobile-side-menu {
    visibility: visible !important;
    opacity: 1 !important;
    background-color: transparent !important;
    color: #fff !important;
}

.mobile-side-menu li {
    visibility: visible !important;
    opacity: 1 !important;
    background-color: transparent !important;
    color: #fff !important;
}

.mobile-side-menu li a {
    color: #fff !important;
    visibility: visible !important;
    opacity: 1 !important;
    background-color: transparent !important;
    display: block !important;
}

.mobile-side-menu li a:hover,
.mobile-side-menu li a:focus,
.mobile-side-menu li a:active {
    color: #fff !important;
    background-color: rgba(255, 255, 255, 0.1) !important;
}

/* Ensure menu is visible when opened */
.mmenu-open .mobile-nav {
    visibility: visible !important;
    opacity: 1 !important;
    background-color: #151515 !important;
    background: #151515 !important;
}

/* LTR (English) - menu slides from left */
html:not([dir="rtl"]) .mmenu-open .mobile-nav {
    left: 0 !important;
    right: auto !important;
}

/* RTL (Arabic) - menu slides from right */
html[dir="rtl"] .mmenu-open .mobile-nav {
    right: 0 !important;
    left: auto !important;
}

.mmenu-open .mobile-nav-wrapper {
    visibility: visible !important;
    opacity: 1 !important;
    background-color: transparent !important;
}

.mmenu-open .mobile-side-menu {
    visibility: visible !important;
    opacity: 1 !important;
    background-color: transparent !important;
}

.mmenu-open .mobile-side-menu li {
    color: #fff !important;
}

.mmenu-open .mobile-side-menu li a {
    color: #fff !important;
}

/* Stock Status Labels for Item View */
.availability .stock-status,
.stock-status {
    font-weight: bold !important;
    padding: 6px 14px !important;
    border-radius: 4px !important;
    display: inline-block !important;
    margin-left: 8px !important;
    font-size: 14px !important;
}

.availability .stock-out,
.stock-status.stock-out,
.stock-out {
    color: #fff !important;
    background-color: #dc3545 !important;
    font-weight: bold !important;
}

.availability .stock-limited,
.stock-status.stock-limited,
.stock-limited {
    color: #fff !important;
    background-color: #ff9800 !important;
    font-weight: bold !important;
}

.availability .stock-in-stock,
.stock-status.stock-in-stock,
.stock-in-stock {
    color: #fff !important;
    background-color: #28a745 !important;
    font-weight: bold !important;
}

/* Product Label - Availability Status (same style as discount/new labels) */
.product .product-label span.stock-in-stock,
.product-label span.stock-in-stock,
.product-image-area .product-label span.stock-in-stock,
figure.product-image-area .product-label span.stock-in-stock {
    background-color: #28a745 !important;
    color: #fff !important;
    font-weight: bold !important;
    padding: 4px 8px !important;
    border-radius: 3px !important;
    display: inline-block !important;
    font-size: 12px !important;
}

.product .product-label span.stock-limited,
.product-label span.stock-limited,
.product-image-area .product-label span.stock-limited,
figure.product-image-area .product-label span.stock-limited {
    background-color: #ff9800 !important;
    color: #fff !important;
    font-weight: bold !important;
    padding: 4px 8px !important;
    border-radius: 3px !important;
    display: inline-block !important;
    font-size: 12px !important;
}

.product .product-label span.stock-out,
.product-label span.stock-out,
.product-image-area .product-label span.stock-out,
figure.product-image-area .product-label span.stock-out {
    background-color: #dc3545 !important;
    color: #fff !important;
    font-weight: bold !important;
    padding: 4px 8px !important;
    border-radius: 3px !important;
    display: inline-block !important;
    font-size: 12px !important;
}

/* Ensure product-label container is visible */
.product-label {
    display: block !important;
    visibility: visible !important;
}

.product-image-area .product-label {
    position: absolute !important;
    z-index: 10 !important;
}

/* Position stock status badge containers at bottom to avoid conflict with new/used/discount badges */
/* Stock status labels are always the last product-label in the HTML structure */
/* Override the default top positioning for the last label (which is always stock status) */
/* Apply to all product image areas across the entire website */
.product-image-area .product-label:last-child,
.product .product-image-area .product-label:last-child,
figure.product-image-area .product-label:last-child,
.products-grid .product-image-area .product-label:last-child,
.products-list .product-image-area .product-label:last-child,
.sidebar .product-image-area .product-label:last-child,
#daily-deals-items-wrapper .product-image-area .product-label:last-child {
    position: absolute !important;
    bottom: 10px !important;
    right: 10px !important;
    top: auto !important;
    left: auto !important;
    margin: 0 !important;
}

/* Ensure stock status spans are properly displayed within their container */
.product-image-area .product-label:last-child span.stock-in-stock,
.product-image-area .product-label:last-child span.stock-limited,
.product-image-area .product-label:last-child span.stock-out,
.product .product-image-area .product-label:last-child span.stock-in-stock,
.product .product-image-area .product-label:last-child span.stock-limited,
.product .product-image-area .product-label:last-child span.stock-out,
figure.product-image-area .product-label:last-child span.stock-in-stock,
figure.product-image-area .product-label:last-child span.stock-limited,
figure.product-image-area .product-label:last-child span.stock-out,
.products-grid .product-image-area .product-label:last-child span.stock-in-stock,
.products-grid .product-image-area .product-label:last-child span.stock-limited,
.products-grid .product-image-area .product-label:last-child span.stock-out,
.products-list .product-image-area .product-label:last-child span.stock-in-stock,
.products-list .product-image-area .product-label:last-child span.stock-limited,
.products-list .product-image-area .product-label:last-child span.stock-out {
    position: relative !important;
    display: inline-block !important;
    margin: 0 !important;
}

/* RTL Support for stock status badges - applies to all pages */
body[dir="rtl"] .product-image-area .product-label:last-child,
body[dir="rtl"] .product .product-image-area .product-label:last-child,
body[dir="rtl"] figure.product-image-area .product-label:last-child,
body[dir="rtl"] .products-grid .product-image-area .product-label:last-child,
body[dir="rtl"] .products-list .product-image-area .product-label:last-child,
body[dir="rtl"] .sidebar .product-image-area .product-label:last-child,
body[dir="rtl"] #daily-deals-items-wrapper .product-image-area .product-label:last-child {
    right: auto !important;
    left: 10px !important;
}

/* WhatsApp Button Styles */
.whatsapp-btn {
    display: inline-block;
    margin-top: 15px;
    padding: 12px 20px;
    background-color: #25D366;
    color: white !important;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    transition: background-color 0.3s;
}

.whatsapp-btn:hover {
    background-color: #20ba5a;
    color: white !important;
    text-decoration: none;
}

.whatsapp-btn:focus {
    color: white !important;
    text-decoration: none;
}

.whatsapp-btn i {
    margin-right: 8px;
    font-size: 18px;
}

/* Large WhatsApp Button for Item View */
.whatsapp-btn-large {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    margin-top: 15px !important;
    padding: 20px 35px !important;
    background-color: #25D366 !important;
    color: white !important;
    text-decoration: none !important;
    border-radius: 8px !important;
    font-weight: bold !important;
    font-size: 20px !important;
    transition: background-color 0.3s, transform 0.2s !important;
    box-shadow: 0 2px 8px rgba(37, 211, 102, 0.3) !important;
    width: 100% !important;
    max-width: 100% !important;
}

.whatsapp-btn-large:hover {
    background-color: #20ba5a;
    color: white !important;
    text-decoration: none;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4);
}

.whatsapp-btn-large:focus {
    color: white !important;
    text-decoration: none;
}

.whatsapp-btn-large:active {
    transform: translateY(0);
}

.whatsapp-btn-large .whatsapp-icon-large,
.whatsapp-btn-large i.fa-whatsapp,
.whatsapp-btn-large i {
    font-size: 48px !important;
    margin-right: 15px !important;
    color: white !important;
    line-height: 1 !important;
    vertical-align: middle !important;
}

.whatsapp-text {
    font-size: 20px !important;
    font-weight: bold !important;
}

/* Floating WhatsApp Button Styles */
.floating-whatsapp-btn {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: #25D366;
    color: white !important;
    text-decoration: none !important;
    border-radius: 50px;
    padding: 15px 25px;
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-weight: bold;
    font-size: 18px;
    transition: all 0.3s ease;
    animation: whatsapp-pulse 2s infinite;
    min-width: 140px;
    box-sizing: border-box;
}

.floating-whatsapp-btn:hover {
    background-color: #20ba5a;
    color: white !important;
    text-decoration: none !important;
    transform: scale(1.05);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.6);
}

.floating-whatsapp-btn:active {
    transform: scale(0.95);
}

.floating-whatsapp-btn i.fa-whatsapp {
    font-size: 28px;
    color: white !important;
    line-height: 1;
}

.floating-whatsapp-text {
    font-size: 18px !important;
    font-weight: bold !important;
    color: white !important;
    white-space: nowrap;
}

/* Pulse animation for floating WhatsApp button */
@keyframes whatsapp-pulse {
    0% {
        box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4);
    }
    50% {
        box-shadow: 0 4px 20px rgba(37, 211, 102, 0.6);
    }
    100% {
        box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4);
    }
}

/* Responsive design for mobile */
@media (max-width: 768px) {
    .floating-whatsapp-btn {
        bottom: 15px !important;
        right: 15px !important;
        padding: 12px 18px !important;
        font-size: 14px !important;
        gap: 8px !important;
        min-width: auto !important;
    }
    
    .floating-whatsapp-btn i.fa-whatsapp {
        font-size: 22px !important;
    }
    
    .floating-whatsapp-text {
        font-size: 14px !important;
    }
}

/* For very small screens - icon only */
@media (max-width: 480px) {
    .floating-whatsapp-btn {
        padding: 14px !important;
        width: 50px !important;
        height: 50px !important;
        border-radius: 50% !important;
    }
    
    .floating-whatsapp-text {
        display: none !important;
    }
    
    .floating-whatsapp-btn i.fa-whatsapp {
        font-size: 24px !important;
        margin: 0 !important;
    }
}

/* For RTL (Arabic) - button on left side */
body[dir="rtl"] .floating-whatsapp-btn {
    right: auto !important;
    left: 20px !important;
}

@media (max-width: 768px) {
    body[dir="rtl"] .floating-whatsapp-btn {
        right: auto !important;
        left: 15px !important;
    }
}

@media (max-width: 480px) {
    body[dir="rtl"] .floating-whatsapp-btn {
        left: 15px !important;
    }
}

/* Ensure "Show in stock only" checkbox is visible in view-items page */
#panel-more-filter {
    display: block !important;
    visibility: visible !important;
}

#panel-more-filter.collapse.in {
    display: block !important;
    visibility: visible !important;
}

#panel-more-filter .panel-body {
    display: block !important;
    visibility: visible !important;
}

#panel-more-filter .checkbox {
    display: block !important;
    visibility: visible !important;
}

#panel-more-filter .checkbox label {
    display: block !important;
    visibility: visible !important;
}

#inStockcheckBoxFilter {
    display: inline-block !important;
    visibility: visible !important;
    opacity: 1 !important;
}

/* In Stock Only Toggle Button Styles */
#in-stock-toggle {
    display: inline-block;
    margin-left: 10px;
    vertical-align: middle;
}

#toggle-in-stock-btn {
    display: inline-block;
    padding: 8px 12px;
    border: 1px solid #0088CC;
    border-radius: 4px;
    background-color: #0088CC;
    cursor: pointer;
    text-decoration: none;
    color: #fff;
    transition: all 0.3s ease;
    white-space: nowrap;
}

#toggle-in-stock-btn:hover {
    background-color: #0077b3;
    border-color: #0077b3;
    opacity: 0.9;
}

#toggle-in-stock-btn i {
    margin-right: 5px;
}

#toggle-in-stock-btn span {
    margin-left: 5px;
}

/* RTL Support for In Stock Toggle */
body[dir="rtl"] #toggle-in-stock-btn i {
    margin-right: 0;
    margin-left: 5px;
}

body[dir="rtl"] #toggle-in-stock-btn span {
    margin-left: 0;
    margin-right: 5px;
}

/* Mobile Responsive Styles for In Stock Toggle */
@media (max-width: 768px) {
    #in-stock-toggle {
        margin-left: 0;
        margin-top: 10px;
        width: 100%;
        display: block;
    }
    
    #toggle-in-stock-btn {
        width: auto;
        max-width: 200px;
        padding: 6px 12px;
        text-align: center;
        font-size: 13px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
    }
    
    #toggle-in-stock-btn i {
        font-size: 14px;
        margin-right: 4px;
    }
    
    #toggle-in-stock-btn span {
        font-size: 13px;
    }
    
    body[dir="rtl"] #toggle-in-stock-btn i {
        margin-right: 0;
        margin-left: 4px;
    }
}

@media (max-width: 480px) {
    #in-stock-toggle {
        margin-left: 0;
        margin-top: 8px;
        width: 100%;
    }
    
    #toggle-in-stock-btn {
        width: auto;
        max-width: 180px;
        padding: 5px 10px;
        font-size: 12px;
    }
    
    #toggle-in-stock-btn i {
        font-size: 13px;
        margin-right: 3px;
    }
    
    #toggle-in-stock-btn span {
        font-size: 12px;
    }
    
    body[dir="rtl"] #toggle-in-stock-btn i {
        margin-right: 0;
        margin-left: 3px;
    }
}

/* Toolbar responsive adjustments for mobile */
@media (max-width: 768px) {
    .toolbar .sorter {
        flex-wrap: wrap;
        gap: 10px;
    }
    
    .toolbar .sort-by {
        width: 100%;
        margin-bottom: 10px;
    }
    
    #view-mode {
        margin-left: 0;
        margin-top: 10px;
    }
    
    #in-stock-toggle {
        margin-left: 0;
        margin-top: 10px;
    }
}

/* No Specifications Message Styles */
.no-specs-message {
    text-align: center;
    padding: 60px 20px;
    background-color: #f8f9fa;
    border-radius: 8px;
    margin: 20px 0;
}

.no-specs-message i.fa-info-circle {
    font-size: 64px;
    color: #adb5bd;
    margin-bottom: 20px;
    display: block;
}

.no-specs-message p {
    font-size: 18px;
    color: #6c757d;
    margin: 0;
    font-weight: 500;
}

@media (max-width: 768px) {
    .no-specs-message {
        padding: 40px 15px;
    }
    
    .no-specs-message i.fa-info-circle {
        font-size: 48px;
        margin-bottom: 15px;
    }
    
    .no-specs-message p {
        font-size: 16px;
    }
}

/* Installment Options Styles */
.build-installments {
    margin-top: 20px;
    margin-bottom: 20px;
    padding: 15px;
    background-color: #f8f9fa;
    border-radius: 8px;
    border: 1px solid #e0e0e0;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

/* Hide by default - JavaScript will show when price >= 250 */
.build-installments[style*="display: none"],
.build-installments:not([style*="display: block"]) {
    display: none;
}

/* Show when explicitly set to block */
.build-installments[style*="display: block"] {
    display: block !important;
    visibility: visible !important;
}

.installment-header {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 1px solid #e0e0e0;
    font-weight: bold;
    font-size: 16px;
    color: #333;
}

.installment-header i {
    margin-right: 8px;
    font-size: 20px;
    color: #0088CC;
}

.installment-options {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.installment-option {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px;
    background-color: #fff;
    border-radius: 6px;
    border: 1px solid #e0e0e0;
    transition: box-shadow 0.3s ease;
}

.installment-option:hover {
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.installment-bank {
    display: flex;
    align-items: center;
    gap: 10px;
    flex: 1;
}

.installment-bank .bank-logo {
    width: 40px;
    height: 40px;
    object-fit: contain;
    border-radius: 4px;
    background-color: #f5f5f5;
}

.installment-bank i.fa-university {
    font-size: 24px;
    color: #0088CC;
}

.installment-bank span {
    font-weight: 500;
    color: #333;
    font-size: 14px;
}

.installment-details {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    text-align: right;
}

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

.installment-amount {
    font-weight: bold;
    color: #0088CC;
    font-size: 16px;
    line-height: 1.4;
}

.installment-amount span {
    font-size: 14px;
    color: #666;
    margin-left: 4px;
    font-weight: normal;
}

/* Ensure installment section is properly styled when visible */
#build-installments {
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

#build-installments[style*="display: block"] {
    animation: fadeIn 0.3s ease-in;
}

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

/* RTL Support for Arabic */
body[dir="rtl"] .installment-header i {
    margin-right: 0;
    margin-left: 8px;
}

body[dir="rtl"] .installment-bank {
    flex-direction: row-reverse;
}

body[dir="rtl"] .installment-details {
    align-items: flex-start;
    text-align: left;
}

/* Installment Note Styles */
.installment-note {
    margin-top: 15px;
    padding: 10px;
    background-color: #fff3cd;
    border-left: 4px solid #ffc107;
    border-radius: 4px;
    font-size: 13px;
    color: #856404;
    display: flex;
    align-items: flex-start;
    gap: 6px;
}

.installment-note i {
    color: #ffc107;
    font-size: 16px;
    margin-top: 2px;
    flex-shrink: 0;
}

.installment-note span {
    line-height: 1.5;
}

/* RTL Support for Installment Note */
body[dir="rtl"] .installment-note {
    border-left: none;
    border-right: 4px solid #ffc107;
}

body[dir="rtl"] .installment-note i {
    margin-right: 0;
    margin-left: 6px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .build-installments {
        padding: 12px;
        margin-top: 15px;
        margin-bottom: 20px;
    }
    
    .installment-header {
        font-size: 14px;
        margin-bottom: 15px;
        padding-bottom: 8px;
    }
    
    .installment-header i {
        font-size: 16px;
        margin-right: 6px;
    }
    
    .installment-options {
        gap: 10px;
    }
    
    .installment-option {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
        padding: 10px;
    }
    
    .installment-bank {
        width: 100%;
    }
    
    .installment-bank .bank-logo {
        width: 32px;
        height: 32px;
    }
    
    .installment-bank i.fa-university {
        font-size: 20px;
    }
    
    .installment-bank span {
        font-size: 13px;
    }
    
    .installment-details {
        align-items: flex-start;
        width: 100%;
    }
    
    .installment-period {
        font-size: 11px;
    }
    
    .installment-amount {
        font-size: 14px;
    }
    
    .installment-amount span {
        font-size: 12px;
    }
    
    .installment-note {
        font-size: 11px;
        padding: 8px;
        margin-top: 10px;
    }
    
    body[dir="rtl"] .installment-header i {
        margin-right: 0;
        margin-left: 6px;
    }
}

@media (max-width: 480px) {
    .build-installments {
        padding: 10px;
        margin-top: 12px;
        margin-bottom: 15px;
        border-radius: 6px;
    }
    
    .installment-header {
        font-size: 13px;
        margin-bottom: 12px;
        padding-bottom: 6px;
    }
    
    .installment-header i {
        font-size: 14px;
    }
    
    .installment-options {
        gap: 8px;
    }
    
    .installment-option {
        padding: 8px;
        gap: 6px;
    }
    
    .installment-bank .bank-logo {
        width: 28px;
        height: 28px;
    }
    
    .installment-bank i.fa-university {
        font-size: 18px;
    }
    
    .installment-bank span {
        font-size: 12px;
    }
    
    .installment-amount {
        font-size: 13px;
    }
    
    .installment-amount span {
        font-size: 11px;
    }
    
    .installment-period {
        font-size: 10px;
    }
    
    .installment-note {
        font-size: 10px;
        padding: 6px;
        margin-top: 8px;
    }
}

/* Privacy Policy Page Styles */
.privacy-policy-content {
    max-width: 900px;
    margin: 0 auto;
    padding: 40px 20px;
    background-color: #fff;
    line-height: 1.8;
}

.privacy-policy-title {
    font-size: 32px;
    font-weight: bold;
    color: #333;
    margin-bottom: 30px;
    padding-bottom: 15px;
    border-bottom: 3px solid #0088CC;
    text-align: center;
}

.privacy-policy-intro {
    font-size: 16px;
    color: #555;
    margin-bottom: 40px;
    padding: 20px;
    background-color: #f8f9fa;
    border-left: 4px solid #0088CC;
    border-radius: 4px;
}

.privacy-section {
    margin-bottom: 40px;
    padding: 25px;
    background-color: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.privacy-section-title {
    font-size: 22px;
    font-weight: bold;
    color: #0088CC;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid #e0e0e0;
}

.privacy-section p {
    font-size: 15px;
    color: #555;
    margin-bottom: 15px;
    line-height: 1.8;
}

.privacy-list {
    list-style: none;
    padding-left: 0;
    margin: 15px 0;
}

.privacy-list li {
    padding: 10px 0 10px 25px;
    position: relative;
    font-size: 15px;
    color: #555;
    line-height: 1.8;
}

.privacy-list li:before {
    content: "•";
    position: absolute;
    left: 0;
    color: #0088CC;
    font-weight: bold;
    font-size: 20px;
}

.privacy-section a {
    color: #0088CC;
    text-decoration: none;
    word-break: break-all;
}

.privacy-section a:hover {
    text-decoration: underline;
}

.privacy-contact-info {
    background-color: #f8f9fa;
    padding: 25px;
    border-radius: 6px;
    margin: 20px 0;
    border-left: 4px solid #0088CC;
}

.privacy-contact-info p {
    margin: 12px 0;
    font-size: 15px;
    color: #333;
    line-height: 1.8;
}

.privacy-contact-info p strong {
    color: #0088CC;
    font-weight: 600;
    margin-right: 8px;
}

.privacy-contact-info a {
    color: #0088CC;
    text-decoration: none;
    word-break: break-all;
}

.privacy-contact-info a:hover {
    text-decoration: underline;
    color: #006699;
}

.privacy-last-updated {
    margin-top: 30px;
    padding-top: 20px;
    border-top: 2px solid #e0e0e0;
    font-size: 14px;
    color: #888;
    font-style: italic;
    text-align: center;
}

/* RTL Support for Privacy Policy */
body[dir="rtl"] .privacy-policy-intro {
    border-left: none;
    border-right: 4px solid #0088CC;
}

body[dir="rtl"] .privacy-list li {
    padding-left: 0;
    padding-right: 25px;
}

body[dir="rtl"] .privacy-list li:before {
    left: auto;
    right: 0;
}

body[dir="rtl"] .privacy-contact-info {
    border-left: none;
    border-right: 4px solid #0088CC;
}

/* Responsive Design for Privacy Policy */
@media (max-width: 768px) {
    .privacy-policy-content {
        padding: 20px 15px;
    }
    
    .privacy-policy-title {
        font-size: 24px;
    }
    
    .privacy-section {
        padding: 15px;
    }
    
    .privacy-section-title {
        font-size: 18px;
    }
    
    .privacy-section p,
    .privacy-list li {
        font-size: 14px;
    }
}

/* Google Maps Button Overlay */
.google-map {
    position: relative;
}

.google-map a[href*="maps.app.goo.gl"] {
    position: absolute;
    top: 10px;
    right: 10px;
    z-index: 1000;
    background: #0088CC;
    color: white !important;
    padding: 10px 15px;
    border-radius: 4px;
    text-decoration: none;
    font-weight: bold;
    box-shadow: 0 2px 5px rgba(0,0,0,0.3);
    transition: background-color 0.3s ease;
    display: inline-block;
}

.google-map a[href*="maps.app.goo.gl"]:hover {
    background: #006699;
    color: white !important;
    text-decoration: none;
}

.google-map a[href*="maps.app.goo.gl"] i {
    margin-right: 5px;
}

/* RTL Support for Google Maps Button */
body[dir="rtl"] .google-map a[href*="maps.app.goo.gl"] {
    right: auto;
    left: 10px;
}

body[dir="rtl"] .google-map a[href*="maps.app.goo.gl"] i {
    margin-right: 0;
    margin-left: 5px;
}

/* Responsive Design for Google Maps Button */
@media (max-width: 768px) {
    .google-map a[href*="maps.app.goo.gl"] {
        padding: 8px 12px;
        font-size: 14px;
        top: 5px;
        right: 5px;
    }
    
    body[dir="rtl"] .google-map a[href*="maps.app.goo.gl"] {
        left: 5px;
    }
}
