/* 
 * Quality Doors - Main Stylesheet
 * Version: 2.0
 */

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

/* CSS Variables */
:root {
    --gold: #FFD700;
    --dark-gold: #B8860B;
    --black: #000000;
    --dark-gray: #1a1a1a;
    --medium-gray: #2a2a2a;
    --light-gray: #f5f5f5;
    --white: #ffffff;
    --success: #28a745;
    --danger: #dc3545;
    --warning: #ffc107;
    --info: #17a2b8;
    --transition: all 0.3s ease;
    --shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    --shadow-hover: 0 8px 25px rgba(0, 0, 0, 0.15);
}

/* Base Styles */
html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--white);
    background: var(--black);
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    margin-bottom: 1rem;
    font-weight: 600;
    line-height: 1.2;
}

h1 { font-size: 2.5rem; }
h2 { font-size: 2rem; }
h3 { font-size: 1.75rem; }
h4 { font-size: 1.5rem; }
h5 { font-size: 1.25rem; }
h6 { font-size: 1rem; }

p {
    margin-bottom: 1rem;
}

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

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Logo Styles */
.logo {
    display: flex;
    align-items: center;
    flex-shrink: 0;
}

.logo-image {
    height: 60px;
    width: auto;
    max-width: 200px;
    object-fit: contain;
    transition: var(--transition);
}

.logo-image:hover {
    transform: scale(1.05);
}

.logo-text h1 {
    color: var(--gold);
    font-size: 1.8rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
    margin: 0;
    line-height: 1.2;
}

.logo-text span {
    display: block;
    font-size: 0.9rem;
    color: var(--white);
    opacity: 0.8;
    margin-top: 0.2rem;
    line-height: 1.1;
}

/* Header */
#header {
    background: linear-gradient(135deg, var(--black) 0%, var(--dark-gray) 100%);
    padding: 1rem 0;
    border-bottom: 3px solid var(--gold);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

#header.scrolled {
    background: rgba(26, 26, 26, 0.95);
    backdrop-filter: blur(10px);
}

.nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
}

.nav-links a {
    color: var(--white);
    font-weight: 500;
    padding: 0.5rem 1rem;
    border-radius: 4px;
    transition: var(--transition);
    position: relative;
}

.nav-links a:hover {
    color: var(--gold);
    transform: translateY(-2px);
}

.nav-links a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 50%;
    background: var(--gold);
    transition: var(--transition);
}

.nav-links a:hover::after {
    width: 100%;
    left: 0;
}

/* Mobile Menu */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: 0.5rem;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: var(--gold);
    margin: 3px 0;
    transition: var(--transition);
}

.mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
}

/* Hero Section */
.hero {
    margin-top: 100px;
    min-height: 80vh;
    background: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7)),
                radial-gradient(circle at 50% 50%, var(--dark-gray) 0%, var(--black) 100%);
    position: relative;
    overflow: hidden;
    will-change: transform;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 1000"><polygon fill="%23FFD700" fill-opacity="0.05" points="0,1000 1000,1000 1000,0 0,200"/></svg>');
    background-size: cover;
}

/* Contact Bar */
.contact-bar {
    background: var(--dark-gray);
    padding: 1rem 0;
    border-top: 2px solid var(--gold);
    border-bottom: 2px solid var(--gold);
    position: relative;
    z-index: 2;
}

.contact-info {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 1rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--white);
}

.contact-item i {
    color: var(--gold);
    font-size: 1.2rem;
}

/* Slider */
.slider {
    position: relative;
    height: 400px;
    overflow: hidden;
    border: 2px solid var(--gold);
    border-radius: 10px;
    margin: 2rem 0;
    box-shadow: var(--shadow);
}

.slide {
    position: absolute;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease-in-out;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--dark-gray) 0%, var(--black) 100%);
}

.slide.active {
    opacity: 1;
}

.slide-content {
    text-align: center;
    padding: 2rem;
    max-width: 600px;
}

.slide h2 {
    font-size: 3rem;
    color: var(--gold);
    margin-bottom: 1rem;
    text-shadow: 3px 3px 6px rgba(0,0,0,0.7);
    animation: slideInUp 0.8s ease-out;
}

.slide p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
    animation: slideInUp 0.8s ease-out 0.2s both;
}

/* Buttons */
.btn-gold {
    background: linear-gradient(135deg, var(--gold) 0%, var(--dark-gold) 100%);
    color: var(--black);
    padding: 1rem 2rem;
    border: none;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    text-decoration: none;
    display: inline-block;
    box-shadow: var(--shadow);
    animation: slideInUp 0.8s ease-out 0.4s both;
}

.btn-gold:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-hover);
    background: linear-gradient(135deg, var(--dark-gold) 0%, var(--gold) 100%);
}

.btn-gold i {
    margin-right: 0.5rem;
}

.btn-outline {
    background: transparent;
    color: var(--gold);
    padding: 0.8rem 1.5rem;
    border: 2px solid var(--gold);
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    text-decoration: none;
    display: inline-block;
}

.btn-outline:hover {
    background: var(--gold);
    color: var(--black);
    transform: translateY(-2px);
}

/* Section Titles */
.section-title {
    text-align: center;
    font-size: 2.5rem;
    color: var(--gold);
    margin-bottom: 3rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: var(--gold);
}

/* Video Section */
.video-section {
    padding: 4rem 0;
    background: linear-gradient(rgba(0,0,0,0.9), rgba(0,0,0,0.9)),
                url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 500"><circle cx="100" cy="100" r="80" fill="%23FFD700" fill-opacity="0.03"/><circle cx="900" cy="400" r="120" fill="%23FFD700" fill-opacity="0.03"/></svg>');
}

.video-container {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
    border: 3px solid var(--gold);
    border-radius: 10px;
    box-shadow: var(--shadow);
}

.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

/* Categories Section */
.categories-section {
    padding: 4rem 0;
    background: var(--black);
}

.categories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.category-card {
    background: var(--dark-gray);
    border: 2px solid var(--gold);
    border-radius: 15px;
    overflow: hidden;
    transition: var(--transition);
    cursor: pointer;
    position: relative;
}

.category-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
    border-color: var(--dark-gold);
}

.category-image {
    height: 200px;
    background: linear-gradient(135deg, var(--medium-gray) 0%, var(--dark-gray) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    font-size: 4rem;
    transition: var(--transition);
    padding: 20px;
}

.category-card:hover .category-image {
    background: linear-gradient(135deg, var(--gold) 0%, var(--dark-gold) 100%);
    color: var(--black);
}

.category-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
}

.category-card:hover .category-image img {
    transform: scale(1.02);
    filter: brightness(1.05);
}

.category-image i {
    opacity: 0.6;
}

.category-info {
    padding: 1.5rem;
}

.category-info h3 {
    color: var(--gold);
    margin-bottom: 0.5rem;
    font-size: 1.3rem;
}

.category-info p {
    color: var(--white);
    opacity: 0.8;
    margin-bottom: 1rem;
    font-size: 0.9rem;
}

/* Products Section */
.products-section {
    padding: 4rem 0;
    background: linear-gradient(rgba(0,0,0,0.8), rgba(0,0,0,0.8)),
                url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 800"><path fill="none" stroke="%23FFD700" stroke-width="2" stroke-opacity="0.1" d="M0 400Q300 300 600 400T1200 400"/></svg>');
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.product-card {
    background: var(--dark-gray);
    border: 2px solid var(--gold);
    border-radius: 15px;
    overflow: hidden;
    transition: var(--transition);
    cursor: pointer;
    position: relative;
}

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

.product-image {
    height: 200px;
    background: var(--medium-gray);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    font-size: 3rem;
    position: relative;
    overflow: hidden;
    padding: 20px;
}

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

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

.product-image i {
    opacity: 0.6;
}

.product-image img[src] {
    min-width: 50px;
    min-height: 50px;
}

.product-info {
    padding: 1.5rem;
}

.product-name {
    color: var(--gold);
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.product-price {
    font-size: 1.4rem;
    font-weight: bold;
    color: var(--white);
    margin-bottom: 1rem;
}

.product-category {
    font-size: 0.9rem;
    color: var(--gold);
    opacity: 0.8;
    margin-bottom: 0.5rem;
    font-style: italic;
}

.product-actions {
    display: flex;
    gap: 0.5rem;
}

.btn-view, .btn-pdf {
    padding: 0.5rem 1rem;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 0.9rem;
    transition: var(--transition);
}

.btn-view {
    background: var(--gold);
    color: var(--black);
    flex: 1;
}

.btn-pdf {
    background: var(--info);
    color: var(--white);
}

.btn-view:hover, .btn-pdf:hover {
    transform: translateY(-2px);
}

.no-products {
    grid-column: 1 / -1;
    text-align: center;
    padding: 3rem;
    color: var(--gold);
    font-size: 1.2rem;
}

/* About Section */
.about-section {
    padding: 4rem 0;
    background: var(--dark-gray);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.about-description {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.features-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.feature {
    text-align: center;
    padding: 1rem;
}

.feature i {
    font-size: 2.5rem;
    color: var(--gold);
    margin-bottom: 1rem;
}

.feature h4 {
    color: var(--gold);
    margin-bottom: 0.5rem;
}

.feature p {
    font-size: 0.9rem;
    opacity: 0.8;
}

.about-image img {
    border-radius: 10px;
    box-shadow: var(--shadow);
}

/* Contact Section */
.contact-section {
    padding: 4rem 0;
    background: var(--black);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
}

.contact-form {
    background: var(--dark-gray);
    padding: 2rem;
    border-radius: 15px;
    border: 2px solid var(--gold);
}

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

.form-group {
    margin-bottom: 1rem;
}

.form-group label {
    display: block;
    color: var(--gold);
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.8rem;
    background: var(--medium-gray);
    border: 2px solid var(--gold);
    border-radius: 8px;
    color: var(--white);
    font-size: 1rem;
    transition: var(--transition);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    box-shadow: 0 0 10px rgba(255, 215, 0, 0.3);
    border-color: var(--dark-gold);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.contact-form button[type="submit"] {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.contact-info-container {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-details {
    background: var(--dark-gray);
    padding: 2rem;
    border-radius: 15px;
    border: 2px solid var(--gold);
}

.contact-details h3 {
    color: var(--gold);
    margin-bottom: 1.5rem;
}

.contact-details .contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1rem;
}

.contact-details .contact-item i {
    color: var(--gold);
    font-size: 1.2rem;
    margin-top: 0.2rem;
}

.map-container {
    height: 300px;
    border-radius: 10px;
    overflow: hidden;
    border: 2px solid var(--gold);
}

#map {
    width: 100%;
    height: 100%;
}

/* Footer */
.footer {
    background: var(--black);
    padding: 3rem 0 1rem;
    border-top: 3px solid var(--gold);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h3 {
    color: var(--gold);
    margin-bottom: 1rem;
}

.footer-section p,
.footer-section li {
    color: var(--white);
    opacity: 0.8;
    line-height: 1.6;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section a {
    color: var(--white);
    opacity: 0.8;
    transition: var(--transition);
}

.footer-section a:hover {
    color: var(--gold);
    opacity: 1;
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: var(--gold);
    color: var(--black);
    border-radius: 50%;
    transition: var(--transition);
}

.social-links a:hover {
    background: var(--white);
    transform: translateY(-3px);
}

.social-links a:focus {
    outline: 2px solid var(--gold);
    outline-offset: 2px;
}

.footer-contact p {
    margin-bottom: 0.5rem;
}

.footer-contact i {
    color: var(--gold);
    margin-right: 0.5rem;
}

.working-hours p {
    margin-bottom: 0.2rem;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid var(--gold);
    color: var(--gold);
}

/* Admin Button */
.admin-btn {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: var(--gold);
    color: var(--black);
    width: 10px;
    height: 10px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    z-index: 1000;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.admin-btn:hover {
    transform: scale(1.1);
    box-shadow: var(--shadow-hover);
}

.admin-btn:focus {
    outline: 2px solid var(--gold);
    outline-offset: 2px;
}

/* Modal */
.modal {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(5px);
}

.modal-content {
    background-color: var(--dark-gray);
    margin: 5% auto;
    padding: 0;
    border: 2px solid var(--gold);
    border-radius: 15px;
    width: 90%;
    max-width: 800px;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
}

.modal-close {
    color: var(--gold);
    float: right;
    font-size: 28px;
    font-weight: bold;
    position: absolute;
    top: 10px;
    right: 20px;
    cursor: pointer;
    z-index: 10000;
}

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

.modal-close:focus {
    outline: 2px solid var(--gold);
    outline-offset: 2px;
}

#modalBody {
    padding: 2rem;
}

.modal-product-image {
    text-align: center;
    margin-bottom: 20px;
    background: var(--dark-gray);
    border-radius: 10px;
    padding: 30px;
    min-height: 350px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-product-image img {
    max-width: 100%;
    max-height: 300px;
    object-fit: contain;
    object-position: center;
    border-radius: 8px;
    border: 2px solid var(--gold);
}

.modal-content img {
    max-width: 100%;
    object-fit: contain;
    object-position: center;
    border-radius: 8px;
}

/* Notification */
.notification {
    position: fixed;
    top: 100px;
    right: 20px;
    background: var(--dark-gray);
    color: var(--white);
    padding: 1rem 1.5rem;
    border-radius: 10px;
    border: 2px solid var(--gold);
    box-shadow: var(--shadow);
    z-index: 10000;
    transform: translateX(400px);
    transition: var(--transition);
}

.notification.show {
    transform: translateX(0);
}

.notification-success {
    border-color: var(--success);
}

.notification-error {
    border-color: var(--danger);
}

.notification-warning {
    border-color: var(--warning);
}

.notification button {
    background: none;
    border: none;
    color: var(--gold);
    font-size: 1.2rem;
    cursor: pointer;
    margin-left: 1rem;
}

/* Loading States */
.loading-placeholder {
    background: linear-gradient(90deg, var(--medium-gray) 25%, var(--dark-gray) 50%, var(--medium-gray) 75%);
    background-size: 200% 100%;
    animation: loading-shimmer 1.5s infinite;
}

@keyframes loading-shimmer {
    0% { background-position: -200% 0; }
    100% { background-position: 200% 0; }
}

.loading {
    display: inline-block;
    width: 20px;
    height: 20px;
    border: 3px solid var(--gold);
    border-top-color: transparent;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* Image Handling */
img[onerror] {
    transition: opacity 0.3s ease;
}

img.lazy {
    opacity: 0;
    transition: opacity 0.3s;
}

img.lazy.loaded {
    opacity: 1;
}

/* Utility Classes */
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }

.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }

.mb-1 { margin-bottom: 0.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }

.hidden { display: none; }
.visible { display: block; }

/* Animations */
@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.animate-on-scroll.animated {
    opacity: 1;
    transform: translateY(0);
}

/* Responsive Design */
@media (max-width: 768px) {
    .logo-image {
        height: 40px;
        max-width: 150px;
    }
    
    .logo-text h1 {
        font-size: 1.4rem;
    }
    
    .logo-text span {
        font-size: 0.8rem;
    }

    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: var(--dark-gray);
        flex-direction: column;
        padding: 1rem;
        border-bottom: 3px solid var(--gold);
        box-shadow: var(--shadow);
    }

    .nav-links.active {
        display: flex;
    }

    .mobile-menu-toggle {
        display: flex;
    }

    .slide h2 {
        font-size: 2rem;
    }

    .slide p {
        font-size: 1rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .categories-grid,
    .products-grid {
        grid-template-columns: 1fr;
    }

    .about-content,
    .contact-content {
        grid-template-columns: 1fr;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .contact-info {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .hero {
        margin-top: 80px;
    }

    .container {
        padding: 0 15px;
    }

    .product-image,
    .category-image {
        height: 180px;
        padding: 15px;
    }
    
    .modal-product-image {
        min-height: 280px;
        padding: 20px;
    }
    
    .modal-product-image img {
        max-height: 250px;
    }
}

@media (max-width: 480px) {
    .logo-image {
        height: 35px;
        max-width: 120px;
    }
    
    .logo-text h1 {
        font-size: 1.2rem;
    }
    
    .logo-text span {
        font-size: 0.7rem;
    }

    .slide h2 {
        font-size: 1.8rem;
    }

    .section-title {
        font-size: 1.8rem;
    }

    .btn-gold {
        padding: 0.8rem 1.5rem;
        font-size: 1rem;
    }

    .modal-content {
        width: 95%;
        margin: 10% auto;
    }

    .admin-btn {
        bottom: 15px;
        right: 15px;
        width: 45px;
        height: 45px;
    }

    .product-image,
    .category-image {
        height: 160px;
        padding: 12px;
    }
    
    .modal-product-image {
        min-height: 220px;
        padding: 15px;
    }
    
    .modal-product-image img {
        max-height: 200px;
    }
}