@import url("https://site-assets.fontawesome.com/releases/v6.7.2/css/all.css");
@import url("https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100..900;1,100..900&display=swap");
@import url("kontakt.css");
@import url("posao.css");
:root {
    --primary-color: #2154ad;
    --secondary-color: #fff;
    --hover-overlay: rgba(255, 255, 255, 0.1);
    --hover-overlay-light: rgba(255, 255, 255, 0.05);
    --border-color: #eee;
    --background-light: #f8f9fa;
    --shadow-color: rgba(0, 0, 0, 0.1);
    --shadow-dark: rgba(0, 0, 0, 0.05);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: "Roboto", sans-serif;
    line-height: 1.6;
}

.navbar {
    background-color: var(--primary-color);
    padding: 0;
    box-shadow: 0 2px 4px var(--shadow-color);
    z-index: 100;
    position: relative;
}

.nav-container {
    max-width: 100%;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 20px;
    max-width: 1200px;
}

.nav-logo {
    position: relative;
    z-index: 101;
}

.nav-logo a {
    color: var(--secondary-color);
    text-decoration: none;
    font-size: 24px;
    font-weight: bold;
    padding: 0;
    display: flex;
}

.nav-logo a img {
    height: 80px;
    width: auto;
    box-shadow: 0 4px 8px var(--shadow-color);
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 0;
}

.nav-item {
    position: relative;
}

.nav-link {
    color: var(--secondary-color);
    text-decoration: none;
    padding: 20px 15px;
    display: block;
    transition: background-color 0.3s ease;
}

.nav-link:hover {
    background-color: var(--hover-overlay);
}

.dropdown-toggle {
    display: flex;
    align-items: center;
    gap: 5px;
}

.arrow {
    font-size: 12px;
    transition: transform 0.3s ease;
}

.dropdown:hover .arrow {
    transform: rotate(180deg);
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background-color: var(--secondary-color);
    min-width: 200px;
    box-shadow: 0 4px 6px var(--shadow-color);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 1000;
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-item {
    color: var(--primary-color);
    text-decoration: none;
    padding: 12px 15px;
    display: block;
    transition: background-color 0.3s ease;
    position: relative;
}

.dropdown-item:hover {
    background-color: var(--background-light);
}

.dropdown-submenu {
    position: relative;
}

.arrow-right {
    position: absolute;
    right: 10px;
    font-size: 10px;
    transition: transform 0.3s ease;
}

.dropdown-submenu:hover .arrow-right {
    transform: translateX(3px);
}

.submenu-content {
    position: absolute;
    top: 0;
    left: 100%;
    background-color: var(--secondary-color);
    min-width: 180px;
    box-shadow: 0 4px 6px var(--shadow-color);
    opacity: 0;
    visibility: hidden;
    transform: translateX(-10px);
    transition: all 0.3s ease;
}

.dropdown-submenu:hover .submenu-content {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
}

.submenu-item {
    color: var(--primary-color);
    text-decoration: none;
    padding: 10px 15px;
    display: block;
    transition: background-color 0.3s ease;
    border-left: 3px solid transparent;
}

.submenu-item:hover {
    background-color: var(--background-light);
    border-left-color: var(--primary-color);
}

.simple-dropdown .dropdown-item {
    border-bottom: 1px solid var(--border-color);
}

.simple-dropdown .dropdown-item:last-child {
    border-bottom: none;
}

.hamburger {
    display: none;
    cursor: pointer;
    padding: 5px;
    position: relative;
    width: 30px;
    height: 30px;
    align-items: center;
    justify-content: center;
}

.hamburger-icon,
.close-icon {
    font-size: 20px;
    color: var(--secondary-color);
    transition: opacity 0.3s ease;
    position: absolute;
}

.close-icon {
    opacity: 0;
}

.hamburger.active .hamburger-icon {
    opacity: 0;
}

.hamburger.active .close-icon {
    opacity: 1;
}

.bar {
    display: none;
}

main {
    padding: 0;
    max-width: 100%;
    margin: 0;
}

/* Swiper Styles */
.swiper {
    width: 100%;
    height: 400px;
}

.swiper-slide {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.slide-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    position: absolute;
    top: 0;
    left: 0;
}

.slide-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /*background: linear-gradient(135deg, rgba(33, 84, 173, 0.8), rgba(26, 68, 153, 0.8));*/
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1;
}

.slide-content {
    text-align: center;
    padding: 40px 20px;
    max-width: 90%;
    width: 100%;
    color: var(--secondary-color);
}

.slide-content h2 {
    font-size: clamp(1.5rem, 4vw, 2.5rem);
    margin-bottom: 20px;
    font-weight: bold;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.slide-content p {
    font-size: clamp(1rem, 2.5vw, 1.2rem);
    opacity: 0.95;
    line-height: 1.6;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

/* Enhanced Responsive Swiper */
@media screen and (max-width: 1200px) {
    .swiper {
        height: 350px;
    }
}

@media screen and (max-width: 992px) {
    .swiper {
        height: 320px;
    }
    
    .slide-content {
        padding: 30px 15px;
        max-width: 95%;
    }
}

@media screen and (max-width: 768px) {
    .swiper {
        height: 280px;
    }
    
    .slide-content {
        padding: 25px 15px;
    }
    
    .slide-content h2 {
        margin-bottom: 15px;
    }
}

@media screen and (max-width: 576px) {
    .swiper {
        height: 250px;
    }
    
    .slide-content {
        padding: 20px 10px;
    }
    
    .slide-content h2 {
        margin-bottom: 12px;
    }
}

@media screen and (max-width: 480px) {
    .swiper {
        height: 220px;
    }
    
    .slide-content {
        padding: 15px 10px;
    }
    
    .slide-content h2 {
        margin-bottom: 10px;
    }
}

@media screen and (max-width: 360px) {
    .swiper {
        height: 200px;
    }
    
    .slide-content {
        padding: 10px 8px;
    }
}

/* Container utility */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* About Section Styles */
.about-section {
    padding: 80px 0;
    background-color: var(--background-light);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-text h2 {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 20px;
    font-weight: 700;
}

.about-text .lead {
    font-size: 1.25rem;
    font-weight: 500;
    color: #333;
    margin-bottom: 25px;
    line-height: 1.7;
}

.about-text p {
    font-size: 1rem;
    color: #666;
    margin-bottom: 20px;
    line-height: 1.6;
}

.about-cta {
    display: flex;
    gap: 20px;
    margin-top: 30px;
    flex-wrap: wrap;
}

.btn {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    text-align: center;
    min-width: 180px;
}

.btn-primary {
    background-color: var(--primary-color);
    color: var(--secondary-color);
    border-color: var(--primary-color);
}

.btn-primary:hover {
    background-color: #1a4499;
    border-color: #1a4499;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(33, 84, 173, 0.3);
}

.btn-outline {
    background-color: transparent;
    color: var(--primary-color);
    border-color: var(--primary-color);
}

.btn-outline:hover {
    background-color: var(--primary-color);
    color: var(--secondary-color);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(33, 84, 173, 0.2);
}

.about-image {
    position: relative;
    text-align: center;
}

.about-image img {
    width: 100%;
    max-width: 500px;
    border-radius: 12px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.about-stats {
    display: flex;
    justify-content: space-around;
    background-color: var(--secondary-color);
    border-radius: 12px;
    padding: 20px;
    margin-top: 30px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.stat {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 5px;
}

.stat-text {
    font-size: 0.9rem;
    color: #666;
    font-weight: 500;
}

/* Responsive About Section */
@media screen and (max-width: 992px) {
    .about-section {
        padding: 60px 0;
    }
    
    .about-content {
        gap: 40px;
    }
    
    .about-text h2 {
        font-size: 2.2rem;
    }
}

@media screen and (max-width: 768px) {
    .about-section {
        padding: 50px 0;
    }
    
    .about-content {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }
    
    .about-text h2 {
        font-size: 2rem;
    }
    
    .about-text .lead {
        font-size: 1.1rem;
    }
    
    .about-cta {
        justify-content: center;
    }
    
    .about-stats {
        flex-direction: column;
        gap: 15px;
    }
    
    .stat {
        padding: 10px 0;
        border-bottom: 1px solid var(--border-color);
    }
    
    .stat:last-child {
        border-bottom: none;
    }
}

@media screen and (max-width: 576px) {
    .about-cta {
        flex-direction: column;
        align-items: center;
    }
    
    .btn {
        width: 100%;
        max-width: 280px;
    }
    
    .about-text h2 {
        font-size: 1.8rem;
    }
}

@media screen and (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    .nav-logo a img {
        height: 80px;
    }

    main {
        margin: 0;
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 0;
        width: 100%;
        height: 100vh;
        flex-direction: column;
        background-color: var(--primary-color);
        text-align: left;
        transition: left 0.3s ease;
        box-shadow: 0 0 50px rgba(0, 0, 0, 0.3);
        z-index: 999;
        padding: 120px 0 40px 0;
        gap: 0;
        overflow-y: auto;
    }

    .nav-menu.active {
        left: 0;
    }

    /* Mobile menu close button */
    .nav-menu::before {
        content: '\f00d';
        font-family: 'Font Awesome 6 Pro';
        position: fixed;
        top: 30px;
        right: 30px;
        color: var(--secondary-color);
        font-size: 1.5rem;
        cursor: pointer;
        z-index: 1001;
        width: 40px;
        height: 40px;
        display: flex;
        align-items: center;
        justify-content: center;
        background: rgba(255, 255, 255, 0.1);
        border-radius: 50%;
        transition: all 0.3s ease;
        opacity: 0;
        visibility: hidden;
    }

    .nav-menu.active::before {
        opacity: 1;
        visibility: visible;
    }

    .nav-item {
        width: 100%;
        border-bottom: 1px solid var(--hover-overlay);
    }

    .nav-link {
        padding: 20px 30px;
        width: 100%;
        font-size: 1.1rem;
        border-bottom: none;
    }

    .dropdown-toggle {
        position: relative;
        cursor: pointer;
    }

    .dropdown-toggle .arrow {
        position: absolute;
        right: 30px;
        top: 50%;
        transform: translateY(-50%);
        transition: transform 0.3s ease;
        display: block;
    }

    .dropdown.active .dropdown-toggle .arrow {
        transform: translateY(-50%) rotate(180deg);
    }

    .dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        background-color: var(--hover-overlay);
        width: 100%;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
    }

    .dropdown.active .dropdown-menu {
        max-height: 500px;
    }

    .dropdown-item {
        color: var(--secondary-color);
        padding: 15px 60px;
        border-bottom: 1px solid var(--hover-overlay-light);
        position: relative;
        cursor: pointer;
    }

    .dropdown-item .arrow-right {
        position: absolute;
        right: 30px;
        top: 50%;
        transform: translateY(-50%);
        transition: transform 0.3s ease;
        display: block;
        cursor: pointer;
        padding: 5px;
        background: rgba(255, 255, 255, 0.1);
        border-radius: 50%;
        width: 25px;
        height: 25px;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .dropdown-submenu.active .dropdown-item .arrow-right {
        transform: translateY(-50%) rotate(90deg);
    }

    .dropdown-item:hover {
        background-color: var(--hover-overlay-light);
    }

    .submenu-content {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        background-color: var(--hover-overlay-light);
        width: 100%;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
    }

    .dropdown-submenu.active .submenu-content {
        max-height: 300px;
    }

    .submenu-item {
        color: var(--secondary-color);
        padding: 12px 90px;
        border-left: none;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        font-size: 0.95rem;
    }

    .submenu-item:hover {
        background-color: rgba(255, 255, 255, 0.1);
    }

    /* Prevent body scroll when menu is open */
    body.nav-open {
        overflow: hidden;
    }
}

/* Features Section Styles */
.features-section {
    padding: 80px 0;
    background-color: var(--secondary-color);
}

.features-header {
    text-align: center;
    margin-bottom: 60px;
}

.features-header h2 {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 15px;
    font-weight: 700;
}

.features-header p {
    font-size: 1.1rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto;
}

.feature-card {
    background-color: var(--background-light);
    padding: 40px 30px;
    border-radius: 12px;
    text-align: center;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.feature-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary-color);
    box-shadow: 0 8px 25px rgba(33, 84, 173, 0.15);
}

.feature-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color), #1a4499);
    border-radius: 50%;
    margin-bottom: 25px;
    box-shadow: 0 4px 15px rgba(33, 84, 173, 0.3);
}

.feature-icon i {
    font-size: 2rem;
    color: var(--secondary-color);
}

.feature-card h3 {
    font-size: 1.4rem;
    color: var(--primary-color);
    margin-bottom: 15px;
    font-weight: 600;
}

.feature-card p {
    font-size: 0.95rem;
    color: #666;
    line-height: 1.6;
    margin: 0;
}

/* Responsive Features Section */
@media screen and (max-width: 1200px) {
    .features-section {
        padding: 70px 0;
    }
    
    .features-header {
        margin-bottom: 50px;
    }
    
    .features-header h2 {
        font-size: 2.3rem;
    }
}

@media screen and (max-width: 992px) {
    .features-section {
        padding: 60px 0;
    }
    
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
    
    .features-header h2 {
        font-size: 2.1rem;
    }
    
    .feature-card {
        padding: 35px 25px;
    }
}

@media screen and (max-width: 768px) {
    .features-section {
        padding: 50px 0;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .features-header {
        margin-bottom: 40px;
    }
    
    .features-header h2 {
        font-size: 1.9rem;
    }
    
    .features-header p {
        font-size: 1rem;
    }
    
    .feature-card {
        padding: 30px 20px;
        max-width: 400px;
        margin: 0 auto;
    }
    
    .feature-icon {
        width: 70px;
        height: 70px;
        margin-bottom: 20px;
    }
    
    .feature-icon i {
        font-size: 1.8rem;
    }
    
    .feature-card h3 {
        font-size: 1.3rem;
        margin-bottom: 12px;
    }
}

@media screen and (max-width: 576px) {
    .features-section {
        padding: 40px 0;
    }
    
    .features-header h2 {
        font-size: 1.7rem;
        margin-bottom: 12px;
    }
    
    .features-header p {
        font-size: 0.95rem;
    }
    
    .feature-card {
        padding: 25px 15px;
    }
    
    .feature-icon {
        width: 60px;
        height: 60px;
        margin-bottom: 18px;
    }
    
    .feature-icon i {
        font-size: 1.6rem;
    }
    
    .feature-card h3 {
        font-size: 1.2rem;
        margin-bottom: 10px;
    }
    
    .feature-card p {
        font-size: 0.9rem;
    }
}

@media screen and (max-width: 360px) {
    .features-section {
        padding: 35px 0;
    }
    
    .features-header h2 {
        font-size: 1.5rem;
    }
    
    .feature-card {
        padding: 20px 12px;
    }
    
    .feature-icon {
        width: 55px;
        height: 55px;
    }
    
    .feature-icon i {
        font-size: 1.4rem;
    }
}

/* Footer Styles */
.footer {
    background-color: #1a1a1a;
    color: #fff;
    padding: 60px 0 0;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-section h3,
.footer-section h4 {
    color: var(--secondary-color);
    margin-bottom: 20px;
    font-weight: 600;
}

.footer-section h3 {
    font-size: 1.5rem;
}

.footer-section h4 {
    font-size: 1.2rem;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.footer-logo img {
    height: 50px;
    width: auto;
}

.footer-section p {
    color: #ccc;
    line-height: 1.6;
    margin-bottom: 25px;
}

.footer-social {
    display: flex;
    gap: 15px;
}

.footer-social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: var(--primary-color);
    border-radius: 50%;
    color: var(--secondary-color);
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-social a:hover {
    background-color: #1a4499;
    transform: translateY(-3px);
    box-shadow: 0 4px 12px rgba(33, 84, 173, 0.4);
}

.footer-section ul {
    list-style: none;
    padding: 0;
}

.footer-section ul li {
    margin-bottom: 12px;
}

.footer-section ul li a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s ease;
    position: relative;
}

.footer-section ul li a:hover {
    color: var(--primary-color);
}

.footer-section ul li a::before {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -2px;
    left: 0;
    background-color: var(--primary-color);
    transition: width 0.3s ease;
}

.footer-section ul li a:hover::before {
    width: 100%;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    color: #ccc;
}

.contact-item i {
    color: var(--primary-color);
    font-size: 1.1rem;
    margin-top: 3px;
    min-width: 20px;
}

.footer-bottom {
    border-top: 1px solid #333;
    padding: 25px 0;
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-bottom p {
    color: #999;
    margin: 0;
}

.footer-links {
    display: flex;
    gap: 25px;
}

.footer-links a {
    color: #999;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--primary-color);
}

/* Responsive Footer */
@media screen and (max-width: 1200px) {
    .footer-content {
        grid-template-columns: 2fr 1fr 1fr 1.3fr;
        gap: 35px;
    }
}

@media screen and (max-width: 992px) {
    .footer {
        padding: 50px 0 0;
    }
    
    .footer-content {
        grid-template-columns: 1fr 1fr;
        gap: 30px;
    }
}

@media screen and (max-width: 768px) {
    .footer {
        padding: 40px 0 0;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }
    
    .footer-logo {
        justify-content: center;
    }
    
    .footer-social {
        justify-content: center;
    }
    
    .contact-item {
        justify-content: center;
    }
    
    .footer-bottom-content {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
    
    .footer-links {
        justify-content: center;
        flex-wrap: wrap;
        gap: 20px;
    }
}

@media screen and (max-width: 576px) {
    .footer {
        padding: 35px 0 0;
    }
    
    .footer-content {
        gap: 25px;
    }
    
    .footer-section h3 {
        font-size: 1.3rem;
    }
    
    .footer-section h4 {
        font-size: 1.1rem;
        margin-bottom: 15px;
    }
    
    .footer-logo {
        flex-direction: column;
        gap: 10px;
    }
    
    .footer-logo img {
        height: 40px;
    }
    
    .footer-social a {
        width: 35px;
        height: 35px;
    }
    
    .contact-item {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 8px;
    }
    
    .footer-links {
        gap: 15px;
    }
    
    .footer-links a {
        font-size: 0.85rem;
    }
}

@media screen and (max-width: 360px) {
    .footer {
        padding: 30px 0 0;
    }
    
    .footer-section h3 {
        font-size: 1.2rem;
    }
    
    .footer-section h4 {
        font-size: 1rem;
    }
    
    .footer-social {
        gap: 10px;
    }
    
    .footer-social a {
        width: 32px;
        height: 32px;
        font-size: 0.9rem;
    }
}

/* Alert Styles */
.alert-container {
    padding: 20px 0;
    background-color: var(--background-light);
}

.alert {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px 20px;
    border-radius: 8px;
    margin-bottom: 0;
    font-weight: 500;
}

.alert-success {
    background-color: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.alert-error {
    background-color: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

.alert i {
    font-size: 1.2rem;
}

@media screen and (max-width: 768px) {
    .alert {
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }
    
    .alert i {
        font-size: 1.5rem;
    }
}

/* Products page specific styles - override global img styles */
.products-main .product-image img {
    width: auto !important;
    height: 250px !important;
    max-width: calc(100% - 20px) !important;
    object-fit: contain !important;
    background: transparent !important;
    display: block !important;
    margin: 0 auto !important;
    box-shadow: none !important;
}

.products-main .modal-image img {
    width: auto !important;
    height: calc(100% - 40px) !important;
    max-width: calc(100% - 40px) !important;
    object-fit: contain !important;
    background: transparent !important;
    display: block !important;
    margin: 0 auto !important;
    box-shadow: none !important;
}

@media screen and (max-width: 600px) {
    .products-main .product-image img {
        height: 250px !important;
        max-width: calc(100% - 16px) !important;
        width: auto !important;
    }
    
    .products-main .modal-image img {
        height: calc(100% - 30px) !important;
        max-width: calc(100% - 30px) !important;
        width: auto !important;
    }
}