.elementor-352 .elementor-element.elementor-element-5e99a1a{--display:flex;}/* Start custom CSS for html, class: .elementor-element-23ca1b2 *//* Pantone Guide - Beynam Style */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', monospace;
    background: #f2f6f9;
    padding: 40px 28px;
    min-height: 100vh;
}

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

/* Header */
.brand-header {
    margin-bottom: 32px;
    text-align: left;
}

.brand-header h1 {
    font-size: 36px;
    font-weight: 800;
    color: #1e3a5f;
    letter-spacing: -0.5px;
    margin-bottom: 8px;
}

.brand-header p {
    font-size: 14px;
    color: #5a6e8c;
    border-left: 3px solid #f5a623;
    padding-left: 16px;
}

/* Toolbar */
.toolbar {
    background: white;
    border-radius: 56px;
    padding: 8px 24px;
    margin-bottom: 32px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.04);
    border: 1px solid #e2edf2;
}

.search-box {
    flex: 2;
    min-width: 240px;
}

.search-box input {
    width: 100%;
    padding: 12px 20px;
    border: none;
    background: #f4f9fe;
    border-radius: 48px;
    font-size: 14px;
    font-family: 'Inter', monospace;
    outline: none;
    color: #1a2a3a;
    transition: all 0.2s;
}

.search-box input:focus {
    background: white;
    box-shadow: 0 0 0 3px #cbdde6;
}

.counter {
    background: #eef3fc;
    padding: 8px 24px;
    border-radius: 40px;
    font-weight: 700;
    color: #1e4a76;
    font-size: 14px;
}

/* Grid 3 Columns */
.colors-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

/* Color Card */
.color-card {
    background: #ffffff;
    border-radius: 20px;
    display: flex;
    flex-direction: row;
    align-items: stretch;
    overflow: hidden;
    transition: all 0.25s ease;
    box-shadow: 0 2px 6px rgba(0,0,0,0.04);
    border: 1px solid #e2e8f0;
    cursor: pointer;
}

.color-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 20px -12px rgba(0,0,0,0.15);
    border-color: #cbd5e1;
}

/* Left Color Square */
.color-swatch {
    width: 90px;
    min-width: 90px;
    position: relative;
    display: flex;
    align-items: flex-end;
    justify-content: flex-start;
    padding: 10px;
}

.hex-badge {
    background: rgba(0,0,0,0.7);
    backdrop-filter: blur(4px);
    padding: 3px 10px;
    border-radius: 24px;
    font-family: monospace;
    font-size: 10px;
    font-weight: 700;
    color: white;
    letter-spacing: 0.3px;
}

/* Right Info Panel */
.info-panel {
    flex: 1;
    padding: 12px 14px;
    background: white;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.pantone-title {
    font-size: 18px;
    font-weight: 800;
    font-family: monospace;
    color: #0a2f44;
    border-left: 3px solid #f5a623;
    padding-left: 10px;
    line-height: 1.3;
    text-align: left;
    direction: ltr;
}

.color-details {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.detail-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: #f8fafc;
    padding: 6px 12px;
    border-radius: 14px;
    direction: ltr;
    text-align: left;
}

.detail-label {
    font-weight: 800;
    font-size: 11px;
    color: #3a6b92;
    letter-spacing: 0.3px;
}

.detail-value {
    font-family: 'SF Mono', 'Fira Code', monospace;
    font-size: 11px;
    font-weight: 600;
    color: #1e2f3d;
    direction: ltr;
    text-align: left;
}

.copy-btn {
    background: transparent;
    border: none;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    margin-left: 8px;
    opacity: 0.55;
    transition: opacity 0.2s;
}

.copy-btn svg {
    width: 14px;
    height: 14px;
    stroke: #4f7ea3;
    stroke-width: 2;
    fill: none;
}

.copy-btn:hover {
    opacity: 1;
}

.value-wrapper {
    display: flex;
    align-items: center;
    direction: ltr;
    gap: 6px;
}

/* Toast Notification */
.toast-msg {
    position: fixed;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    background: #1e2f3d;
    backdrop-filter: blur(16px);
    color: white;
    padding: 10px 28px;
    border-radius: 48px;
    font-size: 13px;
    font-weight: 600;
    z-index: 1000;
    opacity: 0;
    transition: opacity 0.25s;
    pointer-events: none;
    white-space: nowrap;
    font-family: monospace;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

.toast-msg.show {
    opacity: 1;
}

/* Responsive */
@media (max-width: 880px) {
    .colors-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }
    .brand-header h1 {
        font-size: 28px;
    }
    body {
        padding: 24px 20px;
    }
}

@media (max-width: 600px) {
    body {
        padding: 16px;
    }
    .colors-grid {
        grid-template-columns: 1fr;
    }
    .color-swatch {
        width: 75px;
        min-width: 75px;
    }
    .pantone-title {
        font-size: 16px;
    }
    .toolbar {
        border-radius: 40px;
        padding: 8px 18px;
    }
    .toast-msg {
        white-space: nowrap;
        font-size: 11px;
        padding: 8px 18px;
    }
}/* End custom CSS */