/* Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&family=Outfit:wght@300;400;500;600;700;900&display=swap');

/* Reset and Variables */
:root {
    --primary: #0a3d62;       /* Deep surgical blue */
    --primary-light: #3c6382; /* Muted medical blue */
    --accent: #00bcd4;        /* Cyan accent for surgical precision */
    --dark: #1e272e;          /* Steel charcoal */
    --dark-light: #2c3e50;    /* Muted dark */
    --light: #f4f7f6;         /* Sterile light gray */
    --gray: #e2e8f0;          /* Border gray */
    --white: #ffffff;
    --text: #2f3640;
    --text-muted: #7f8c8d;
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;
    --shadow-sm: 0 2px 8px rgba(0,0,0,0.05);
    --shadow: 0 10px 30px rgba(10,61,98,0.05);
    --shadow-lg: 0 20px 40px rgba(10,61,98,0.1);
    --radius: 12px;
    --radius-sm: 6px;
    --transition: all 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-body);
    background-color: var(--light);
    color: var(--text);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    color: var(--dark);
    line-height: 1.2;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

/* Container */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Header & Navigation */
header {
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow-sm);
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid var(--gray);
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
}

.logo-wrapper a {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-img {
    height: 50px;
    width: auto;
    object-fit: contain;
}

.logo-text {
    font-size: 22px;
    font-weight: 900;
    color: var(--primary);
    letter-spacing: 1px;
    text-transform: uppercase;
    font-family: var(--font-heading);
}

.logo-text span {
    color: var(--accent);
}

.nav-menu {
    display: flex;
    align-items: center;
    list-style: none;
    gap: 32px;
}

.nav-link {
    font-weight: 500;
    font-size: 15px;
    color: var(--dark-light);
    position: relative;
    padding: 8px 0;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--accent);
    transition: var(--transition);
}

.nav-link:hover, .nav-link.active {
    color: var(--primary);
}

.nav-link:hover::after, .nav-link.active::after {
    width: 100%;
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 20px;
}

/* Language Switcher */
.lang-switcher {
    display: flex;
    background-color: var(--gray);
    padding: 4px;
    border-radius: var(--radius-sm);
}

.lang-btn {
    padding: 6px 12px;
    font-size: 13px;
    font-weight: 600;
    border-radius: 4px;
    color: var(--dark-light);
    border: none;
    background: transparent;
    cursor: pointer;
    transition: var(--transition);
}

.lang-btn.active {
    background-color: var(--white);
    color: var(--primary);
    box-shadow: var(--shadow-sm);
}

/* Mobile Nav Toggle */
.nav-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    color: var(--dark);
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, rgba(10, 61, 98, 0.95), rgba(20, 30, 48, 0.9)), url('../images/hero-bg.jpg') center/cover no-repeat;
    min-height: 550px;
    display: flex;
    align-items: center;
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 80px;
    background: linear-gradient(to top, var(--light), transparent);
    pointer-events: none;
}

.hero-content {
    max-width: 650px;
}

.hero-tagline {
    color: var(--accent);
    text-transform: uppercase;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 2px;
    margin-bottom: 16px;
    display: inline-block;
    border-left: 3px solid var(--accent);
    padding-left: 10px;
}

.hero-title {
    font-size: 52px;
    color: var(--white);
    margin-bottom: 24px;
    font-weight: 800;
}

.hero-desc {
    font-size: 18px;
    opacity: 0.9;
    margin-bottom: 36px;
    font-weight: 300;
}

.btn {
    display: inline-block;
    padding: 14px 32px;
    border-radius: var(--radius-sm);
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    border: none;
}

.btn-primary {
    background-color: var(--accent);
    color: var(--dark);
}

.btn-primary:hover {
    background-color: var(--white);
    color: var(--primary);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-secondary {
    background-color: transparent;
    color: var(--white);
    border: 2px solid rgba(255, 255, 255, 0.3);
    margin-left: 15px;
}

.btn-secondary:hover {
    border-color: var(--white);
    background-color: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
}

/* Section Common */
.section {
    padding: 90px 0;
}

.section-bg {
    background-color: var(--white);
}

.section-header {
    text-align: center;
    max-width: 650px;
    margin: 0 auto 60px auto;
}

.section-subtitle {
    color: var(--primary-light);
    text-transform: uppercase;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 2px;
    margin-bottom: 12px;
    display: block;
}

.section-title {
    font-size: 36px;
    color: var(--dark);
    position: relative;
    padding-bottom: 16px;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background-color: var(--accent);
    border-radius: 2px;
}

/* Feature Grid (Why Us) */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}

.feature-card {
    background-color: var(--white);
    padding: 40px;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    border: 1px solid rgba(10, 61, 98, 0.03);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background-color: var(--primary);
    opacity: 0;
    transition: var(--transition);
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.feature-card:hover::before {
    opacity: 1;
}

.feature-icon-wrapper {
    width: 60px;
    height: 60px;
    background-color: rgba(0, 188, 212, 0.1);
    color: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 24px;
}

.feature-card-title {
    font-size: 20px;
    margin-bottom: 16px;
    color: var(--dark);
}

.feature-card-text {
    color: var(--text-muted);
    font-size: 14px;
    line-height: 1.7;
}

/* Info Cards for Corporate page */
.corp-layout {
    display: grid;
    grid-template-columns: 1fr;
    gap: 50px;
}

.corp-main {
    background: var(--white);
    padding: 50px;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

.corp-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.corp-box {
    background: rgba(10, 61, 98, 0.02);
    border: 1px solid var(--gray);
    padding: 35px;
    border-radius: var(--radius);
}

/* Products Section Layout (karaoglucerrahi-like catalog) */
.catalog-layout {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 40px;
    align-items: start;
}

/* Sidebar Catalog styling */
.catalog-sidebar {
    background-color: var(--white);
    border-radius: var(--radius);
    padding: 24px;
    box-shadow: var(--shadow);
    border: 1px solid var(--gray);
    position: sticky;
    top: 100px;
}

.sidebar-title {
    font-size: 18px;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--primary);
}

.category-list {
    list-style: none;
}

.category-item {
    margin-bottom: 8px;
}

.category-link {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 16px;
    border-radius: var(--radius-sm);
    color: var(--dark-light);
    font-weight: 500;
    font-size: 14px;
    background-color: var(--light);
}

.category-link:hover, .category-link.active {
    background-color: var(--primary);
    color: var(--white);
}

.category-badge {
    background-color: rgba(0, 0, 0, 0.05);
    padding: 2px 8px;
    border-radius: 10px;
    font-size: 11px;
}

.category-link.active .category-badge {
    background-color: rgba(255, 255, 255, 0.2);
}

/* Product Search Bar */
.search-container {
    margin-bottom: 30px;
}

.search-box {
    width: 100%;
    padding: 14px 20px;
    border-radius: var(--radius);
    border: 1px solid var(--gray);
    font-family: var(--font-body);
    font-size: 14px;
    background-color: var(--white);
    box-shadow: var(--shadow-sm);
    outline: none;
    transition: var(--transition);
}

.search-box:focus {
    border-color: var(--primary);
    box-shadow: var(--shadow);
}

/* Catalog Products Grid */
.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    gap: 30px;
}

.product-card {
    background-color: var(--white);
    border-radius: var(--radius);
    border: 1px solid var(--gray);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.product-img-wrapper {
    width: 100%;
    height: 200px;
    background-color: #fcfcfc;
    border-bottom: 1px solid var(--gray);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 15px;
    overflow: hidden;
    position: relative;
}

.product-img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    transition: var(--transition);
}

.product-card:hover .product-img {
    transform: scale(1.05);
}

.product-info {
    padding: 20px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.product-code {
    font-size: 11px;
    font-weight: 700;
    color: var(--accent);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 6px;
}

.product-title {
    font-size: 16px;
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 10px;
    line-height: 1.3;
}

.product-desc-short {
    font-size: 13px;
    color: var(--text-muted);
    line-height: 1.5;
    margin-bottom: 20px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.product-btn-wrapper {
    margin-top: auto;
}

.product-view-btn {
    display: block;
    width: 100%;
    text-align: center;
    background-color: var(--light);
    color: var(--primary);
    padding: 10px;
    border-radius: var(--radius-sm);
    font-size: 13px;
    font-weight: 600;
    border: 1px solid rgba(10, 61, 98, 0.1);
    cursor: pointer;
    transition: var(--transition);
}

.product-card:hover .product-view-btn {
    background-color: var(--primary);
    color: var(--white);
    border-color: var(--primary);
}

/* Modal Popup for Product Detail */
.modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(30, 39, 46, 0.7);
    backdrop-filter: blur(5px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2000;
    opacity: 0;
    pointer-events: none;
    transition: var(--transition);
}

.modal.active {
    opacity: 1;
    pointer-events: all;
}

.modal-content {
    background-color: var(--white);
    border-radius: var(--radius);
    max-width: 700px;
    width: 90%;
    box-shadow: var(--shadow-lg);
    overflow: hidden;
    position: relative;
    transform: scale(0.9);
    transition: var(--transition);
}

.modal.active .modal-content {
    transform: scale(1);
}

.modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    color: var(--text-muted);
    transition: var(--transition);
    z-index: 10;
}

.modal-close:hover {
    color: var(--dark);
}

.modal-body {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    min-height: 350px;
}

.modal-img-wrapper {
    background-color: var(--light);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 30px;
    border-right: 1px solid var(--gray);
}

.modal-img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.modal-details {
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.modal-code {
    font-size: 12px;
    font-weight: 800;
    color: var(--accent);
    margin-bottom: 10px;
    letter-spacing: 1.5px;
}

.modal-title {
    font-size: 24px;
    color: var(--dark);
    margin-bottom: 20px;
}

.modal-desc {
    color: var(--text-muted);
    font-size: 14px;
    line-height: 1.7;
}

/* Contact Page Styles */
.contact-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
}

.contact-info-card {
    background-color: var(--white);
    padding: 45px;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    border: 1px solid var(--gray);
}

.contact-title {
    font-size: 24px;
    margin-bottom: 30px;
}

.contact-list {
    list-style: none;
}

.contact-item {
    display: flex;
    gap: 20px;
    margin-bottom: 24px;
}

.contact-icon {
    font-size: 20px;
    color: var(--accent);
    min-width: 24px;
}

.contact-text h5 {
    font-size: 15px;
    color: var(--dark);
    margin-bottom: 4px;
}

.contact-text p {
    font-size: 14px;
    color: var(--text-muted);
}

.contact-form-card {
    background-color: var(--white);
    padding: 45px;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    border: 1px solid var(--gray);
}

.form-group {
    margin-bottom: 20px;
}

.form-label {
    display: block;
    font-size: 13px;
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 8px;
}

.form-input {
    width: 100%;
    padding: 12px 16px;
    border-radius: var(--radius-sm);
    border: 1px solid var(--gray);
    font-family: var(--font-body);
    font-size: 14px;
    outline: none;
    transition: var(--transition);
}

.form-input:focus {
    border-color: var(--primary);
}

/* Footer Section */
footer {
    background-color: var(--dark);
    color: var(--white);
    padding: 80px 0 30px 0;
    font-size: 14px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 50px;
    margin-bottom: 60px;
}

.footer-logo-text {
    font-size: 24px;
    font-weight: 900;
    color: var(--white);
    letter-spacing: 1px;
    margin-bottom: 20px;
    font-family: var(--font-heading);
}

.footer-logo-text span {
    color: var(--accent);
}

.footer-desc {
    opacity: 0.7;
    margin-bottom: 24px;
    max-width: 320px;
}

.footer-title {
    font-size: 18px;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 24px;
    position: relative;
    padding-bottom: 8px;
}

.footer-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 2px;
    background-color: var(--accent);
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    opacity: 0.7;
}

.footer-links a:hover {
    opacity: 1;
    color: var(--accent);
    padding-left: 6px;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding-top: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    opacity: 0.6;
}

/* ADMIN PANEL STYLING */
.admin-login-body {
    background: linear-gradient(135deg, var(--primary), var(--dark));
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.login-card {
    background-color: var(--white);
    border-radius: var(--radius);
    padding: 50px;
    width: 100%;
    max-width: 450px;
    box-shadow: var(--shadow-lg);
}

.login-header {
    text-align: center;
    margin-bottom: 35px;
}

.login-logo {
    height: 70px;
    margin-bottom: 15px;
}

.admin-layout {
    display: grid;
    grid-template-columns: 260px 1fr;
    min-height: 100vh;
}

.admin-sidebar {
    background-color: var(--dark);
    color: var(--white);
    padding: 30px 20px;
    display: flex;
    flex-direction: column;
}

.admin-logo {
    font-size: 20px;
    font-weight: 800;
    margin-bottom: 40px;
    color: var(--white);
    text-align: center;
}

.admin-menu {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.admin-menu-link {
    display: flex;
    align-items: center;
    padding: 12px 16px;
    border-radius: var(--radius-sm);
    color: rgba(255, 255, 255, 0.7);
    font-weight: 500;
    font-size: 14px;
}

.admin-menu-link:hover, .admin-menu-link.active {
    background-color: rgba(255, 255, 255, 0.05);
    color: var(--white);
}

.admin-menu-link.active {
    background-color: var(--primary);
}

.admin-content {
    background-color: var(--light);
    padding: 40px;
}

.admin-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
    border-bottom: 1px solid var(--gray);
    padding-bottom: 20px;
}

.admin-card {
    background-color: var(--white);
    border-radius: var(--radius);
    padding: 30px;
    box-shadow: var(--shadow-sm);
    margin-bottom: 30px;
}

.admin-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 20px;
}

.admin-table th, .admin-table td {
    padding: 14px;
    text-align: left;
    border-bottom: 1px solid var(--gray);
    font-size: 14px;
}

.admin-table th {
    font-weight: 700;
    background-color: var(--light);
    color: var(--dark);
}

.admin-action-btn {
    padding: 6px 12px;
    font-size: 12px;
    font-weight: 600;
    border-radius: 4px;
    cursor: pointer;
    border: none;
    margin-right: 5px;
}

.btn-edit {
    background-color: #ffeaa7;
    color: #d63031;
}

.btn-delete {
    background-color: #ff7675;
    color: #ffffff;
}

.alert {
    padding: 15px;
    border-radius: var(--radius-sm);
    margin-bottom: 20px;
    font-size: 14px;
}

.alert-success {
    background-color: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.alert-danger {
    background-color: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

/* WhatsApp Float */
.whatsapp-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 30px;
    right: 30px;
    background-color: #25d366;
    color: #fff;
    border-radius: 50px;
    text-align: center;
    font-size: 30px;
    box-shadow: 2px 2px 10px rgba(0,0,0,0.3);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease, background-color 0.3s ease;
    text-decoration: none;
}
.whatsapp-float:hover {
    transform: scale(1.1);
    background-color: #128c7e;
    color: #fff;
}

/* Responsive Styles */
@media (max-width: 992px) {
    .catalog-layout {
        grid-template-columns: 1fr;
    }
    .catalog-sidebar {
        position: static;
    }
    .contact-layout {
        grid-template-columns: 1fr;
    }
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

@media (max-width: 768px) {
    header {
        position: relative;
    }
    .nav-menu {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background-color: var(--white);
        padding: 30px 20px;
        box-shadow: var(--shadow-lg);
        gap: 20px;
        z-index: 1000;
        border-top: 1px solid var(--gray);
    }
    .nav-menu.active {
        display: flex;
    }
    .nav-link {
        display: block;
        padding: 10px 0;
        font-size: 16px;
        border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    }
    .nav-link::after {
        display: none;
    }
    .nav-toggle {
        display: block;
    }
    .hero {
        min-height: auto;
        padding: 80px 0;
    }
    .hero-title {
        font-size: 34px;
        line-height: 1.2;
    }
    .hero-desc {
        font-size: 16px;
    }
    .btn-secondary {
        margin-left: 0;
        margin-top: 15px;
        display: block;
        width: 100%;
        text-align: center;
    }
    .btn {
        display: block;
        width: 100%;
        text-align: center;
    }
    .form-row {
        grid-template-columns: 1fr;
        gap: 15px;
        margin-bottom: 15px;
    }
    .corp-grid {
        grid-template-columns: 1fr;
    }
    .corp-main {
        padding: 25px;
    }
    .corp-box {
        padding: 20px;
    }
    .admin-layout {
        grid-template-columns: 1fr;
    }
    .admin-sidebar {
        display: none;
    }
    .modal-body {
        grid-template-columns: 1fr;
    }
    .modal-img-wrapper {
        border-right: none;
        border-bottom: 1px solid var(--gray);
        height: 250px;
    }
    .modal-details {
        padding: 25px;
    }
    .footer-bottom {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
    .whatsapp-float {
        width: 50px;
        height: 50px;
        bottom: 20px;
        right: 20px;
        font-size: 24px;
    }
}

/* Order Form / Autocomplete & Print styles */
.autocomplete-list {
    display: none;
    position: absolute;
    left: 0;
    right: 0;
    background-color: var(--white);
    border: 1px solid var(--gray);
    border-radius: var(--radius-sm);
    max-height: 250px;
    overflow-y: auto;
    z-index: 1000;
    box-shadow: var(--shadow-lg);
    margin-top: 5px;
}
.autocomplete-item {
    padding: 12px 15px;
    cursor: pointer;
    border-bottom: 1px solid var(--gray);
    font-size: 14px;
    transition: background-color 0.2s, color 0.2s;
    text-align: left;
}
.autocomplete-item:last-child {
    border-bottom: none;
}
.autocomplete-item:hover {
    background-color: var(--light);
    color: var(--primary);
}
.autocomplete-code {
    font-weight: 700;
    color: var(--accent);
    margin-right: 8px;
}
.print-receipt-card {
    background-color: var(--white);
    border-radius: var(--radius);
    padding: 50px;
    box-shadow: var(--shadow-lg);
    max-width: 800px;
    margin: 0 auto;
    border: 1px solid var(--gray);
}
.qty-edit-input {
    width: 70px;
    text-align: center;
    padding: 5px;
}
@media print {
    header, footer, .no-print, .whatsapp-float {
        display: none !important;
    }
    body {
        background-color: #fff !important;
        color: #000 !important;
    }
    .section {
        padding: 0 !important;
        background-color: transparent !important;
    }
    .print-receipt-card {
        box-shadow: none !important;
        padding: 0 !important;
        border: none !important;
        margin: 0 !important;
        max-width: 100% !important;
    }
    table {
        border-collapse: collapse !important;
    }
    table th, table td {
        border: 1px solid #000 !important;
    }
}
