/* ==========================================================================
   Luxuria Safes - Static CSS
   ========================================================================== */
:root {
    --color-black: #050505;
    --color-dark: #121212;
    --color-darker: #0a0a0a;
    --color-gold: #D4AF37;
    --color-gold-hover: #F3E5AB;
    --color-silver: #E0E0E0;
    --color-text-main: #CCCCCC;
    --color-text-light: #FFFFFF;
    --font-primary: 'Inter', sans-serif;
    --font-secondary: 'Playfair Display', serif;
    --spacing-sm: 1rem;
    --spacing-md: 2.5rem;
    --spacing-lg: 5rem;
    --spacing-xl: 8rem;
    --container-width: 1400px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-primary);
    background-color: var(--color-black);
    color: var(--color-text-main);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-secondary);
    color: var(--color-text-light);
    font-weight: 400;
    line-height: 1.2;
}

a {
    color: var(--color-gold);
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: var(--color-gold-hover);
}

/* Layout Utilities */
.container {
    width: 90%;
    max-width: var(--container-width);
    margin: 0 auto;
}

.section-padding {
    padding: var(--spacing-xl) 0;
}

.mb-xl {
    margin-bottom: var(--spacing-xl);
}

.mt-md {
    margin-top: var(--spacing-md);
}

.mt-lg {
    margin-top: var(--spacing-lg);
}

.mt-xl {
    margin-top: var(--spacing-xl);
}

.pt-xl {
    padding-top: var(--spacing-xl);
}

.bg-dark {
    background-color: var(--color-dark);
}

.bg-darker {
    background-color: var(--color-darker);
}

.bg-black {
    background-color: var(--color-black);
}

.text-center {
    text-align: center;
}

#gamme-icons {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    /* This forces the groups to sit side-by-side */
    justify-content: center;
    align-items: center;
    gap: 100px;
    /* Adds nice spacing between the groups */
}

@media (max-width: 768px) {
    #gamme-icons {
        gap: 30px;
    }

    #gamme-icons img {
        height: 50px !important;
        width: auto;
    }
}

.flex-center {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.flex-split {
    display: flex;
    flex-direction: row;
}

@media (min-width: 992px) {

    .flex-split,
    .flex-row {
        flex-direction: row;
    }

    .flex-row-reverse {
        flex-direction: row-reverse;
    }
}

.flex-1 {
    flex: 1;
}

.align-center {
    align-items: center;
}

.align-stretch {
    align-items: stretch;
}

.grid {
    display: grid;
    gap: var(--spacing-lg);
}

@media (min-width: 768px) {
    .grid-2 {
        grid-template-columns: repeat(2, 1fr);
    }

    .grid-3 {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* Typography */
.accent-title {
    font-size: clamp(3rem, 6vw, 6rem);
    letter-spacing: -1px;
    margin-bottom: 1rem;
}

.product-title {
    font-size: clamp(2rem, 8vw, 4rem) !important;
}

.sub-title {
    font-family: var(--font-primary);
    font-weight: 300;
    font-size: clamp(1.2rem, 2vw, 2rem);
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--color-gold);
    margin-bottom: 2rem;
}

.page-title {
    font-size: clamp(2.5rem, 5vw, 5rem);
    margin-bottom: 1rem;
}

.gold-text {
    color: var(--color-gold);
}

.gold-accent {
    color: var(--color-gold);
    font-size: 3rem;
    margin-bottom: 1rem;
}

.eyebrow {
    display: block;
    font-family: var(--font-primary);
    font-size: 0.875rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 1rem;
}

/* Buttons & Links */
.btn {
    display: inline-block;
    padding: 1rem 2.5rem;
    font-family: var(--font-primary);
    font-size: 0.875rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.4s ease;
    border: 1px solid transparent;
}

.btn-primary.btn-gold {
    background-color: var(--color-gold);
    color: var(--color-black);
}

.btn-primary.btn-gold:hover {
    background-color: var(--color-gold-hover);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(212, 175, 55, 0.2);
}

.btn-outline {
    border: 1px solid var(--color-gold);
    color: var(--color-gold);
    background: transparent;
    position: relative;
    overflow: hidden;
}

.btn-outline.hover-fill::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--color-gold);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.4s ease;
    z-index: -1;
}

.btn-outline.hover-fill:hover {
    color: var(--color-gold-hover);
}

.btn-outline.hover-fill:hover::before {
    transform: scaleX(1);
    transform-origin: left;
}

.responsive-tabs {
    display: flex;
    flex-direction: column;
}

.tab_btn {
    padding: 1rem;;
    font-family: var(--font-primary);
    color: var(--color-gold);
    font-size: 0.875rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.4s ease;
    border: 1px solid transparent;
    background-color: transparent;
    text-align: center;
}

.tab_btn.active {
    border-color: var(--color-gold);
    background-color: var(--color-gold);
    color: var(--color-black);
}

.text-link {
    font-family: var(--font-primary);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.875rem;
    border-bottom: 1px solid var(--color-gold);
    padding-bottom: 4px;
    margin-top: 2rem;
    display: inline-block;
}

/* Placeholders */
.placeholder-img {
    background: linear-gradient(45deg, var(--color-darker), #1a1a1a);
    width: 100%;
    aspect-ratio: 4 / 5;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.tall-img {
    aspect-ratio: 4/5;
}

.square-img {
    aspect-ratio: 1/1;
    min-height: 100%;
}

.banner-img {
    aspect-ratio: 2/1;
    min-height: 100%;
}

/* Navigation */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 1.5rem 0;
    transition: all 0.4s ease;
    border-bottom: 1px solid transparent;
}

.site-header.scrolled {
    background-color: rgba(5, 5, 5, 0.95);
    backdrop-filter: blur(10px);
    padding: 1rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.site-title {
    color: var(--color-text-light);
    font-size: 1.5rem;
    letter-spacing: 4px;
    text-transform: uppercase;
    font-family: var(--font-secondary);
}

.main-navigation ul {
    list-style: none;
    display: flex;
    gap: 2rem;
}

.main-navigation a {
    color: var(--color-text-light);
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
}

.main-navigation a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 100%;
    height: 1px;
    background-color: var(--color-gold);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.3s ease;
}

.main-navigation a:hover::after {
    transform: scaleX(1);
    transform-origin: left;
}

.tab {
    font-family: var(--font-primary);
    font-size: 0.875rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.4s ease;
    border: none;
    border-bottom: none;
    background-color: transparent;
}

.tab_content {
    display: none;
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 1rem;
    background-color: var(--color-dark);
}

.tab_active {
    display: block;
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 1rem;
    background-color: var(--color-dark);
}

.tab_inner_content {
    padding: 10px;
}

.tab_row {
    display: flex;
    flex-direction: column; /* Stack image and text vertically on mobile */
    gap: 15px;
}

.tab_row img {
    height: 200px;
    object-fit: contain;
    align-self: flex-start;
}

.tab_text ul, .tab_text_full ul {
    margin-left: 20px;
    padding-left: 0;
}

@media (min-width: 768px) {
    .responsive-tabs {
        display: grid;
        /* Create a 6-column grid layout for your 6 buttons */
        grid-template-columns: repeat(6, 1fr); 
    }

    .tab_container {
        width: 100%; /* Forces the content envelope to match the full button row width */
        margin-top: -1px; /* Prevents double borders between buttons and content */
    }

    .tab_btn {
        grid-row: 1; /* Keep all buttons in the first row */
        text-align: center;
        border-bottom: none;
    }

    .tab_content {
        grid-column: 1 / span 6; /* Content spans across all columns */
        grid-row: 2; /* Content sits underneath the button row */
        border: 1px solid #444;
    }

    .tab_row {
        flex-direction: row; /* Side-by-side image and text on PC */
    }
}

/* Mobile Navigation */
.menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 21px;
    cursor: pointer;
    z-index: 1001;
}

.menu-toggle span {
    display: block;
    height: 2px;
    width: 100%;
    background-color: var(--color-text-light);
    transition: all 0.3s ease;
}

.menu-toggle.active span:nth-child(1) {
    transform: translateY(9.5px) rotate(45deg);
}

.menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
    transform: translateY(-9.5px) rotate(-45deg);
}

@media (max-width: 991px) {
    .menu-toggle {
        display: flex;
    }

    .main-navigation {
        position: fixed;
        top: 0;
        right: -100%;
        width: 100%;
        height: 100vh;
        background-color: var(--color-darker);
        display: flex;
        justify-content: center;
        align-items: center;
        transition: right 0.4s ease;
        z-index: 1000;
        /* Mobile nav styling to fit standard viewing */
    }

    .main-navigation.nav-open {
        right: 0;
    }

    .main-navigation ul {
        flex-direction: column;
        align-items: center;
        gap: 2.5rem;
    }

    .main-navigation a {
        font-size: 1.5rem;
    }
}

/* Hero Section */
.hero-section {
    position: relative;
    width: 100%;
    aspect-ratio: 2 / 1;
    min-height: 480px; /* Prevents text crowding on standard desktop/laptop displays */
    padding-top: 80px; /* Accounts for the fixed header */
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
}

/* Background image */
.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 0;
}

/* Dark Overlay to ensure text readability */
.hero-background::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(5, 5, 5, 0.5) 0%, rgba(5, 5, 5, 0.85) 100%);
    pointer-events: none;
}

/* Content */
.hero-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
    padding: 0 var(--spacing-sm);
}

/* Typography Fluid Scaling for Hero Content */
.hero-content h1.accent-title {
    font-size: clamp(2rem, 5vw, 4.5rem);
    line-height: 1.15;
    margin-bottom: 0.75rem;
}

.hero-content h2.sub-title {
    font-size: clamp(1rem, 2.5vw, 2rem);
    line-height: 1.2;
    margin-bottom: 1.5rem;
    letter-spacing: 4px;
}

.hero-content p.hero-description {
    font-size: clamp(0.85rem, 1.8vw, 1.125rem);
    line-height: 1.5;
    margin-bottom: 2rem;
    color: var(--color-silver);
}

/* Adjust paddings and margins for tablet and mobile views */
@media (max-width: 768px) {
    .hero-section {
        min-height: 380px; /* Safe minimum height for tablet viewport containing text under header */
        padding-top: 80px;  /* Offset for fixed site header */
    }

    .hero-content {
        padding: 0 1.5rem;
    }
    
    .hero-content h1.accent-title {
        margin-bottom: 0.5rem;
    }

    .hero-content h2.sub-title {
        margin-bottom: 1rem;
        letter-spacing: 2px;
    }

    .hero-content p.hero-description {
        margin-bottom: 1.5rem;
    }
    
    .hero-content .btn {
        padding: 0.75rem 2rem;
        font-size: 0.8rem;
    }
}

@media (max-width: 480px) {
    .hero-section {
        min-height: 340px; /* Safe minimum height for mobile viewport containing text under header */
        padding-top: 80px;  /* Offset for fixed site header */
    }

    .hero-content {
        padding: 0 1rem;
    }

    .hero-content h1.accent-title {
        font-size: clamp(1.2rem, 5vw, 1.8rem);
        margin-bottom: 0.25rem;
    }

    .hero-content h2.sub-title {
        font-size: clamp(0.85rem, 4vw, 1.1rem);
        margin-bottom: 0.5rem;
        letter-spacing: 1px;
    }

    .hero-content p.hero-description {
        font-size: clamp(0.7rem, 3.2vw, 0.85rem);
        margin-bottom: 1rem;
        line-height: 1.4;
    }

    .hero-content .btn {
        padding: 0.5rem 1.25rem;
        font-size: 0.75rem;
        letter-spacing: 1px;
    }
}

/* Common UI */
.page-header {
    padding-top: 150px;
    padding-bottom: 80px;
    text-align: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.collection-card {
    background-color: var(--color-black);
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: transform 0.4s ease;
}

.collection-card:hover {
    transform: translateY(-10px);
    border-color: rgba(212, 175, 55, 0.3);
}

.lock-card {
    background-color: var(--color-dark);
    border: 1px solid var(--color-gold);
    transition: transform 0.4s ease;
}

.lock-card:active {
    transform: translateY(-10px);
    border-color: rgba(212, 175, 55, 0.3);
}

.card-image-wrapper {
    overflow: hidden;
}

.card-content {
    padding: 3rem 2rem;
    text-align: center;
}

.card-content h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.card-content p {
    margin-bottom: 2rem;
    min-height: 80px;
}

.text-block {
    padding-right: 4rem;
}

.text-block p {
    font-size: 1.125rem;
    margin-bottom: 2rem;
    color: var(--color-silver);
}

.product-description.text-block {
    padding-right: 0;
    text-align: center;
}


/* Single Product */
.product-hero {
    min-height: 100vh;
    padding-top: 80px;
}

.product-info {
    padding: var(--spacing-lg);
}

ul.spec-list {
    list-style: none;
    padding-top: 2rem;
    border-top: 1px solid rgba(212, 175, 55, 0.3);
    margin-top: 3rem;
}

ul.spec-list li {
    padding: 1rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    justify-content: space-between;
}

/* Footer */
.site-footer {
    background-color: #020202;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding: 5rem 0 2rem;
}

.footer-widgets {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 4rem;
}

.footer-column h3,
.footer-column h4 {
    margin-bottom: 1.5rem;
    color: var(--color-text-light);
}

.footer-column ul {
    list-style: none;
}

.footer-column ul li {
    margin-bottom: 0.5rem;
}

.footer-column a {
    color: var(--color-text-main);
}

.footer-column a:hover {
    color: var(--color-gold);
}

.site-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 2rem;
    font-size: 0.875rem;
    color: #666;
}

.legal-links a {
    color: #666;
    margin: 0 0.5rem;
}

.legal-links a:hover {
    color: var(--color-text-light);
}

/* Animations */
.fade-in-up {
    animation: fadeInUp 1.2s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards 0.5s;
    opacity: 0;
    transform: translateY(30px);
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.is-revealed {
    opacity: 1 !important;
    transform: translate(0, 0) scale(1) !important;
}

.reveal-up {
    opacity: 0;
    transform: translateY(50px);
    transition: all 1s ease;
}

.reveal-scale {
    opacity: 0;
    transform: scale(0.9);
    transition: all 1.2s ease;
}

/* ==========================================================================
   Configurator & Gallery Layout
   ========================================================================== */
.main-image-display {
    width: 100%;
    border: 1px solid rgba(255, 255, 255, 0.05);
    background: var(--color-black);
}

.gallery-thumbnails .thumbnail {
    cursor: pointer;
    border: 2px solid transparent;
    transition: border-color 0.3s ease;
    background: var(--color-black);
}

.gallery-thumbnails .thumbnail:hover {
    border-color: rgba(255, 255, 255, 0.2);
}

.gallery-thumbnails .thumbnail.active {
    border-color: var(--color-gold);
}

.gallery-thumbnails img {
    width: 100%;
    height: 100px;
    object-fit: cover;
}

.configurator-wrapper {
    display: flex;
    flex-direction: column;
    gap: 4rem;
}

.configurator-row {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.product-info,
.info-inner,
.product-specs {
    min-width: 0;
    max-width: 100%;
    box-sizing: border-box;
}

@media (min-width: 992px) {
    .configurator-row {
        flex-direction: row;
        align-items: center;
    }

    .configurator-row.desktop-text-first {
        flex-direction: row-reverse;
    }
}

.configurator-grid {
    gap: 2rem;
}

/* Compartment Slider */
.compartment-slider-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    width: 100%;
    margin-top: 2rem;
}

.compartment-slider-viewport {
    overflow: hidden;
    width: 100%;
    flex: 1;
    min-width: 0;
}

.compartment-slider-track {
    display: flex;
    transition: transform 0.4s ease;
    gap: 10px;
}

.slider-item {
    flex: 0 0 calc(25% - 7.5px);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.slider-item img {
    width: 100%;
    height: auto;
    object-fit: cover;
    margin-bottom: 0.5rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.slider-item .caption {
    font-size: 0.8rem;
    color: var(--color-silver);
}

.slider-btn {
    background: transparent;
    border: 1px solid var(--color-gold);
    color: var(--color-gold);
    font-size: 2rem;
    line-height: 1;
    width: 40px;
    height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.slider-btn:hover {
    background: var(--color-gold);
    color: var(--color-black);
}

.slider-btn.prev-btn {
    margin-right: 15px;
}

.slider-btn.next-btn {
    margin-left: 15px;
}

@media (max-width: 768px) {
    .compartment-slider-wrapper {
        margin-top: 1rem;
    }

    .slider-item {
        flex: 0 0 100%;
    }

    .slider-btn {
        width: 30px;
        height: 30px;
        font-size: 1.5rem;
    }

    .slider-btn.prev-btn {
        margin-right: 10px;
    }

    .slider-btn.next-btn {
        margin-left: 10px;
    }
}

.config-card {
    background: var(--color-darker);
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 2rem;
    margin-bottom: 2rem;
    height: 100%;
}

.config-card .text-sm {
    font-size: 0.875rem;
    color: var(--color-text-main);
}

.config-card .pb-md {
    padding-bottom: 1rem;
}

.swatch-container {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.swatch {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    border: 2px solid rgba(255, 255, 255, 0.1);
    transition: transform 0.2s ease, border-color 0.2s ease;
}

.swatch:hover {
    transform: scale(1.1);
    border-color: var(--color-gold);
}

.texture-leather {
    background-image: radial-gradient(circle, rgba(0, 0, 0, 0.2) 1px, transparent 1px);
    background-size: 4px 4px;
}

.texture-velvet {
    box-shadow: inset 0 0 10px rgba(0, 0, 0, 0.5);
}

.option-list {
    list-style: none;
    padding: 0;
}

.option-list li {
    padding: 0.8rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    font-size: 0.95rem;
    color: var(--color-silver);
}

.mb-0 {
    margin-bottom: 0 !important;
}

/* ==========================================================================
   Luxury Table Styling
   ========================================================================== */


.table-luxury {
    width: 100%;
    border-collapse: collapse;
    font-family: var(--font-primary);
    margin-top: var(--spacing-md);
    border: 1px solid rgba(255, 255, 255, 0.05);
    background: var(--color-darker);
}

/* General cells */
.table-luxury th,
.table-luxury td {
    padding: 1rem 1.5rem;
    border: 1px solid rgba(255, 255, 255, 0.05);
    text-align: left;
}

/* First row (top headings) */
.table-luxury thead th {
    font-family: var(--font-secondary);
    color: var(--color-gold);
    background: var(--color-dark);
    letter-spacing: 1px;
    text-transform: uppercase;
}

/* First column (row headings) */
.table-luxury tbody th {
    color: var(--color-text-light);
    font-weight: 500;
    background: rgba(212, 175, 55, 0.05);
}

/* Regular cells */
.table-luxury td {
    color: var(--color-silver);
}

/* Hover effect */
.table-luxury tbody tr:hover td {
    background: rgba(212, 175, 55, 0.05);
}

/* Highlight intersection cell */
.table-luxury thead th:first-child {
    background: var(--color-black);
}

/* Optional zebra rows */
.table-luxury tbody tr:nth-child(even) td {
    background: rgba(255, 255, 255, 0.02);
}

/* Responsive scroll */
.table-wrapper {
    overflow-x: auto;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

/* Collapsible Table */

.table-collapsible {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.6s ease;
    margin-top: 1.5rem;
}

.table-collapsible.open {
    max-height: 1000px;
}

/* Optional spacing */

.table-toggle-container {
    margin-top: var(--spacing-md);
}

.accordion-body {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.6s ease;
}

.accordion-body.open {
    max-height: 1000px;
}

.table-toggle-container {
    margin-top: 2rem;
}

/* ==========================================================================
   Standardized Image Ratios (Portrait Mode Focus)
   ========================================================================== */

/* Model selector images on product detail pages */
.model-card img {
    aspect-ratio: 4 / 5 !important;
    width: 100% !important;
    height: auto !important;
    object-fit: cover !important;
}

/* Feature showcase row images */
.feature-img {
    aspect-ratio: 3 / 4 !important;
    width: 100% !important;
    height: auto !important;
    object-fit: cover !important;
}

/* Locks detail tab images */
.tab_row img {
    aspect-ratio: 1 / 1 !important;
    width: 100% !important;
    max-width: 250px !important;
    height: auto !important;
    object-fit: contain !important;
}