/* ===== SHARED HEADER STYLES ===== */
.pb-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 9999;
    background: #ffffff;
    padding: 12px 40px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.pb-header-container {
    max-width: 1500px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.pb-logo a {
    display: inline-block;
    text-decoration: none;
    transition: all 0.3s ease;
}

.pb-logo a:hover {
    opacity: 0.8;
}

.pb-logo a img {
    display: block;
    max-width: 120px;
    height: auto;
}

.pb-nav {
    display: flex;
    gap: 25px;
}

.pb-nav a {
    font-family: 'Arimo', sans-serif;
    font-size: 13px;
    font-weight: 700;
    color: #0d0d0d;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-decoration: none;
    transition: color 0.3s;
}

.pb-nav a:hover {
    color: #e67e22;
}

.pb-header-actions {
    display: flex;
    align-items: center;
    gap: 20px;
}

.pb-cart-icon {
    background: none;
    border: none;
    font-size: 20px;
    cursor: pointer;
    color: #0d0d0d;
    position: relative;
}

.pb-enquiry-btn {
    background: linear-gradient(135deg, #d4242a 0%, #8b1f24 100%) !important;
    color: #ffffff !important;
    padding: 10px 22px !important;
    border-radius: 25px !important;
    text-decoration: none !important;
    font-family: 'Arimo', sans-serif !important;
    font-size: 13px !important;
    font-weight: 700 !important;
    text-transform: uppercase !important;
    letter-spacing: 0.5px !important;
    transition: all 0.3s ease !important;
    display: inline-block !important;
    box-shadow: 0 4px 12px rgba(212, 36, 42, 0.3) !important;
    border: none !important;
}

.pb-enquiry-btn:hover {
    transform: translateY(-2px) !important;
    box-shadow: 0 6px 16px rgba(212, 36, 42, 0.4) !important;
    color: #ffffff !important;
}

.pb-cart-count {
    position: absolute;
    top: -6px;
    right: -6px;
    background: #e67e22;
    color: #ffffff;
    font-size: 10px;
    padding: 2px 5px;
    border-radius: 50%;
}

.pb-hamburger {
    display: none;
    flex-direction: column;
    gap: 4px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.pb-hamburger span {
    width: 22px;
    height: 2px;
    background: #ffffff;
    transition: 0.3s;
}

@media (max-width: 900px) {
    .pb-nav { display: none; }
    .pb-hamburger { display: flex; }
}

/* ===== SHARED FOOTER STYLES ===== */
.pb-footer {
    background: #f7f3ed;
    color: #1f1f1f;
    padding: 60px 20px 0;
}

.footer-logo-link {
    display: inline-block;
    max-width: 180px;
}

.footer-logo {
    width: 100%;
    height: auto;
    display: block;
    max-width: 180px;
}

.footer-brand-column p {
    max-width: 220px;
}

.pb-footer-container {
    display: grid;
    grid-template-columns: repeat(6, minmax(160px, 1fr));
    gap: 28px;
    max-width: 1400px;
    margin: 0 auto;
    padding-bottom: 40px;
}

.pb-footer-col {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.pb-footer h3 {
    font-family: 'Marcellus', serif;
    font-size: 18px;
    margin-bottom: 12px;
    color: #1f1f1f;
    letter-spacing: 0.02em;
}

.pb-footer p, .pb-footer a {
    font-family: 'Arimo', sans-serif;
    font-size: 14px;
    color: #4a4a4a;
    line-height: 1.8;
}

.pb-footer a {
    text-decoration: none;
    color: #4a4a4a;
}

.pb-footer a:hover {
    color: #c2381a;
}

.pb-footer-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    gap: 8px;
}

.pb-footer-list li {
    margin: 0;
}

.pb-footer-list a {
    display: inline-block;
    transition: color 0.25s ease;
}

.pb-social {
    display: flex;
    gap: 10px;
    margin-top: 10px;
}

.pb-social a {
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    background: #1f1f1f;
    color: #f7f3ed;
    border-radius: 50%;
    transition: background 0.3s ease;
    font-size: 14px;
}

.pb-social a:hover {
    background: #c2381a;
}

.pb-footer-bottom {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 14px;
    background: #202020;
    color: #f4f2ef;
    padding: 18px 20px;
    margin: 0;
    width: 100vw;
    margin-left: calc(50% - 50vw);
    box-sizing: border-box;
}

.pb-footer-bottom .footer-contact {
    font-family: 'Arimo', sans-serif;
    font-size: 14px;
    color: #f4f2ef;
}

.footer-legal {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    align-items: center;
}

.footer-legal a {
    color: #f4f2ef;
    text-decoration: none;
    font-family: 'Arimo', sans-serif;
    font-size: 13px;
    transition: color 0.2s ease;
}

.footer-legal a:hover {
    color: #c2381a;
}

.pb-footer-bottom p, .pb-footer-bottom .footer-contact {
    margin: 0;
}

@media (max-width: 1180px) {
    .pb-footer-container {
        grid-template-columns: repeat(4, minmax(160px, 1fr));
    }
}

@media (max-width: 940px) {
    .pb-footer-container {
        grid-template-columns: repeat(3, minmax(160px, 1fr));
    }
}

@media (max-width: 720px) {
    .pb-footer-container {
        grid-template-columns: repeat(2, minmax(160px, 1fr));
    }
}

@media (max-width: 540px) {
    .pb-footer-container {
        grid-template-columns: 1fr;
    }
}

/* ===== SHARED BREADCRUMBS ===== */
.pb-breadcrumbs {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: 'Arimo', sans-serif;
    font-size: 13px;
    padding: 16px 40px;
    max-width: 1400px;
    margin: 0 auto;
    color: #4a4a4a;
}

.pb-breadcrumbs a {
    color: #e67e22;
    text-decoration: none;
    transition: color 0.2s;
}

.pb-breadcrumbs a:hover {
    color: #cf6a1a;
}

.pb-breadcrumbs .sep {
    color: #999;
    font-weight: 700;
}

.pb-breadcrumbs .current {
    color: #1a1a1a;
    font-weight: 700;
}
