/* PRODUCTS PAGE PREMIUM STYLING FOR SAMSUNG SHOP */

:root {
    --ss-black: #000000;
    --ss-white: #ffffff;
    --ss-dark-gray: #111111;
    --ss-gray-800: #2c2c2c;
    --ss-gray-600: #666666;
    --ss-gray-300: #dddddd;
    --ss-gray-100: #f4f4f4;
    --ss-blue: #0c4da2;
    --ss-blue-hover: #073574;
    --ss-accent-gold: #c5a880;
    
    --font-heading: 'Outfit', 'Inter', sans-serif;
    --font-body: 'Inter', sans-serif;
    
    --transition-smooth: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    --shadow-soft: 0 4px 30px rgba(0, 0, 0, 0.03);
    --shadow-medium: 0 10px 40px rgba(0, 0, 0, 0.08);
}

body {
    background-color: var(--ss-white);
    color: var(--ss-black);
    font-family: var(--font-body);
    margin: 0;
    padding: 0;
    overflow-x: hidden;
}

/* Page wrapper container */
.shop-container {
    max-width: 1440px;
    margin: 80px auto 0 auto;
    padding: 20px 40px;
    box-sizing: border-box;
}

@media (max-width: 768px) {
    .shop-container {
        padding: 10px 15px;
        margin-top: 60px;
    }
}

/* Category Hero Banner */
.category-banner {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    background-color: var(--ss-gray-100);
    border-radius: 16px;
    overflow: hidden;
    margin-bottom: 30px;
    min-height: 400px;
    box-shadow: var(--shadow-soft);
}

.banner-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 60px;
}

.banner-badge {
    font-family: var(--font-heading);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--ss-gray-600);
    margin-bottom: 12px;
}

.banner-title {
    font-family: var(--font-heading);
    font-size: 48px;
    font-weight: 700;
    line-height: 1.1;
    margin: 0 0 15px 0;
    letter-spacing: -1px;
}

.banner-desc {
    font-size: 16px;
    line-height: 1.6;
    color: var(--ss-gray-600);
    margin: 0 0 30px 0;
    max-width: 500px;
}

.banner-image {
    position: relative;
    background-color: var(--ss-white);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.banner-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-smooth);
}

.banner-image:hover img {
    transform: scale(1.03);
}

@media (max-width: 992px) {
    .category-banner {
        grid-template-columns: 1fr;
        min-height: auto;
    }
    .banner-content {
        padding: 40px;
        order: 2;
    }
    .banner-title {
        font-size: 36px;
    }
    .banner-image {
        height: 250px;
        order: 1;
    }
}

/* Sub-navigation bar */
.shop-sub-nav {
    background-color: var(--ss-white);
    border-bottom: 1px solid var(--ss-gray-300);
    position: sticky;
    top: 0;
    z-index: 100;
    margin-bottom: 40px;
}

.sub-nav-wrapper {
    max-width: 1440px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 10px;
}

.sub-nav-links {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    overflow-x: auto;
    scrollbar-width: none; /* Firefox */
}

.sub-nav-links::-webkit-scrollbar {
    display: none; /* Safari and Chrome */
}

.sub-nav-links li {
    margin-right: 30px;
}

.sub-nav-links a {
    display: block;
    padding: 20px 0;
    text-decoration: none;
    color: var(--ss-gray-600);
    font-weight: 500;
    font-size: 15px;
    position: relative;
    white-space: nowrap;
    transition: var(--transition-smooth);
}

.sub-nav-links a:hover {
    color: var(--ss-black);
}

.sub-nav-links li.active a {
    color: var(--ss-black);
    font-weight: 700;
}

.sub-nav-links li.active a::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    height: 3px;
    background-color: var(--ss-black);
}

.btn-admin-panel {
    background: var(--ss-black);
    color: var(--ss-white);
    border: none;
    padding: 10px 18px;
    font-size: 13px;
    font-weight: 600;
    border-radius: 20px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: var(--transition-smooth);
}

.btn-admin-panel:hover {
    background: var(--ss-gray-800);
}

.admin-icon {
    width: 14px;
    height: 14px;
}

/* Layout for Sidebar Filters & Results */
.catalog-section {
    margin-bottom: 60px;
}

.catalog-layout {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 40px;
}

@media (max-width: 992px) {
    .catalog-layout {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

/* Sidebar filter drawer styles */
.sidebar-filters {
    position: sticky;
    top: 80px;
    height: fit-content;
    max-height: calc(100vh - 120px);
    overflow-y: auto;
    padding-right: 15px;
}

.sidebar-filters::-webkit-scrollbar {
    width: 4px;
}

.sidebar-filters::-webkit-scrollbar-thumb {
    background: var(--ss-gray-300);
    border-radius: 10px;
}

.sidebar-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 25px;
    border-bottom: 2px solid var(--ss-black);
    padding-bottom: 10px;
}

.sidebar-header h2 {
    font-family: var(--font-heading);
    font-size: 20px;
    font-weight: 600;
    margin: 0;
}

.close-filters-btn {
    display: none;
    font-size: 24px;
    background: none;
    border: none;
    cursor: pointer;
}

.filter-group {
    border-bottom: 1px solid var(--ss-gray-300);
    padding: 20px 0;
}

.filter-title {
    font-size: 15px;
    font-weight: 600;
    margin: 0 0 15px 0;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.filter-title::after {
    content: '−';
    font-weight: normal;
}

.filter-title.collapsed::after {
    content: '+';
}

.filter-options.collapsed {
    display: none;
}

/* Custom checkbox styling */
.checkbox-container {
    display: block;
    position: relative;
    padding-left: 28px;
    margin-bottom: 12px;
    cursor: pointer;
    font-size: 14px;
    color: var(--ss-gray-800);
    user-select: none;
    transition: var(--transition-smooth);
}

.checkbox-container:hover {
    color: var(--ss-black);
}

.checkbox-container input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
}

.checkmark {
    position: absolute;
    top: 2px;
    left: 0;
    height: 18px;
    width: 18px;
    background-color: var(--ss-white);
    border: 1px solid var(--ss-gray-600);
    border-radius: 3px;
    transition: var(--transition-smooth);
}

.checkbox-container:hover input ~ .checkmark {
    border-color: var(--ss-black);
}

.checkbox-container input:checked ~ .checkmark {
    background-color: var(--ss-black);
    border-color: var(--ss-black);
}

.checkmark::after {
    content: "";
    position: absolute;
    display: none;
}

.checkbox-container input:checked ~ .checkmark::after {
    display: block;
}

.checkbox-container .checkmark::after {
    left: 6px;
    top: 2px;
    width: 4px;
    height: 9px;
    border: solid var(--ss-white);
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

/* Color Circle Filters */
.colors-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.color-filter-btn {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: 1px solid var(--ss-gray-300);
    cursor: pointer;
    position: relative;
    transition: var(--transition-smooth);
}

.color-filter-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.15);
}

.color-filter-btn.active {
    box-shadow: 0 0 0 2px var(--ss-white), 0 0 0 4px var(--ss-black);
}

.color-filter-btn::after {
    content: attr(data-color-name);
    position: absolute;
    bottom: -22px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 9px;
    color: var(--ss-gray-600);
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transition: var(--transition-smooth);
}

.color-filter-btn:hover::after {
    opacity: 1;
}

/* Mobile Filters overlay */
@media (max-width: 992px) {
    .sidebar-filters {
        position: fixed;
        top: 0;
        left: -320px;
        width: 300px;
        height: 100vh;
        max-height: 100vh;
        z-index: 1000;
        background: var(--ss-white);
        padding: 20px;
        box-shadow: var(--shadow-medium);
        transition: left 0.3s ease-in-out;
    }
    .sidebar-filters.is-active {
        left: 0;
    }
    .close-filters-btn {
        display: block;
    }
}

/* Results Content Area */
.product-catalog-results {
    display: flex;
    flex-direction: column;
}

/* Search and Sort control bar */
.results-control-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid var(--ss-gray-300);
    padding-bottom: 20px;
    margin-bottom: 20px;
}

.result-count {
    font-size: 15px;
    color: var(--ss-gray-600);
}

.search-sort-controls {
    display: flex;
    gap: 15px;
    align-items: center;
}

.search-box {
    position: relative;
}

.search-box input {
    border: 1px solid var(--ss-gray-300);
    border-radius: 20px;
    padding: 8px 35px 8px 15px;
    font-size: 14px;
    width: 200px;
    outline: none;
    font-family: var(--font-body);
    transition: var(--transition-smooth);
}

.search-box input:focus {
    width: 250px;
    border-color: var(--ss-black);
}

.search-clear-btn {
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 18px;
    color: var(--ss-gray-600);
    cursor: pointer;
    display: none;
}

.sort-box select {
    border: 1px solid var(--ss-gray-300);
    border-radius: 20px;
    padding: 8px 15px;
    font-size: 14px;
    background: var(--ss-white);
    outline: none;
    cursor: pointer;
    font-family: var(--font-body);
    transition: var(--transition-smooth);
}

.sort-box select:hover {
    border-color: var(--ss-black);
}

.mobile-filter-toggle-btn {
    display: none;
    border: 1px solid var(--ss-black);
    background: var(--ss-white);
    border-radius: 20px;
    padding: 8px 15px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    align-items: center;
    gap: 6px;
}

.mobile-filter-toggle-btn svg {
    width: 14px;
    height: 14px;
}

@media (max-width: 992px) {
    .mobile-filter-toggle-btn {
        display: flex;
    }
}

@media (max-width: 576px) {
    .results-control-bar {
        flex-direction: column;
        gap: 15px;
        align-items: stretch;
    }
    .search-sort-controls {
        flex-direction: column;
        align-items: stretch;
    }
    .search-box input {
        width: 100% !important;
    }
}

/* Active Tags */
.active-filter-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 20px;
}

.filter-tag {
    background: var(--ss-gray-100);
    border: 1px solid var(--ss-gray-300);
    padding: 4px 10px;
    border-radius: 15px;
    font-size: 12px;
    display: flex;
    align-items: center;
    gap: 6px;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.filter-tag:hover {
    background: var(--ss-gray-300);
}

.filter-tag-remove {
    font-size: 14px;
    font-weight: bold;
}

/* Products Grid */
.products-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

@media (max-width: 1200px) {
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .products-grid {
        grid-template-columns: 1fr;
    }
}

/* Product Card Styling */
.product-card {
    background: var(--ss-white);
    border-radius: 12px;
    border: 1px solid var(--ss-gray-300);
    padding: 24px;
    display: flex;
    flex-direction: column;
    position: relative;
    cursor: pointer;
    box-shadow: var(--shadow-soft);
    transition: var(--transition-smooth);
}

.product-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-medium);
    border-color: var(--ss-black);
}

/* Card Badges */
.card-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background: var(--ss-black);
    color: var(--ss-white);
    font-size: 10px;
    font-weight: 700;
    padding: 4px 8px;
    border-radius: 4px;
    letter-spacing: 1px;
    text-transform: uppercase;
    z-index: 2;
}

.card-badge.discount {
    background: var(--ss-blue);
}

/* Product Card Image Wrapper */
.card-image-wrap {
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    position: relative;
    overflow: hidden;
}

.card-image-wrap img {
    max-height: 100%;
    max-width: 100%;
    object-fit: contain;
    transition: var(--transition-smooth);
}

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

/* Color dot swatches on cards */
.card-swatches {
    display: flex;
    justify-content: center;
    gap: 6px;
    margin-bottom: 12px;
}

.swatch-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: 1px solid var(--ss-gray-300);
}

/* Card Details */
.card-category {
    font-size: 11px;
    font-weight: 600;
    color: var(--ss-gray-600);
    text-transform: uppercase;
    margin-bottom: 5px;
}

.card-title {
    font-family: var(--font-heading);
    font-size: 18px;
    font-weight: 600;
    margin: 0 0 10px 0;
    line-height: 1.3;
    color: var(--ss-black);
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    height: 46px;
}

.card-rating {
    display: flex;
    align-items: center;
    gap: 4px;
    margin-bottom: 15px;
    font-size: 13px;
    color: var(--ss-gray-800);
}

.stars-icon {
    color: #ffb800;
    font-size: 14px;
}

/* Price Details */
.card-price-wrap {
    margin-top: auto;
    margin-bottom: 20px;
    display: flex;
    flex-direction: column;
}

.original-price {
    font-size: 13px;
    color: var(--ss-gray-600);
    text-decoration: line-through;
    margin-bottom: 3px;
}

.discount-price {
    font-size: 22px;
    font-weight: 700;
    color: var(--ss-black);
    font-family: var(--font-heading);
}

.finance-text {
    font-size: 11px;
    color: var(--ss-blue);
    margin-top: 5px;
    font-weight: 500;
}

/* Card Buttons */
.card-actions {
    display: flex;
    gap: 10px;
}

.btn {
    flex: 1;
    border-radius: 20px;
    padding: 10px 20px;
    font-size: 13px;
    font-weight: 700;
    text-align: center;
    cursor: pointer;
    text-decoration: none;
    font-family: var(--font-body);
    transition: var(--transition-smooth);
}

.btn-primary {
    background: var(--ss-black);
    color: var(--ss-white);
    border: 1px solid var(--ss-black);
}

.btn-primary:hover {
    background: var(--ss-gray-800);
    border-color: var(--ss-gray-800);
}

.btn-secondary {
    background: var(--ss-white);
    color: var(--ss-black);
    border: 1px solid var(--ss-black);
}

.btn-secondary:hover {
    background: var(--ss-gray-100);
}

/* Fallback state when no items */
.no-products-fallback {
    text-align: center;
    padding: 60px;
}

.no-products-fallback h3 {
    font-size: 24px;
    margin-bottom: 10px;
}

.no-products-fallback p {
    color: var(--ss-gray-600);
    margin-bottom: 25px;
}

/* MODAL GENERAL SYSTEM */
.modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: 1000;
    display: none;
    align-items: center;
    justify-content: center;
}

.modal.is-active {
    display: flex;
}

.modal-overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(4px);
}

.modal-container {
    background: var(--ss-white);
    border-radius: 16px;
    padding: 40px;
    max-width: 900px;
    width: 90%;
    max-height: 85vh;
    overflow-y: auto;
    position: relative;
    z-index: 1001;
    box-shadow: var(--shadow-medium);
    box-sizing: border-box;
}

.modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: none;
    border: none;
    font-size: 32px;
    cursor: pointer;
    line-height: 1;
}

/* Product Detail Modal Content Grid */
.product-detail-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.detail-gallery {
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--ss-gray-100);
    border-radius: 12px;
    padding: 20px;
    height: 350px;
}

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

.detail-info {
    display: flex;
    flex-direction: column;
}

.detail-category {
    font-size: 12px;
    font-weight: 700;
    color: var(--ss-gray-600);
    text-transform: uppercase;
    margin-bottom: 10px;
}

.detail-title {
    font-family: var(--font-heading);
    font-size: 32px;
    font-weight: 700;
    margin: 0 0 15px 0;
    line-height: 1.2;
}

.detail-description {
    font-size: 15px;
    line-height: 1.6;
    color: var(--ss-gray-800);
    margin-bottom: 25px;
}

.detail-features {
    list-style: none;
    padding: 0;
    margin: 0 0 25px 0;
}

.detail-features li {
    padding-left: 20px;
    position: relative;
    margin-bottom: 10px;
    font-size: 14px;
    color: var(--ss-gray-800);
}

.detail-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--ss-blue);
    font-weight: bold;
}

.detail-colors {
    margin-bottom: 25px;
}

.detail-colors-title {
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 10px;
}

.detail-colors-list {
    display: flex;
    gap: 10px;
}

.detail-actions {
    display: flex;
    gap: 15px;
    margin-top: auto;
}

@media (max-width: 768px) {
    .product-detail-layout {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    .detail-gallery {
        height: 250px;
    }
}

/* ADMIN DASHBOARD MODAL STYLING */
.admin-modal {
    max-width: 1100px;
    width: 95%;
}

.admin-body {
    padding-top: 10px;
}

.admin-config-section {
    background: var(--ss-gray-100);
    border-radius: 12px;
    padding: 20px;
    margin-bottom: 20px;
    border: 1px solid var(--ss-gray-300);
}

.admin-config-section label {
    font-weight: 600;
    font-size: 14px;
    margin-bottom: 8px;
    display: block;
}

.config-url-input-group {
    display: flex;
    gap: 12px;
}

.config-url-input-group input {
    flex: 1;
    padding: 10px 15px;
    border-radius: 6px;
    border: 1px solid var(--ss-gray-300);
    font-family: var(--font-body);
    font-size: 14px;
}

.config-help {
    font-size: 11px;
    color: var(--ss-gray-600);
    margin: 8px 0 12px 0;
}

.connection-status {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
}

.status-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
}

.status-dot.online {
    background: #00ca51;
}

.status-dot.offline {
    background: #ff3b30;
}

.admin-divider {
    border: 0;
    height: 1px;
    background: var(--ss-gray-300);
    margin: 25px 0;
}

/* Admin Grid split for Form vs Items List */
.admin-content-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 40px;
}

@media (max-width: 992px) {
    .admin-content-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

.product-form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

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

@media (max-width: 576px) {
    .form-row {
        grid-template-columns: 1fr;
    }
}

.form-field {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.form-field label {
    font-size: 13px;
    font-weight: 600;
}

.form-field input, .form-field select, .form-field textarea {
    padding: 10px;
    border-radius: 6px;
    border: 1px solid var(--ss-gray-300);
    font-family: var(--font-body);
    font-size: 14px;
    outline: none;
}

.form-field input:focus, .form-field select:focus, .form-field textarea:focus {
    border-color: var(--ss-black);
}

.form-field textarea {
    height: 80px;
    resize: none;
}

.form-actions {
    display: flex;
    gap: 15px;
    margin-top: 10px;
}

/* Current items list in admin panel */
.admin-items-list-container {
    display: flex;
    flex-direction: column;
    max-height: 480px;
}

.admin-items-list-container h3 {
    margin: 0 0 15px 0;
    font-size: 16px;
}

.admin-search-box input {
    width: 100%;
    padding: 8px 12px;
    border-radius: 6px;
    border: 1px solid var(--ss-gray-300);
    font-family: var(--font-body);
    font-size: 13px;
    box-sizing: border-box;
    margin-bottom: 15px;
}

.admin-items-list {
    flex: 1;
    overflow-y: auto;
    border: 1px solid var(--ss-gray-300);
    border-radius: 6px;
}

.admin-item-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 15px;
    border-bottom: 1px solid var(--ss-gray-300);
    gap: 10px;
}

.admin-item-row:last-child {
    border-bottom: none;
}

.admin-item-info {
    display: flex;
    align-items: center;
    gap: 10px;
}

.admin-item-img {
    width: 40px;
    height: 40px;
    object-fit: contain;
    background: var(--ss-gray-100);
    border-radius: 4px;
}

.admin-item-text {
    display: flex;
    flex-direction: column;
}

.admin-item-title {
    font-size: 13px;
    font-weight: 600;
}

.admin-item-meta {
    font-size: 11px;
    color: var(--ss-gray-600);
}

.admin-item-actions {
    display: flex;
    gap: 6px;
}

.btn-icon {
    border: none;
    border-radius: 4px;
    padding: 6px;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.btn-icon.edit {
    background: var(--ss-gray-100);
    color: var(--ss-black);
}

.btn-icon.edit:hover {
    background: var(--ss-gray-300);
}

.btn-icon.delete {
    background: #ffebeb;
    color: #ff3b30;
}

.btn-icon.delete:hover {
    background: #ffd1d1;
}

/* Skeleton Screens for Loading States */
.skeleton-card {
    height: 380px;
    background: linear-gradient(90deg, #f4f4f4 25%, #ececec 50%, #f4f4f4 75%);
    background-size: 200% 100%;
    animation: loading-animation 1.5s infinite;
    border-radius: 12px;
}

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

/* FLOATING CART BUTTON */
.floating-cart-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--ss-black);
    color: var(--ss-white);
    border: none;
    cursor: pointer;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    z-index: 999;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-smooth);
}

.floating-cart-btn:hover {
    transform: scale(1.1);
    background: var(--ss-gray-800);
}

.cart-icon {
    font-size: 24px;
}

.cart-badge-count {
    position: absolute;
    top: -5px;
    right: -5px;
    background: #ff3b30;
    color: var(--ss-white);
    font-size: 11px;
    font-weight: 700;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid var(--ss-white);
}

/* CART DRAWER SLIDE PANEL */
.cart-drawer {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: 10005;
    visibility: hidden;
    transition: visibility 0.3s ease;
}

.cart-drawer.is-active {
    visibility: visible;
}

.cart-drawer-overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(2px);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.cart-drawer.is-active .cart-drawer-overlay {
    opacity: 1;
}

.cart-drawer-container {
    position: absolute;
    top: 0;
    right: -420px;
    width: 400px;
    max-width: 90%;
    height: 100%;
    background: var(--ss-white);
    box-shadow: -5px 0 30px rgba(0, 0, 0, 0.15);
    display: flex;
    flex-direction: column;
    transition: right 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.cart-drawer.is-active .cart-drawer-container {
    right: 0;
}

.cart-drawer-header {
    padding: 24px;
    border-bottom: 1px solid var(--ss-gray-300);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.cart-drawer-header h2 {
    font-family: var(--font-heading);
    font-size: 20px;
    font-weight: 700;
    margin: 0;
}

.cart-drawer-close {
    background: none;
    border: none;
    font-size: 28px;
    cursor: pointer;
    line-height: 1;
    color: var(--ss-black);
}

.cart-drawer-body {
    flex: 1;
    overflow-y: auto;
    padding: 24px;
}

.cart-empty-message {
    text-align: center;
    padding: 40px 0;
    color: var(--ss-gray-600);
}

.cart-items-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

/* CART ITEM ROW */
.cart-item-row {
    display: flex;
    gap: 15px;
    align-items: center;
    border-bottom: 1px solid var(--ss-gray-100);
    padding-bottom: 15px;
}

.cart-item-row:last-child {
    border-bottom: none;
}

.cart-item-img {
    width: 60px;
    height: 60px;
    object-fit: contain;
    background: var(--ss-gray-100);
    border-radius: 6px;
    padding: 5px;
}

.cart-item-details {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.cart-item-name {
    font-size: 14px;
    font-weight: 600;
    color: var(--ss-black);
}

.cart-item-price {
    font-size: 13px;
    font-weight: 700;
    color: var(--ss-gray-800);
}

.cart-item-qty-actions {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 5px;
}

/* Quantity controls picker */
.quantity-picker {
    display: flex;
    align-items: center;
    border: 1px solid var(--ss-gray-300);
    border-radius: 4px;
    overflow: hidden;
}

.qty-btn {
    border: none;
    background: var(--ss-gray-100);
    width: 26px;
    height: 26px;
    font-size: 14px;
    font-weight: bold;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-smooth);
}

.qty-btn:hover {
    background: var(--ss-gray-300);
}

.qty-val {
    width: 30px;
    text-align: center;
    font-size: 13px;
    font-weight: 600;
}

.btn-remove-cart-item {
    background: none;
    border: none;
    color: #ff3b30;
    font-size: 12px;
    font-weight: 600;
    cursor: pointer;
}

/* CART FOOTER */
.cart-drawer-footer {
    padding: 24px;
    border-top: 1px solid var(--ss-gray-300);
    background: var(--ss-gray-100);
}

.cart-subtotal {
    display: flex;
    justify-content: space-between;
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 20px;
    font-family: var(--font-heading);
}

/* ==========================================
   PREMIUM PRODUCT CARD AND GRID LAYOUT SYSTEM
   ========================================== */

/* Products Grid base */
.products-grid {
    display: grid !important;
    grid-template-columns: repeat(4, 1fr) !important;
    gap: 30px !important;
    padding: 20px 0 !important;
    width: 100% !important;
    box-sizing: border-box !important;
}

/* Home featured grid selector mapping */
#latest-launches-grid {
    display: grid !important;
    grid-template-columns: repeat(4, 1fr) !important;
    gap: 30px !important;
    width: 100% !important;
    box-sizing: border-box !important;
}

/* Premium Card Container */
.product-card {
    position: relative !important;
    background: #ffffff !important;
    border: 1px solid rgba(0, 0, 0, 0.06) !important;
    border-radius: 24px !important;
    padding: 24px !important;
    height: 520px !important;
    display: flex !important;
    flex-direction: column !important;
    justify-content: space-between !important;
    align-items: center !important;
    box-sizing: border-box !important;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1) !important;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.01) !important;
    cursor: pointer !important;
    overflow: hidden !important;
}

.product-card:hover {
    transform: translateY(-8px) !important;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.06) !important;
    border-color: rgba(0, 0, 0, 0.12) !important;
}

/* Premium Image Wrappers & Hover effect (9:16 Aspect Ratio) */
.product-card .card-image-wrap {
    width: 135px !important;
    height: 240px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    position: relative !important;
    overflow: hidden !important;
    margin-bottom: 12px !important;
    background: transparent !important;
}

.product-card .card-image-wrap img {
    height: 100% !important;
    width: 100% !important;
    object-fit: contain !important;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1) !important;
}

.product-card:hover .card-image-wrap img {
    transform: scale(1.08) !important;
}

/* Card details styling */
.card-details-wrap {
    flex-grow: 1 !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    text-align: center !important;
    width: 100% !important;
    justify-content: center !important;
}

.card-subcategory {
    font-size: 10px !important;
    font-weight: 600 !important;
    color: #86868b !important;
    text-transform: uppercase !important;
    letter-spacing: 1px !important;
    margin-bottom: 6px !important;
    display: block !important;
    font-family: 'SamsungOne', Arial, sans-serif !important;
}

.card-title {
    font-weight: 600 !important;
    font-size: 17px !important;
    line-height: 1.3 !important;
    color: #1d1d1f !important;
    margin: 0 0 8px 0 !important;
    font-family: 'SamsungOne', Arial, sans-serif !important;
    max-width: 90% !important;
    white-space: nowrap !important;
    overflow: hidden !important;
    text-overflow: ellipsis !important;
}

/* Rating Stars Container */
.card-rating-container {
    display: flex !important;
    align-items: center !important;
    gap: 6px !important;
    margin-bottom: 8px !important;
    font-size: 13px !important;
}

.stars-gold {
    color: #ffb800 !important;
    letter-spacing: -1px !important;
}

.card-rating-val {
    font-weight: 600 !important;
    color: #555555 !important;
    font-family: 'SamsungOne', Arial, sans-serif !important;
}

/* Color Swatches list */
.card-colors-container {
    display: flex !important;
    justify-content: center !important;
    gap: 6px !important;
    margin-bottom: 12px !important;
    min-height: 12px !important;
}

.swatch-dot {
    width: 10px !important;
    height: 10px !important;
    border-radius: 50% !important;
    border: 1px solid rgba(0, 0, 0, 0.15) !important;
    display: inline-block !important;
    box-shadow: inset 0 1px 2px rgba(0,0,0,0.1) !important;
}

/* Pricing layout */
.card-price-container {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 10px !important;
    margin-bottom: 8px !important;
    font-family: 'SamsungOne', Arial, sans-serif !important;
}

.card-price-container .original-price {
    font-size: 13px !important;
    text-decoration: line-through !important;
    color: #86868b !important;
}

.card-price-container .discount-price {
    font-size: 16px !important;
    font-weight: 700 !important;
    color: #1d1d1f !important;
}

/* Badges */
.card-badge {
    position: absolute !important;
    top: 16px !important;
    left: 16px !important;
    font-family: 'SamsungOne', Arial, sans-serif !important;
    font-size: 9px !important;
    font-weight: 700 !important;
    letter-spacing: 0.5px !important;
    text-transform: uppercase !important;
    padding: 5px 12px !important;
    border-radius: 12px !important;
    z-index: 5 !important;
    background: rgba(0, 0, 0, 0.05) !important;
    color: #1d1d1f !important;
}

.card-badge.discount {
    background: #ff3b30 !important;
    color: #ffffff !important;
}

/* Action Buttons */
.card-actions-wrap {
    width: 100% !important;
    display: flex !important;
    gap: 8px !important;
    margin-top: auto !important;
    padding-top: 12px !important;
    box-sizing: border-box !important;
    z-index: 10 !important;
}

.btn-add-to-cart-catalog,
.btn-buy-now-catalog {
    flex: 1 !important;
    border-radius: 20px !important;
    font-size: 12px !important;
    font-weight: 700 !important;
    cursor: pointer !important;
    padding: 10px 14px !important;
    font-family: 'SamsungOne', Arial, sans-serif !important;
    text-align: center !important;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1) !important;
    box-shadow: none !important;
    transform: none !important;
}

.btn-add-to-cart-catalog {
    background: #f5f5f7 !important;
    border: 1px solid #e5e8eb !important;
    color: #1d1d1f !important;
}

.btn-add-to-cart-catalog:hover {
    background: #e8e8ed !important;
    border-color: #cbd5e1 !important;
}

.btn-buy-now-catalog {
    background: #000000 !important;
    border: 1px solid #000000 !important;
    color: #ffffff !important;
}

.btn-buy-now-catalog:hover {
    background: #2d2d2f !important;
    border-color: #2d2d2f !important;
    transform: translateY(-1px) !important;
}

/* ==========================================
   MOBILE RESPONSIVENESS MEDIA QUERIES
   ========================================== */

/* Breakpoint for Tablets (max-width: 1024px) */
@media (max-width: 1024px) {
    .products-grid,
    #latest-launches-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 20px !important;
    }
    
    /* Store locator cards responsive layout */
    #store-locator-cards-wrap {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 16px !important;
    }
}

/* Breakpoint for Small Mobile Devices (max-width: 768px) */
@media (max-width: 768px) {
    /* Hero KV Slider responsiveness overrides removed to match desktop layout */
}

/* Mobile-only layout override for screens below 768px */
@media (max-width: 767px) {
    /* Navbar and GNB sits sticky with zero top gap above the hero banner */
    .home-page #component-id,
    .home-page nav.nv00-gnb-v4 {
        position: sticky !important;
        background-color: #000000 !important;
        background: #000000 !important;
        height: 90px !important;
        border-bottom: 1px solid #111 !important;
        left: 0 !important;
        top: 0 !important;
        width: 100% !important;
        margin: 0 !important;
    }

    /* Force parent containers to occupy full screen width and disable flex column splitting */
    body.home-page,
    body.home-page #wrap,
    body.home-page #content {
        display: block !important;
        width: 100% !important;
        max-width: 100vw !important;
        margin: 0 !important;
        padding: 0 !important;
        transform: none !important;
        float: none !important;
        position: relative !important;
    }


    
    /* Category circular cards centering */
    #category-circle-grid-wrap {
        justify-content: center !important;
        gap: 15px !important;
    }
    
    /* Promo/Offers banner responsive alignment */
    #offers-banner-wrap {
        margin: 20px auto !important;
    }
    
    #offers-banner-wrap > div {
        flex-direction: column !important;
        padding: 40px 24px !important;
        text-align: center !important;
        min-height: auto !important;
        gap: 30px !important;
    }
    
    #offers-banner-wrap div[style*="max-width: 600px"] {
        max-width: 100% !important;
    }
    
    #offers-banner-wrap h2 {
        font-size: 26px !important;
    }
    
    #offers-banner-wrap div[style*="position: absolute"] {
        position: relative !important;
        right: auto !important;
        bottom: auto !important;
        top: auto !important;
        height: 180px !important;
        width: 100% !important;
        justify-content: center !important;
        margin-top: 15px !important;
    }
    
    #offers-banner-wrap img {
        height: 100% !important;
        width: auto !important;
    }
    
    /* Visit our stores responsive alignment */
    #stores {
        grid-template-columns: 1fr !important;
        text-align: center !important;
        gap: 30px !important;
    }
    
    #stores a {
        margin-bottom: 20px !important;
    }
    
    /* Contact Section responsive alignment */
    #contact {
        grid-template-columns: 1fr !important;
        gap: 40px !important;
    }
    
    #contact > div {
        padding: 24px !important;
    }
    
    /* Subcategory horizontal scroll improvements on mobile */
    .shop-sub-nav {
        margin-bottom: 20px !important;
    }
    
    .sub-nav-wrapper {
        padding: 0 16px !important;
    }
    
    .sub-nav-links {
        display: flex !important;
        gap: 15px !important;
        overflow-x: auto !important;
        padding-bottom: 10px !important;
        -webkit-overflow-scrolling: touch !important;
    }
    
    .sub-nav-links li {
        margin-right: 0 !important;
    }
}

/* Breakpoint for Small Smartphones (max-width: 576px) */
@media (max-width: 576px) {
    .products-grid,
    #latest-launches-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 12px !important;
        padding: 10px 8px !important;
    }
    
    #store-locator-cards-wrap {
        grid-template-columns: 1fr !important;
    }
    
    .product-card {
        height: auto !important;
        min-height: auto !important;
        max-width: 100% !important;
        padding: 12px !important;
        margin: 0 !important;
    }

    .product-card .card-image-wrap {
        width: 100px !important;
        height: 150px !important;
        margin-bottom: 8px !important;
    }

    .card-title {
        font-size: 14px !important;
        margin-bottom: 6px !important;
    }

    .card-rating-container {
        font-size: 11px !important;
        margin-bottom: 6px !important;
        gap: 3px !important;
    }

    .card-price-container {
        gap: 6px !important;
        margin-bottom: 6px !important;
    }

    .card-price-container .discount-price {
        font-size: 13px !important;
    }

    .card-price-container .original-price {
        font-size: 11px !important;
    }

    .card-badge {
        top: 8px !important;
        left: 8px !important;
        font-size: 8px !important;
        padding: 3px 8px !important;
    }

    .card-actions-wrap {
        flex-direction: column !important;
        gap: 6px !important;
        padding-top: 8px !important;
    }

    .btn-add-to-cart-catalog,
    .btn-buy-now-catalog {
        width: 100% !important;
        padding: 8px 10px !important;
        font-size: 11px !important;
        border-radius: 15px !important;
    }
}

/* ==========================================
   SCROLL AND ENTRY ANIMATIONS (SITE-WIDE)
   ========================================== */

/* Animation configuration classes */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s cubic-bezier(0.25, 1, 0.5, 1), transform 0.8s cubic-bezier(0.25, 1, 0.5, 1) !important;
    will-change: opacity, transform;
}

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

/* Stagger delay classes for dynamic grids/lists */
.stagger-delay-1 { transition-delay: 0.1s !important; }
.stagger-delay-2 { transition-delay: 0.2s !important; }
.stagger-delay-3 { transition-delay: 0.3s !important; }
.stagger-delay-4 { transition-delay: 0.4s !important; }



/* Elegant fade-in keyframes */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Apply load animations to GNB & Hero content on entrance */
.nv00-gnb-v4 {
    animation: fadeInUp 0.8s cubic-bezier(0.25, 1, 0.5, 1) both;
    transition: background-color 0.3s ease, backdrop-filter 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease !important;
}

.nv00-gnb-v4.scrolled {
    background-color: rgba(11, 12, 13, 0.85) !important;
    backdrop-filter: blur(16px) !important;
    -webkit-backdrop-filter: blur(16px) !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08) !important;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.2) !important;
}

.nv00-gnb-v4__wrap ul li a {
    position: relative;
    padding: 6px 0;
    transition: color 0.3s ease !important;
}

.nv00-gnb-v4__wrap ul li a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: #fff;
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1) !important;
}

.nv00-gnb-v4__wrap ul li a:hover {
    color: #4a90e2 !important;
}

.nv00-gnb-v4__wrap ul li a:hover::after {
    transform: scaleX(1);
    transform-origin: left;
    background-color: #4a90e2;
}

.hero-slide .hero-slide-content,
#hero-slider-wrap div[style*="max-width: 500px"] {
    animation: fadeInUp 1s cubic-bezier(0.25, 1, 0.5, 1) both;
    animation-delay: 0.2s;
}

/* ==========================================
   GLOBAL BRAND NAVIGATION OVERRIDES (GNB)
   ========================================== */

#component-id,
nav.nv00-gnb-v4 {
    background-color: #000000 !important;
    background: #000000 !important;
    height: 90px !important;
    position: sticky !important;
    top: 0 !important;
    z-index: 999999 !important;
    border-bottom: 1px solid #111 !important;
    display: block !important;
    opacity: 1 !important;
    visibility: visible !important;
    transform: none !important;
    padding: 0 !important;
    margin: 0 !important;
    box-sizing: border-box !important;
    transition: background-color 0.3s ease, height 0.3s ease, border-bottom 0.3s ease !important;
}

#component-id * {
    box-sizing: border-box !important;
}

#component-id .nv00-gnb-v4__wrap {
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    max-width: 1440px !important;
    margin: 0 auto !important;
    padding: 0 24px !important;
    height: 76px !important;
    background: transparent !important;
    position: relative !important;
    opacity: 1 !important;
    visibility: visible !important;
    z-index: 999999 !important;
}

/* Hide original GNB sub-elements that might conflict or cause white blocks */
#component-id> :not(.nv00-gnb-v4__wrap):not(style),
#component-id [class*="login"],
#component-id [class*="account"],
#component-id [class*="profile"],
#component-id [class*="user"],
.gnb__login,
.gnb__my-samsung {
    display: none !important;
    opacity: 0 !important;
    visibility: hidden !important;
}

.mobile-nav-toggle {
    display: none !important;
}

/* Responsive GNB Layouts for Mobile and Tablets */
@media (max-width: 991px) {
    #component-id .nv00-gnb-v4__wrap {
        height: 90px !important;
    }
    
    #component-id .nv00-gnb-v4__wrap ul {
        display: none !important;
    }

    #component-id.mobile-open .nv00-gnb-v4__wrap ul {
        display: flex !important;
        flex-direction: column !important;
        position: absolute !important;
        top: 90px !important;
        left: 0 !important;
        width: 100% !important;
        background: #000000 !important;
        padding: 24px !important;
        border-bottom: 1px solid #111 !important;
        gap: 20px !important;
        box-sizing: border-box !important;
        z-index: 999999 !important;
        align-items: flex-start !important;
    }

    .mobile-nav-toggle {
        display: flex !important;
    }

    .gnb-contact-btn {
        display: none !important;
    }
}

/* Ensure product card containers shrink correctly in multi-column layouts */
.product-card {
    width: 100% !important;
    max-width: 100% !important;
    min-width: 0 !important;
    box-sizing: border-box !important;
}

@media (max-width: 1024px) {
    .product-card {
        height: auto !important;
        min-height: auto !important;
        padding: 16px !important;
    }
    
    .card-actions-wrap {
        flex-direction: column !important;
        gap: 6px !important;
    }
    
    .btn-add-to-cart-catalog,
    .btn-buy-now-catalog {
        width: 100% !important;
        padding: 8px 10px !important;
    }
}

/* Base Slide Content Overlay Style for Desktop & Tablet */
.hero-slide-content {
    position: absolute;
    top: 60px;
    left: 80px;
    color: #ffffff;
    z-index: 5;
    text-align: left;
    max-width: 600px;
    font-family: 'SamsungSharpSans', Arial, sans-serif;
}

.hero-slide-content h2 {
    font-size: 48px;
    font-weight: 700;
    margin: 0 0 12px 0;
    line-height: 1.1;
    color: #ffffff;
    text-shadow: 0 2px 10px rgba(0,0,0,0.5);
}

.hero-slide-content p {
    font-size: 18px;
    margin: 0;
    color: #e0e0e0;
    text-shadow: 0 2px 8px rgba(0,0,0,0.5);
}

/* Mobile responsive overrides for enquiry form, GNB logo, and footer */
@media (max-width: 767px) {
    /* GNB Logo resize on mobile */
    .nv00-gnb-v4__wrap img {
        height: 75px !important;
        max-height: 75px !important;
        width: auto !important;
    }
    .nv00-gnb-v4 {
        height: auto !important;
    }
    .nv00-gnb-v4__wrap {
        padding: 10px 16px !important;
        height: auto !important;
    }

    /* Footer responsive stacking */
    .footer > div {
        grid-template-columns: 1fr !important;
        gap: 30px !important;
        text-align: center !important;
        padding: 0 16px !important;
    }
    .footer div {
        align-items: center !important;
        justify-content: center !important;
    }
    .footer img {
        margin: 0 auto 15px auto !important;
    }
    .footer div[style*="display: flex"] {
        justify-content: center !important;
        flex-wrap: wrap !important;
    }

    /* Contact & Enquiry Form responsive styling */
    #contact {
        grid-template-columns: 1fr !important;
        gap: 30px !important;
        padding: 0 16px !important;
        margin: 40px auto !important;
        box-sizing: border-box !important;
        scroll-margin-top: 120px !important;
    }
    #contact > div {
        padding: 10px 0 !important;
        box-sizing: border-box !important;
        width: 100% !important;
        max-width: 100% !important;
        overflow: hidden !important;
    }
    #contact > div:first-child > div {
        align-items: flex-start !important;
        margin-bottom: 20px !important;
    }
    #contact > div:last-child > div {
        padding: 24px 16px !important;
        box-sizing: border-box !important;
        width: 100% !important;
        max-width: 100% !important;
    }
    #contact h2 {
        font-size: 26px !important;
        text-align: center !important;
        line-height: 1.2 !important;
        margin-bottom: 16px !important;
    }
    #contact p {
        text-align: center !important;
    }
    #contact select, #contact input, #contact textarea {
        max-width: 100% !important;
        box-sizing: border-box !important;
    }
    #contact button[type="submit"] {
        width: 100% !important;
        margin: 24px 0 0 0 !important;
    }

    /* Features Trust Bar as static capsules on mobile */
    .trust-bar-container {
        padding: 24px 16px !important;
        margin: 30px 16px !important;
        background-color: #0b0c0d !important;
        border-radius: 24px !important;
        box-sizing: border-box !important;
    }
    .trust-bar-inner {
        display: grid !important;
        grid-template-columns: 1fr 1fr !important;
        gap: 12px !important;
        padding: 0 !important;
        box-sizing: border-box !important;
    }
    .trust-bar-item {
        background: #1c1e22 !important;
        border: 1px solid #2d3036 !important;
        border-radius: 50px !important;
        padding: 10px 14px !important;
        display: flex !important;
        align-items: center !important;
        gap: 8px !important;
        box-shadow: 0 4px 10px rgba(0,0,0,0.2) !important;
        box-sizing: border-box !important;
    }
    .trust-bar-item:last-child {
        grid-column: span 2 !important;
        justify-content: center !important;
    }
    .trust-bar-item svg {
        width: 18px !important;
        height: 18px !important;
        flex-shrink: 0 !important;
    }
    .trust-bar-item > div > div:first-child {
        font-size: 11px !important;
    }
    .trust-bar-item > div > div:last-child {
        font-size: 9px !important;
    }
}
