
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        /* GLOBAL BODY: background image (full page, subtle overlay) */
        body {
            font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
            background: #f5f5f5; /* fallback */
            color: #000000;
            /* HERO BACKGROUND IMAGE (used as main background) */
            /*background-image: url('../images/supplier_trans.png'); 
            background-size: cover;
            background-position: center;*/
            background-attachment: fixed;
            position: relative;
            min-height: 100vh;
        }

        /* semi-transparent overlay to keep readability, but preserves image visibility.
           For small devices we will switch to solid white (no image) via media query */
        body::before {
            content: "";
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: rgb(0, 0, 0);
            z-index: -1;
            pointer-events: none;
        }

        /* --- SMALL DEVICES (max-width: 768px) : background image changes to solid white --- 
           exactly as requirement: background image must change to color white solid.
           No image visible, solid white background + remove overlay pseudo-element */
        @media (max-width: 768px) {
            body {
                background-image: none !important;
                background: #ffffff !important;   /* solid white */
            }
            body::before {
                display: none !important;          /* kill overlay */
            }
        }

        /* container - tighter clean layout */
        .container-supplier {
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 20px;
        }

        /* Breadcrumb - light with orange hover */
        .breadcrumb {
            background:transparent;
            padding: 12px 16px;
            margin: 16px 0;
           
            border-radius: 0px;   /* no radius (global no radius except logo) */
        }
        .breadcrumb a {
            color:white;
            text-decoration: none;
            font-size: 13px;
            transition: color 0.2s;
        }
        .breadcrumb a:hover {
            color: #FF6B35;
            text-decoration: underline;
        }
        .breadcrumb span {
            color: #FF6B35;
            font-size: 13px;
        }

        /* Page header with orange left border */
        .page-header {
            margin: 24px 0 16px 0;
            border-left: 4px solid #FF6B35;
            padding-left: 16px;
        }
        .page-header h1 {
            font-size: 24px;
            font-weight: 600;
            color:white;
            margin-bottom: 8px;
        }
        .page-header p {
            font-size: 14px;
            color:white;
        }

        /* Supplier Grid - clean responsive */
        .supplier-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
            gap: 20px;
            margin: 20px 0 40px;
        }

        /* Supplier Card: NO border-radius anywhere (explicit 0) */
        .supplier-card {
            background: #81353500;
            border-left: 0px solid #e0e0e0;
            text-decoration: none;
            color: inherit;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            transition: all 0.2s ease;
            border-radius: 0px;      /* no radius on cards */
            overflow: hidden;         /* ensure children don't create radius */
        }
        .supplier-card:hover {
            border-color: #FF6B35;
            box-shadow: 0 2px 8px rgba(0,0,0,0.02);
        }

        /* Logo container: background light */
        .supplier-logo {
            height: 160px;
            background:transparent;
            display: flex;
            align-items: center;
            
            justify-content: center;
            padding: 24px;
            border-bottom: 1px solid #e0e0e0;
        }
        /* ONLY THE LOGO (image or placeholder) gets 50% border-radius — requirement: only radius has to apply on logo */
        .supplier-logo img {
            width: 100px;
            height: 100px;
            border-radius: 50%;      /* only radius applied on logo image */
            object-fit: cover;
            border: 2px solid #e0e0e0;
            transition: border-color 0.2s;
        }
        .supplier-card:hover .supplier-logo img {
            border-color: #FF6B35;
        }
        .supplier-logo .no-logo {
            width: 100px;
            height: 100px;
            border-radius: 50%;      /* radius for placeholder (logo area) */
            background: #f0f0f0;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 48px;
            color: #cccccc;
            border: 2px solid #e0e0e0;
        }
        .supplier-card:hover .supplier-logo .no-logo {
            border-color: #FF6B35;
            color: #FF6B35;
        }

        /* Supplier info */
        .supplier-info {
            padding: 16px;
        }
        .supplier-name {
            font-size: 16px;
            font-weight: 600;
            color: #ffffff;
            margin-bottom: 8px;
            white-space: nowrap;
            overflow: hidden;
            text-overflow: ellipsis;
        }
        .supplier-address {
            font-size: 12px;
            color: #dfdada;
            margin-bottom: 8px;
            display: flex;
            align-items: center;
            gap: 6px;
        }
        .supplier-address i {
            width: 14px;
            color: #FF6B35;
        }
        /* rating stars orange */
        .supplier-rating {
            display: flex;
            align-items: center;
            gap: 6px;
            margin-bottom: 10px;
        }
        .stars {
            color: #FF6B35;
            font-size: 12px;
            letter-spacing: 1px;
        }
        .rating-text {
            font-size: 11px;
            color: #fafafa;
        }
        /* product count badge: orange palette */
        .product-count {
            font-size: 11px;
            color: #FF6B35;
            background: #FFF3EF;
            display: inline-block;
            padding: 4px 10px;
            border: 1px solid #FFE0D4;
            text-transform: uppercase;
            font-weight: 500;
            border-radius: 30px;
        }

        /* empty state */
        .empty-state {
            text-align: center;
            padding: 60px 20px;
            background: #ffffff;
            border: 1px solid #e0e0e0;
            margin: 40px 0;
        }
        .empty-state i {
            font-size: 48px;
            color: #cccccc;
            margin-bottom: 16px;
        }
        .empty-state p {
            color: #666666;
            font-size: 14px;
        }

        /* additional small touches: orange accent for some details */
        .highlight-orange {
            color: #FF6B35;
        }
        hr {
            border-color: #eee;
        }

        /* Responsive: extra adjustments for small devices (already background solid white) */
        @media (max-width: 768px) {
            .supplier-grid {
                grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
                gap: 12px;
            }
            .supplier-logo {
                height: 130px;
                padding: 16px;
            }
            .supplier-logo img,
            .supplier-logo .no-logo {
                width: 70px;
                height: 70px;
            }
            .supplier-info {
                padding: 12px;
            }
            .supplier-name {
                font-size: 14px;
            }
            .page-header h1 {
                font-size: 22px;
            }
            .container-supplier {
                padding: 0 16px;
            }
        }

        /* optional: make the body background overlay effective only on larger devices (so image visible) */
        @media (min-width: 769px) {
            body {
                background-attachment: fixed;
            }
        }
        /* remove any default radius from container or card elements */
        .supplier-card, .breadcrumb, .page-header, .empty-state, .product-count {
            border-radius: 0px;
        }
        /* ensure nothing else gets radius */
        button, a, div, section {
            border-radius: 0px;
        }
        /* ensure logo only gets radius (img and .no-logo) - they already have 50% */
        .supplier-logo {
            border-radius: 0px;
        }
        /* card inner elements no radius */
        .supplier-info, .supplier-address, .supplier-rating {
            border-radius: 0px;
        }