/* ============================================
   PASTA BEACH CUSTOM STYLES - AARON'S PIZZA
   ============================================ */

/* Import Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Marcellus&family=Arimo:wght@400;700&display=swap');

/* ============================================
   GLOBAL STYLES & RESET
   ============================================ */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arimo', sans-serif;
    color: #0d0d0d;
    background: #f5f0e8;
    overflow-x: hidden;
}

/* Hide Default Astra Header & WordPress Header Images */
.site-header,
.ast-desktop-header,
.ast-mobile-header,
.ast-main-header-wrap,
.wp-custom-header,
.custom-header,
.custom-header-media,
.wp-custom-header-video-button,
header.site-header,
.site-branding img,
.ast-header-break-point .site-branding img,
.astra-theme .custom-header,
body > .wp-custom-header,
body > .custom-header,
#masthead,
.site-header-primary-section-left,
.site-header-focus-item {
    display: none !important;
    visibility: hidden !important;
    height: 0 !important;
    overflow: hidden !important;
}

/* Force body to start at top */
body {
    padding-top: 0 !important;
}

body.admin-bar {
    padding-top: 0 !important;
}

/* Admin Bar Fix */
body.admin-bar .pb-header {
    top: 32px;
}

@media screen and (max-width: 782px) {
    body.admin-bar .pb-header {
        top: 46px;
    }
}

/* ============================================
   CUSTOM HEADER - PASTA BEACH STYLE
   ============================================ */

.pb-header {
    background: #ffffff;
    padding: 20px 40px;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 9999;
    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;
}

/* Logo LEFT */
.pb-logo a {
    color: #0d0d0d;
    font-family: 'Marcellus', serif;
    font-size: 0.95rem;
    font-weight: 700;
    text-decoration: none;
    letter-spacing: 2px;
    border: 2px solid #0d0d0d;
    padding: 8px 20px;
    transition: all 0.3s ease;
}

.pb-logo a:hover {
    background: #0d0d0d;
    color: #ffffff;
}

/* Navigation CENTER */
.pb-nav {
    display: flex;
    gap: 20px;
    align-items: center;
    margin-right: 0;
}

.pb-nav a {
    color: #0d0d0d;
    text-decoration: none;
    font-weight: 600;
    letter-spacing: 1.5px;
    font-size: 0.75rem;
    transition: all 0.3s ease;
    position: relative;
}

.pb-nav a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: #FF5A5F;
    transition: width 0.3s ease;
}

.pb-nav a:hover::after {
    width: 100%;
}

.pb-nav a:hover {
    color: #FF5A5F;
}

/* Hamburger Menu - Always Visible */
.pb-hamburger {
    display: flex;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
    background: transparent;
    border: none;
    padding: 10px;
    position: relative;
    z-index: 10005;
}

.pb-hamburger span {
    width: 30px;
    height: 3px;
    background: #0d0d0d;
    transition: all 0.3s ease;
    border-radius: 2px;
}

.pb-hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.pb-hamburger.active span:nth-child(2) {
    opacity: 0;
}

.pb-hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

/* Header Cart & Account Icons */
.pb-header-actions {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-right: 0;
    margin-left: 0;
    position: relative;
    z-index: 10003;
}

.pb-account-icon,
.pb-cart-icon {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    background: none;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0;
}

.account-icon-svg,
.cart-icon-svg {
    font-size: 24px;
    filter: grayscale(100%);
    transition: all 0.3s ease;
}

.pb-account-icon:hover .account-icon-svg,
.pb-cart-icon:hover .cart-icon-svg {
    filter: grayscale(0%);
    transform: scale(1.1);
}

.pb-cart-count {
    position: absolute;
    top: -8px;
    right: -10px;
    background: #FF5A5F;
    color: white;
    font-size: 11px;
    font-weight: 700;
    padding: 2px 6px;
    border-radius: 10px;
    min-width: 18px;
    text-align: center;
    line-height: 1.4;
    box-shadow: 0 2px 5px rgba(255, 90, 95, 0.4);
}

/* Profile Dropdown */
.pb-profile-dropdown {
    position: relative;
}

.pb-profile-menu {
    position: absolute;
    top: calc(100% + 15px);
    right: 0;
    background: white;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    min-width: 250px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 1000;
    overflow: hidden;
}

.pb-profile-menu.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.pb-profile-menu::before {
    content: '';
    position: absolute;
    top: -8px;
    right: 15px;
    width: 0;
    height: 0;
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    border-bottom: 8px solid white;
}

.pb-profile-header {
    background: linear-gradient(135deg, #FF5A5F 0%, #FF4747 100%);
    padding: 20px;
    color: white;
}

.pb-profile-name {
    display: block;
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 5px;
    text-transform: capitalize;
}

.pb-profile-email {
    display: block;
    font-size: 13px;
    opacity: 0.9;
}

.pb-profile-links {
    list-style: none;
    margin: 0;
    padding: 0;
}

.pb-profile-links li {
    border-bottom: 1px solid #f0f0f0;
}

.pb-profile-links li:last-child {
    border-bottom: none;
}

.pb-profile-links a {
    display: block;
    padding: 15px 20px;
    color: #333;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.pb-profile-links a:hover {
    background: #f8f9fa;
    color: #FF5A5F;
    padding-left: 25px;
}

.pb-profile-links #logoutBtn {
    color: #FF5A5F;
}

.pb-profile-links #logoutBtn:hover {
    background: #fff5f5;
    color: #dc3545;
}

/* Account Pages */
.pb-account-page {
    min-height: 100vh;
    background: #f8f9fa;
    padding: 100px 20px 60px;
}

.pb-account-container {
    max-width: 1500px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 30px;
}

.pb-account-sidebar {
    background: white;
    border-radius: 12px;
    padding: 0;
    height: fit-content;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    position: sticky;
    top: 120px;
}

.pb-account-user-info {
    padding: 30px 20px;
    text-align: center;
    background: linear-gradient(135deg, #FF5A5F 0%, #FF4747 100%);
    border-radius: 12px 12px 0 0;
    color: white;
}

.pb-account-avatar {
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
    border: 3px solid rgba(255, 255, 255, 0.3);
}

.pb-avatar-icon {
    font-size: 40px;
}

.pb-account-username {
    font-size: 18px;
    font-weight: 700;
    margin: 0 0 5px 0;
    text-transform: capitalize;
}

.pb-account-email {
    font-size: 13px;
    opacity: 0.9;
    margin: 0;
}

.pb-account-nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.pb-account-nav li {
    border-bottom: 1px solid #f0f0f0;
}

.pb-account-nav li:last-child {
    border-bottom: none;
}

.pb-account-nav a {
    display: block;
    padding: 18px 25px;
    color: #333;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
}

.pb-account-nav li.active a,
.pb-account-nav a:hover {
    background: #fff5f5;
    color: #FF5A5F;
    padding-left: 30px;
}

.pb-account-nav .pb-account-logout {
    color: #FF5A5F;
}

.pb-account-nav .pb-account-logout:hover {
    background: #fff5f5;
    color: #dc3545;
}

.pb-account-content {
    background: white;
    border-radius: 12px;
    padding: 40px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.pb-account-header {
    margin-bottom: 40px;
}

.pb-account-header h1 {
    font-size: 32px;
    margin: 0 0 10px 0;
    color: #333;
}

.pb-account-header p {
    font-size: 16px;
    color: #666;
    margin: 0;
}

.pb-account-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-bottom: 40px;
}

.pb-account-card {
    padding: 30px;
    border-radius: 12px;
    text-align: center;
    color: white;
}

/* Different background colors for each card */
.pb-account-card:nth-child(1) {
    background: linear-gradient(135deg, #FF5A5F 0%, #FF4747 100%);
}

.pb-account-card:nth-child(2) {
    background: linear-gradient(135deg, #ff9966 0%, #ff5e62 100%);
}

.pb-account-card:nth-child(3) {
    background: linear-gradient(135deg, #ffa751 0%, #ffe259 100%);
}

.pb-account-card:nth-child(4) {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.pb-card-icon {
    font-size: 40px;
    margin-bottom: 15px;
}

.pb-account-card h3 {
    font-size: 14px;
    font-weight: 500;
    margin: 0 0 10px 0;
    opacity: 0.9;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.pb-card-number {
    font-size: 36px;
    font-weight: 700;
    margin: 0;
}

.pb-card-text {
    font-size: 20px;
    font-weight: 600;
    margin: 0;
}

.pb-account-details {
    background: #f8f9fa;
    padding: 30px;
    border-radius: 12px;
    margin-bottom: 40px;
}

.pb-account-details h2 {
    font-size: 24px;
    margin: 0 0 25px 0;
}

.pb-account-form .pb-form-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-bottom: 20px;
}

.pb-account-form .pb-form-group {
    display: flex;
    flex-direction: column;
}

.pb-account-form label {
    font-size: 14px;
    font-weight: 600;
    color: #333;
    margin-bottom: 8px;
}

.pb-account-form input {
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 14px;
    transition: all 0.3s ease;
}

.pb-account-form input:focus {
    border-color: #FF5A5F;
    outline: none;
    box-shadow: 0 0 0 3px rgba(255, 90, 95, 0.1);
}

.pb-account-form input:disabled {
    background: #f0f0f0;
    cursor: not-allowed;
}

.pb-account-submit {
    background: linear-gradient(135deg, #FF5A5F 0%, #FF4747 100%);
    color: white;
    border: none;
    padding: 15px 40px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 10px;
}

.pb-account-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(255, 90, 95, 0.3);
}

.pb-form-message {
    margin-top: 15px;
    padding: 12px;
    border-radius: 8px;
    font-size: 14px;
    display: none;
}

.pb-form-message.success {
    display: block;
    background: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.pb-form-message.error {
    display: block;
    background: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

.pb-account-quick-links {
    margin-top: 40px;
}

.pb-account-quick-links h2 {
    font-size: 24px;
    margin: 0 0 20px 0;
}

.pb-quick-links-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 15px;
}

.pb-quick-link {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 20px;
    background: #f8f9fa;
    border-radius: 10px;
    text-decoration: none;
    color: #333;
    font-weight: 600;
    transition: all 0.3s ease;
}

.pb-quick-link:hover {
    background: linear-gradient(135deg, #FF5A5F 0%, #FF4747 100%);
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(255, 90, 95, 0.3);
}

.pb-quick-icon {
    font-size: 28px;
}

/* Orders Page */
.pb-no-orders {
    text-align: center;
    padding: 80px 20px;
}

.pb-no-orders-icon {
    font-size: 80px;
    margin-bottom: 20px;
}

.pb-no-orders h2 {
    font-size: 28px;
    margin: 0 0 15px 0;
    color: #333;
}

.pb-no-orders p {
    font-size: 16px;
    color: #666;
    margin: 0 0 30px 0;
}

.pb-shop-now-btn {
    display: inline-block;
    background: linear-gradient(135deg, #FF5A5F 0%, #FF4747 100%);
    color: white;
    padding: 15px 40px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 700;
    transition: all 0.3s ease;
}

.pb-shop-now-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(255, 90, 95, 0.3);
}

.pb-orders-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.pb-order-item {
    background: #f8f9fa;
    border-radius: 12px;
    padding: 25px;
}

.pb-order-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 2px solid #e0e0e0;
}

.pb-order-info h3 {
    font-size: 20px;
    margin: 0 0 5px 0;
    color: #333;
}

.pb-order-date {
    font-size: 14px;
    color: #666;
}

.pb-order-status {
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
}

.pb-order-status.pending {
    background: #fff3cd;
    color: #856404;
}

.pb-order-status.processing {
    background: #cfe2ff;
    color: #084298;
}

.pb-order-status.completed {
    background: #d1e7dd;
    color: #0f5132;
}

.pb-order-status.delivered {
    background: #d1e7dd;
    color: #0f5132;
}

.pb-order-details {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 20px;
}

.pb-order-items {
    flex: 1;
}

.pb-order-product {
    display: flex;
    justify-content: space-between;
    padding: 8px 0;
    color: #555;
}

.pb-product-name {
    font-weight: 500;
}

.pb-product-qty {
    color: #999;
    margin-left: 10px;
}

.pb-order-total {
    font-size: 24px;
    font-weight: 700;
    color: #333;
}

.pb-order-actions {
    display: flex;
    gap: 10px;
}

.pb-order-btn {
    padding: 12px 25px;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.pb-view-order {
    background: linear-gradient(135deg, #FF5A5F 0%, #FF4747 100%);
    color: white;
}

.pb-view-order:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 90, 95, 0.3);
}

.pb-reorder {
    background: white;
    color: #FF5A5F;
    border: 2px solid #FF5A5F;
}

.pb-reorder:hover {
    background: #FF5A5F;
    color: white;
}

/* Checkout Login Required */
.pb-checkout-login-required {
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 60px 20px;
}

.pb-login-required-content {
    text-align: center;
    max-width: 500px;
    background: white;
    padding: 60px 40px;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.pb-login-icon {
    font-size: 80px;
    margin-bottom: 25px;
}

.pb-login-required-content h2 {
    font-size: 32px;
    margin: 0 0 15px 0;
    color: #333;
}

.pb-login-required-content p {
    font-size: 16px;
    color: #666;
    margin: 0 0 30px 0;
    line-height: 1.6;
}

.pb-login-required-btn {
    background: linear-gradient(135deg, #FF5A5F 0%, #FF4747 100%);
    color: white;
    border: none;
    padding: 18px 50px;
    border-radius: 10px;
    font-size: 18px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
}

.pb-login-required-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(255, 90, 95, 0.4);
}

.pb-checkout-empty {
    min-height: 70vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 60px 20px;
}

.pb-empty-cart-icon {
    font-size: 100px;
    margin-bottom: 20px;
}

.pb-checkout-empty h2 {
    font-size: 32px;
    margin: 0 0 15px 0;
    color: #333;
}

.pb-checkout-empty p {
    font-size: 18px;
    color: #666;
    margin: 0 0 30px 0;
}

.pb-cart-count:empty {
    display: none;
}

/* Login/Register Modal */
.auth-modal {
    display: none;
    position: fixed;
    top: 0;
    right: 0;
    width: 100%;
    height: 100vh;
    background: rgba(0, 0, 0, 0.7);
    z-index: 99999;
}

.auth-modal.show {
    display: flex;
    align-items: stretch;
    justify-content: flex-end;
}

body.modal-open {
    overflow: hidden;
}

.auth-modal-content {
    background: #ffffff;
    width: 100%;
    max-width: 480px;
    height: 100vh;
    border-radius: 0;
    padding: 40px 35px 30px;
    position: relative;
    box-shadow: -5px 0 30px rgba(0, 0, 0, 0.3);
    animation: modalSlideIn 0.4s ease;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
}

@keyframes modalSlideIn {
    from {
        opacity: 0;
        transform: translateX(100%);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.auth-modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: none;
    border: none;
    font-size: 32px;
    color: #999;
    cursor: pointer;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.auth-modal-close:hover {
    background: #f0f0f0;
    color: #0d0d0d;
}

.auth-tabs {
    display: flex;
    gap: 10px;
    margin-bottom: 40px;
    border-bottom: 2px solid #f0f0f0;
}

.auth-tab {
    flex: 1;
    padding: 15px 20px;
    background: none;
    border: none;
    font-weight: 700;
    font-size: 1rem;
    letter-spacing: 1.5px;
    color: #999;
    cursor: pointer;
    transition: all 0.3s ease;
    border-bottom: 3px solid transparent;
    margin-bottom: -2px;
}

.auth-tab.active {
    color: #FF5A5F;
    border-bottom-color: #FF5A5F;
}

.auth-form-container {
    display: none;
    flex: 1;
}

.auth-form-container.active {
    display: flex;
    flex-direction: column;
}

.auth-form-container h2 {
    font-family: 'Marcellus', serif;
    font-size: 2rem;
    color: #0d0d0d;
    margin-bottom: 10px;
    text-align: center;
    letter-spacing: 2px;
}

.auth-subtitle {
    text-align: center;
    color: #666;
    margin-bottom: 30px;
    font-size: 1rem;
}

.auth-form-container .form-group {
    margin-bottom: 20px;
}

.auth-form-container input[type="text"],
.auth-form-container input[type="email"],
.auth-form-container input[type="password"] {
    width: 100%;
    padding: 15px 20px;
    border: 2px solid #e0e0e0;
    border-radius: 10px;
    font-size: 1rem;
    font-family: 'Arimo', sans-serif;
    transition: all 0.3s ease;
    background: #f9f9f9;
}

.auth-form-container input:focus {
    border-color: #FF5A5F;
    outline: none;
    box-shadow: 0 0 0 4px rgba(255, 90, 95, 0.1);
    background: #ffffff;
}

.form-group-checkbox {
    margin-bottom: 20px;
}

.form-group-checkbox label {
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    color: #666;
}

.form-group-checkbox input[type="checkbox"] {
    width: 18px;
    height: 18px;
    cursor: pointer;
}

.auth-submit-btn {
    width: 100%;
    background: linear-gradient(135deg, #FF5A5F 0%, #FF4747 100%);
    color: #ffffff;
    padding: 16px 30px;
    border: none;
    border-radius: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 90, 95, 0.3);
    font-family: 'Arimo', sans-serif;
}

.auth-submit-btn:hover {
    background: linear-gradient(135deg, #a01828 0%, #b02525 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 90, 95, 0.4);
}

.auth-submit-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

.auth-message {
    margin-top: 15px;
    padding: 12px;
    border-radius: 8px;
    text-align: center;
    font-weight: 600;
    display: none;
}

.auth-message.success {
    display: block;
    background: #d1e7dd;
    color: #0f5132;
}

.auth-message.error {
    display: block;
    background: #f8d7da;
    color: #842029;
}

.auth-footer {
    text-align: center;
    margin-top: 20px;
}

.forgot-password {
    color: #FF5A5F;
    text-decoration: none;
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

.forgot-password:hover {
    color: #a01828;
    text-decoration: underline;
}

/* Mobile Menu */
.pb-mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 90%;
    max-width: 1200px;
    height: 100vh;
    background: #ffffff;
    transition: right 0.4s ease;
    z-index: 10000;
    box-shadow: -5px 0 25px rgba(0, 0, 0, 0.3);
    overflow-y: auto;
}

.pb-mobile-menu.active {
    right: 0;
}

.pb-menu-close {
    position: fixed;
    top: 30px;
    right: 40px;
    width: 50px;
    height: 50px;
    background: transparent;
    border: none;
    cursor: pointer;
    z-index: 10002;
    padding: 0;
    display: flex !important;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    opacity: 0;
    pointer-events: none;
}

.pb-mobile-menu.active .pb-menu-close {
    opacity: 1;
    pointer-events: auto;
}

.pb-mobile-menu.active .pb-menu-close {
    opacity: 1;
    pointer-events: auto;
}

.pb-menu-close:hover {
    transform: rotate(90deg);
}

.pb-menu-close::before,
.pb-menu-close::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 30px;
    height: 3px;
    background: #0d0d0d;
    border-radius: 2px;
    transition: background 0.3s ease;
}

.pb-menu-close::before {
    transform: translate(-50%, -50%) rotate(45deg);
}

.pb-menu-close::after {
    transform: translate(-50%, -50%) rotate(-45deg);
}

.pb-menu-close:hover::before,
.pb-menu-close:hover::after {
    background: #FF5A5F;
}

.pb-menu-container {
    display: grid;
    grid-template-columns: 45% 55%;
    height: 100%;
    gap: 0;
}

.pb-menu-left {
    background: #f8f9fa;
    padding: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.pb-menu-left img {
    width: 100%;
    max-width: 400px;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
}

.pb-menu-right {
    padding: 80px 60px;
    display: flex;
    flex-direction: column;
    gap: 30px;
    justify-content: center;
    position: relative;
}

/* Close button inside navigation */
.pb-menu-close-inside {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 45px;
    height: 45px;
    background: transparent;
    border: none;
    cursor: pointer;
    z-index: 1001;
    padding: 0;
    display: block;
    transition: all 0.3s ease;
}

.pb-menu-close-inside:hover {
    transform: rotate(90deg);
}

.pb-menu-close-inside::before,
.pb-menu-close-inside::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 28px;
    height: 3px;
    background: #0d0d0d;
    border-radius: 2px;
    transition: background 0.3s ease;
}

.pb-menu-close-inside::before {
    transform: translate(-50%, -50%) rotate(45deg);
}

.pb-menu-close-inside::after {
    transform: translate(-50%, -50%) rotate(-45deg);
}

.pb-menu-close-inside:hover::before,
.pb-menu-close-inside:hover::after {
    background: #FF5A5F;
}

.pb-menu-item {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.pb-menu-subtitle {
    font-size: 0.75rem;
    color: #999;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    font-weight: 600;
}

.pb-menu-link {
    font-family: 'Marcellus', serif;
    font-size: 2rem;
    color: #0d0d0d;
    text-decoration: none;
    font-weight: 700;
    letter-spacing: 2px;
    transition: all 0.3s ease;
    text-transform: uppercase;
}

.pb-menu-link:hover {
    color: #FF5A5F;
    padding-left: 10px;
}

.pb-menu-link.highlight {
    color: #FF5A5F;
}

/* ============================================
   FOOTER - PASTA BEACH STYLE
   ============================================ */

.pb-footer {
    background: #0d0d0d;
    color: #ffffff;
    padding: 60px 40px 30px;
    margin-top: 80px;
}

.pb-footer-container {
    max-width: 1500px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 50px;
    margin-bottom: 40px;
}

.pb-footer-col h3 {
    font-family: 'Marcellus', serif;
    font-size: 1.2rem;
    margin-bottom: 25px;
    letter-spacing: 2px;
    color: #ffffff;
    text-transform: uppercase;
    font-weight: 700;
}

.pb-footer-col p {
    font-size: 0.95rem;
    line-height: 1.8;
    color: #cccccc;
    margin-bottom: 15px;
}

.pb-footer-col ul {
    font-size: 0.95rem;
    line-height: 1.8;
    color: #cccccc;
    list-style: none;
    padding: 0;
}

.pb-footer-col ul li {
    margin-bottom: 10px;
}

/* Social Icons */
.pb-social {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.pb-social a {
    width: 40px;
    height: 40px;
    background: #222;
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.pb-social a:hover {
    background: #FF5A5F;
    transform: translateY(-3px);
}

/* Newsletter Form */
.pb-newsletter {
    display: flex;
    gap: 10px;
    margin-top: 15px;
}

.pb-newsletter input {
    flex: 1;
    padding: 12px 15px;
    border: 1px solid #444;
    border-radius: 5px;
    background: #1a1a1a;
    color: #ffffff;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.pb-newsletter input:focus {
    outline: none;
    border-color: #FF5A5F;
    background: #222;
}

.pb-newsletter input::placeholder {
    color: #888;
}

.pb-newsletter button {
    background: linear-gradient(135deg, #FF5A5F 0%, #FF4747 100%);
    color: #ffffff;
    border: none;
    padding: 12px 25px;
    border-radius: 5px;
    font-weight: 700;
    font-size: 0.85rem;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 3px 10px rgba(255, 90, 95, 0.3);
}

.pb-newsletter button:hover {
    background: linear-gradient(135deg, #a01828 0%, #b02525 100%);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 90, 95, 0.4);
}

.pb-footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid #333;
    color: #999;
    font-size: 0.9rem;
}

/* ============================================
   HERO SECTION - PASTA BEACH STYLE
   ============================================ */

.pb-hero {
    position: relative;
    background: #f5f0e8;
    padding: 120px 40px 80px;
    text-align: center;
    margin-top: 92px;
    overflow: hidden;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.pb-hero-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
}

.pb-hero-illustration {
    width: 400px;
    height: 300px;
    margin-bottom: 40px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.2);
    animation: floatImage 6s ease-in-out infinite;
}

@keyframes floatImage {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
    }
    25% {
        transform: translateY(-20px) rotate(2deg);
    }
    50% {
        transform: translateY(-10px) rotate(-2deg);
    }
    75% {
        transform: translateY(-15px) rotate(1deg);
    }
}

.pb-hero-illustration img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.pb-hero-illustration:hover img {
    transform: scale(1.1);
}

.pb-hero-title {
    font-family: 'Marcellus', serif;
    font-size: 5rem;
    color: #0d0d0d;
    margin-bottom: 40px;
    text-transform: uppercase;
    letter-spacing: 8px;
    font-weight: 700;
}

.pb-hero-locations {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.pb-location-btn {
    background: transparent;
    color: #0d0d0d;
    padding: 15px 40px;
    border: 2px solid #0d0d0d;
    text-decoration: none;
    font-weight: 700;
    letter-spacing: 2px;
    transition: all 0.3s ease;
    display: inline-block;
    text-transform: uppercase;
    font-size: 0.9rem;
}

.pb-location-btn:hover {
    background: #0d0d0d;
    color: #ffffff;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.pb-scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 2rem;
    color: #0d0d0d;
    cursor: pointer;
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    40% {
        transform: translateX(-50%) translateY(-10px);
    }
    60% {
        transform: translateX(-50%) translateY(-5px);
    }
}

/* ============================================
   FEATURED PRODUCTS SECTION
   ============================================ */

.featured-products-section {
    padding: 100px 40px 80px;
    background: #f9f9f9;
}

.featured-products-section h2 {
    font-family: 'Marcellus', serif;
    font-size: 3.2rem;
    text-align: center;
    color: #0d0d0d;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 4px;
    font-weight: 400;
}

.featured-products-section .section-subtitle {
    text-align: center;
    color: #777;
    font-size: 1.15rem;
    margin-bottom: 70px;
    letter-spacing: 0.5px;
    font-weight: 300;
    line-height: 1.6;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.featured-products-section .products {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 35px;
    max-width: 1500px;
    margin: 0 auto 60px;
    padding: 0 20px;
}

.featured-products-section .product {
    background: #ffffff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
}

.featured-products-section .product:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.15);
}

.featured-products-section .product img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.featured-products-section .product:hover img {
    transform: scale(1.08);
}

.featured-products-section .product .woocommerce-loop-product__title,
.featured-products-section .product a {
    font-family: 'Marcellus', serif;
    font-size: 1.35rem;
    color: #0d0d0d;
    margin: 25px 0 12px;
    padding: 0 25px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    text-decoration: none !important;
    transition: color 0.3s ease;
}

.featured-products-section .product a:hover {
    color: #FF5A5F;
}

.featured-products-section .product .price {
    font-size: 1.5rem;
    color: #FF5A5F;
    font-weight: 700;
    margin-bottom: 25px;
    font-family: 'Arimo', sans-serif;
}

.featured-products-section .product .button {
    background: linear-gradient(135deg, #FF5A5F 0%, #FF4747 100%);
    color: #ffffff;
    padding: 14px 35px;
    border: none;
    border-radius: 8px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.8px;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-bottom: 25px;
    text-decoration: none !important;
    display: inline-block;
    font-size: 0.95rem;
}

.featured-products-section .product .button:hover {
    background: linear-gradient(135deg, #a01828 0%, #b02525 100%);
    transform: scale(1.06);
    box-shadow: 0 6px 20px rgba(255, 90, 95, 0.4);
}

/* Browse More Button */
.browse-more-products {
    text-align: center;
    padding-top: 20px;
}

.browse-more-btn {
    display: inline-block;
    background: transparent;
    color: #0d0d0d;
    padding: 16px 45px;
    border: 2px solid #0d0d0d;
    border-radius: 8px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none !important;
    font-size: 1rem;
    font-family: 'Arimo', sans-serif;
}

.browse-more-btn:hover {
    background: #0d0d0d;
    color: #ffffff;
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(13, 13, 13, 0.2);
}

/* ============================================
   LOCATION SECTIONS
   ============================================ */

.pb-location-section {
    padding: 80px 40px;
    background: #f8f9fa;
}

.pb-location-section.dark {
    background: #0d0d0d;
    color: #ffffff;
}

/* Section Container - Two Column Layout */
.pb-section-container {
    max-width: 1500px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

/* Reverse layout for alternating sections */
.pb-location-section.reverse .pb-section-container {
    direction: rtl;
}

.pb-location-section.reverse .pb-section-container > * {
    direction: ltr;
}

/* Image Grid - Left Side */
.pb-section-images {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto auto;
    gap: 15px;
}

.pb-image-large {
    grid-column: 1 / -1;
    grid-row: 1;
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.pb-image-large img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.pb-image-large:hover img {
    transform: scale(1.05);
}

.pb-image-small {
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.pb-image-small img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.pb-image-small:hover img {
    transform: scale(1.05);
}

/* Content - Right Side */
.pb-section-content {
    padding: 20px;
}

.pb-section-title {
    font-family: 'Marcellus', serif;
    font-size: 3rem;
    margin-bottom: 25px;
    text-transform: uppercase;
    letter-spacing: 4px;
    color: #0d0d0d;
}

.pb-location-section.dark .pb-section-title {
    color: #ffffff;
}

.pb-section-text {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 35px;
    color: #666;
}

.pb-location-section.dark .pb-section-text {
    color: #cccccc;
}

.pb-section-links {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.pb-section-link {
    background: transparent;
    color: #0d0d0d;
    padding: 12px 28px;
    text-decoration: none;
    border: 2px solid #0d0d0d;
    border-radius: 6px;
    font-weight: 700;
    font-size: 0.85rem;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    transition: all 0.3s ease;
    display: inline-block;
}

.pb-section-link:hover {
    background: #0d0d0d;
    color: #ffffff;
}

.pb-section-link.highlight {
    background: linear-gradient(135deg, #FF5A5F 0%, #FF4747 100%);
    border-color: #FF5A5F;
    color: #ffffff;
    box-shadow: 0 4px 15px rgba(196, 30, 58, 0.3);
}

.pb-section-link.highlight:hover {
    background: linear-gradient(135deg, #a01828 0%, #b02525 100%);
    border-color: #a01828;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(196, 30, 58, 0.4);
}

.pb-location-section.dark .pb-section-link {
    border-color: #ffffff;
    color: #ffffff;
}

.pb-location-section.dark .pb-section-link:hover {
    background: #ffffff;
    color: #0d0d0d;
}

/* Old location styles kept for compatibility */

.pb-location-container {
    max-width: 1500px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.pb-location-content h2 {
    font-family: 'Marcellus', serif;
    font-size: 3rem;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 3px;
}

.pb-location-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 30px;
    color: #666;
}

.pb-location-section.dark .pb-location-content p {
    color: #cccccc;
}

.pb-location-content .pb-btn {
    background: #FF5A5F;
    color: #ffffff;
    padding: 15px 40px;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 700;
    letter-spacing: 2px;
    transition: all 0.3s ease;
    display: inline-block;
}

.pb-location-content .pb-btn:hover {
    background: #a01828;
    transform: translateY(-3px);
}

.pb-location-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

/* ============================================
   SHOP PAGE - WOOCOMMERCE PRODUCTS
   ============================================ */

.woocommerce-page .site-content,
.woocommerce .site-content {
    padding-top: 140px;
    padding-bottom: 60px;
    max-width: 1500px;
    margin: 0 auto;
    padding-left: 40px;
    padding-right: 40px;
}

.woocommerce-products-header h1,
.woocommerce h1.page-title {
    font-family: 'Marcellus', serif;
    font-size: 3rem;
    text-align: center;
    color: #0d0d0d;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 3px;
}

.woocommerce ul.products {
    display: grid !important;
    grid-template-columns: repeat(4, 1fr) !important;
    gap: 30px !important;
    margin: 0 auto !important;
    padding: 0 !important;
    list-style: none !important;
}

.woocommerce ul.products li.product {
    background: #ffffff !important;
    border-radius: 12px !important;
    overflow: hidden !important;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1) !important;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
    text-align: center !important;
    padding: 0 !important;
    margin: 0 !important;
    width: 100% !important;
    float: none !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
}

.woocommerce ul.products li.product:hover {
    transform: translateY(-10px) !important;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2) !important;
}

.woocommerce ul.products li.product img {
    width: 100% !important;
    height: 250px !important;
    object-fit: cover !important;
    transition: transform 0.3s ease !important;
    border-radius: 0 !important;
}

.woocommerce ul.products li.product:hover img {
    transform: scale(1.05) !important;
}

.woocommerce ul.products li.product .woocommerce-loop-product__title {
    font-family: 'Marcellus', serif !important;
    font-size: 1.3rem !important;
    color: #0d0d0d !important;
    margin: 20px 0 10px !important;
    padding: 0 20px !important;
    font-weight: 700 !important;
    text-transform: uppercase !important;
    letter-spacing: 1px !important;
}

.woocommerce ul.products li.product .price {
    font-size: 1.4rem !important;
    color: #FF5A5F !important;
    font-weight: 700 !important;
    margin-bottom: 20px !important;
}

.woocommerce ul.products li.product .button {
    background: linear-gradient(135deg, #FF5A5F 0%, #FF4747 100%) !important;
    color: #ffffff !important;
    padding: 12px 30px !important;
    border: none !important;
    border-radius: 6px !important;
    font-weight: 700 !important;
    text-transform: uppercase !important;
    letter-spacing: 1.5px !important;
    cursor: pointer !important;
    transition: all 0.3s ease !important;
    margin-bottom: 20px !important;
    text-decoration: none !important;
}

.woocommerce ul.products li.product .button:hover {
    background: linear-gradient(135deg, #a01828 0%, #b02525 100%) !important;
    transform: scale(1.05) !important;
}

/* ============================================
   ORDER ONLINE PAGE - PROFESSIONAL LAYOUT
   ============================================ */

.order-online-page {
    padding-top: 140px;
    padding-bottom: 60px;
    max-width: 1500px;
    margin: 0 auto;
    padding-left: 40px;
    padding-right: 40px;
}

.order-online-page h1 {
    font-family: 'Marcellus', serif;
    font-size: 3rem;
    text-align: center;
    color: #0d0d0d;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 3px;
}

.order-online-page .page-subtitle {
    text-align: center;
    color: #666;
    font-size: 1.1rem;
    margin-bottom: 60px;
    letter-spacing: 1px;
}

.order-products-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.order-product-card {
    background: #ffffff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
}

.order-product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

.product-image {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.order-product-card:hover .product-image {
    transform: scale(1.05);
}

.product-info {
    padding: 20px;
    text-align: center;
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
}

.product-info h3 {
    font-family: 'Marcellus', serif;
    font-size: 1.3rem;
    color: #0d0d0d;
    margin-bottom: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.product-info .product-price {
    font-size: 1.4rem;
    color: #FF5A5F;
    font-weight: 700;
    margin-bottom: 15px;
}

.product-info .add-to-cart-button {
    background: linear-gradient(135deg, #FF5A5F 0%, #FF4747 100%);
    color: #ffffff;
    padding: 12px 30px;
    border: none;
    border-radius: 6px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.product-info .add-to-cart-button:hover {
    background: linear-gradient(135deg, #a01828 0%, #b02525 100%);
    transform: scale(1.05);
}

/* ============================================
   CHECKOUT PAGE - PROFESSIONAL FORM DESIGN
   ============================================ */

/* Checkout Page Container */
.woocommerce-checkout,
.woocommerce-page.woocommerce-checkout {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    padding-top: 140px !important;
    padding-bottom: 60px !important;
    min-height: 100vh;
}

.woocommerce-checkout .woocommerce,
.woocommerce-checkout .site-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
}

/* Hide Default Page Title */
.woocommerce-checkout .entry-header {
    display: none;
}

/* Checkout Layout - Two Columns */
.woocommerce-checkout .col2-set {
    width: 58%;
    float: left;
    padding-right: 40px;
}

.woocommerce-checkout #order_review_heading,
.woocommerce-checkout #order_review {
    width: 38%;
    float: right;
    margin-left: 2%;
}

/* Clear floats */
.woocommerce-checkout::after,
.woocommerce-checkout .woocommerce::after {
    content: "";
    display: table;
    clear: both;
}

/* Form Rows - Proper Layout */
.woocommerce form .form-row {
    margin-bottom: 20px !important;
    padding: 0 !important;
    clear: both;
}

.woocommerce form .form-row-first,
.woocommerce form .form-row-last {
    width: 48% !important;
    float: left !important;
}

.woocommerce form .form-row-last {
    float: right !important;
}

.woocommerce form .form-row-wide {
    width: 100% !important;
    clear: both !important;
}

/* Form Labels - Left Aligned */
.woocommerce form .form-row label {
    color: #0d0d0d !important;
    font-weight: 600 !important;
    font-size: 0.9rem !important;
    font-family: 'Arimo', sans-serif !important;
    margin-bottom: 8px !important;
    display: block !important;
    letter-spacing: 0.5px;
    text-align: left !important;
    text-transform: uppercase;
}

.woocommerce form .form-row label .required {
    color: #FF5A5F !important;
    font-weight: 700;
    margin-left: 3px;
}

/* Form Input Fields - Professional Styling */
.woocommerce form .form-row input.input-text,
.woocommerce form .form-row textarea,
.woocommerce form .form-row select,
.woocommerce form .form-row .select2-container {
    width: 100% !important;
    padding: 12px 16px !important;
    border: 1px solid #d0d0d0 !important;
    border-radius: 6px !important;
    font-size: 0.95rem !important;
    font-family: 'Arimo', sans-serif !important;
    transition: all 0.3s ease !important;
    background: #ffffff !important;
    color: #333 !important;
    box-sizing: border-box !important;
}

.woocommerce form .form-row input.input-text:focus,
.woocommerce form .form-row textarea:focus,
.woocommerce form .form-row select:focus {
    border-color: #FF5A5F !important;
    outline: none !important;
    box-shadow: 0 0 0 3px rgba(255, 90, 95, 0.1) !important;
}

.woocommerce form .form-row textarea {
    min-height: 100px !important;
    resize: vertical !important;
}

.woocommerce form .form-row select {
    appearance: none;
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e") !important;
    background-repeat: no-repeat !important;
    background-position: right 12px center !important;
    background-size: 18px !important;
    padding-right: 40px !important;
}

/* Billing Details Section */
.woocommerce-billing-fields h3,
.woocommerce-additional-fields h3 {
    color: #0d0d0d !important;
    font-family: 'Marcellus', serif !important;
    font-size: 1.8rem !important;
    font-weight: 700 !important;
    margin-bottom: 30px !important;
    padding-bottom: 15px !important;
    border-bottom: 2px solid #f0f0f0 !important;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-align: left !important;
}

/* Order Review Section */
#order_review_heading {
    color: #0d0d0d !important;
    font-family: 'Marcellus', serif !important;
    font-size: 1.8rem !important;
    font-weight: 700 !important;
    margin-bottom: 25px !important;
    padding-bottom: 15px !important;
    border-bottom: 2px solid #f0f0f0 !important;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-align: left !important;
}

.woocommerce-checkout-review-order {
    background: #ffffff;
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid #e0e0e0;
}

.woocommerce-checkout-review-order-table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 0;
}

.woocommerce-checkout-review-order-table thead {
    background: #f8f9fa;
}

.woocommerce-checkout-review-order-table th {
    padding: 12px 15px !important;
    text-align: left !important;
    color: #0d0d0d !important;
    font-weight: 700 !important;
    font-family: 'Arimo', sans-serif !important;
    text-transform: uppercase;
    font-size: 0.85rem !important;
    letter-spacing: 1px;
    border-bottom: 2px solid #e0e0e0 !important;
}

.woocommerce-checkout-review-order-table td {
    padding: 15px !important;
    border-bottom: 1px solid #f0f0f0 !important;
    font-family: 'Arimo', sans-serif !important;
    font-size: 0.95rem;
}

.woocommerce-checkout-review-order-table .product-name {
    color: #333 !important;
    font-weight: 500 !important;
}

.woocommerce-checkout-review-order-table .product-total {
    text-align: right !important;
    color: #FF5A5F !important;
    font-weight: 700 !important;
}

.woocommerce-checkout-review-order-table .cart-subtotal th,
.woocommerce-checkout-review-order-table .cart-subtotal td {
    padding: 18px 15px !important;
    font-size: 1rem !important;
    font-weight: 600 !important;
    border-top: 1px solid #e0e0e0 !important;
}

.woocommerce-checkout-review-order-table .order-total th,
.woocommerce-checkout-review-order-table .order-total td {
    padding: 20px 15px !important;
    font-size: 1.2rem !important;
    font-weight: 700 !important;
    border-top: 2px solid #FF5A5F !important;
    background: #f8f9fa;
}

.woocommerce-checkout-review-order-table .order-total .amount {
    color: #FF5A5F !important;
    font-size: 1.5rem !important;
}

/* Payment Methods */
.woocommerce-checkout-payment {
    background: #ffffff;
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid #e0e0e0;
    margin-top: 30px;
    clear: both;
}

#payment .payment_methods {
    list-style: none !important;
    padding: 0 !important;
    margin: 0 0 20px 0 !important;
}

#payment .payment_methods li {
    background: #f8f9fa;
    border-radius: 8px;
    margin-bottom: 12px !important;
    padding: 18px !important;
    border: 2px solid #e0e0e0 !important;
    transition: all 0.3s ease;
}

#payment .payment_methods li:hover {
    border-color: #FF5A5F;
    background: #ffffff;
}

#payment .payment_methods li.wc_payment_method input[type="radio"] {
    margin-right: 10px;
}

#payment .payment_methods li label {
    font-weight: 600 !important;
    font-size: 1rem !important;
    color: #0d0d0d !important;
    cursor: pointer;
    display: inline;
}

#payment .payment_box {
    background: #ffffff !important;
    border-radius: 6px !important;
    padding: 15px !important;
    margin-top: 12px !important;
    border: 1px solid #e0e0e0 !important;
}

#payment .payment_box p {
    margin: 0 !important;
    color: #666 !important;
    line-height: 1.6 !important;
    font-size: 0.9rem !important;
}

/* Place Order Button */
#place_order,
.woocommerce-checkout .button.alt {
    background: linear-gradient(135deg, #FF5A5F 0%, #FF4747 100%) !important;
    color: #ffffff !important;
    border: none !important;
    padding: 16px 40px !important;
    border-radius: 8px !important;
    font-weight: 700 !important;
    text-transform: uppercase !important;
    letter-spacing: 2px !important;
    font-size: 1rem !important;
    cursor: pointer !important;
    font-family: 'Arimo', sans-serif !important;
    width: 100% !important;
    text-align: center !important;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
    box-shadow: 0 4px 15px rgba(196, 30, 58, 0.3) !important;
    position: relative !important;
    overflow: hidden !important;
}

#place_order:hover {
    background: linear-gradient(135deg, #a01828 0%, #b02525 100%) !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 6px 20px rgba(196, 30, 58, 0.4) !important;
}

/* Coupon Section */
.woocommerce-form-coupon-toggle {
    background: #ffffff;
    padding: 18px 25px;
    border-radius: 8px;
    margin-bottom: 30px;
    border: 1px solid #e0e0e0;
    text-align: center;
}

.woocommerce-form-coupon-toggle .woocommerce-info {
    background: transparent !important;
    border: none !important;
    padding: 0 !important;
    margin: 0 !important;
    color: #333 !important;
    font-size: 0.95rem !important;
}

.woocommerce-form-coupon-toggle .woocommerce-info::before {
    display: none !important;
}

.woocommerce-form-coupon-toggle a {
    color: #FF5A5F !important;
    font-weight: 600 !important;
    text-decoration: none !important;
}

.woocommerce-form-coupon-toggle a:hover {
    text-decoration: underline !important;
}

.checkout_coupon {
    background: #ffffff !important;
    border: 1px solid #e0e0e0 !important;
    border-radius: 8px !important;
    padding: 25px !important;
    margin-bottom: 30px !important;
}

/* Privacy Policy */
.woocommerce-privacy-policy-text {
    background: #f8f9fa;
    padding: 18px;
    border-radius: 8px;
    margin-top: 20px;
    border-left: 4px solid #FF5A5F;
}

.woocommerce-privacy-policy-text p {
    margin: 0 !important;
    color: #666 !important;
    font-size: 0.85rem !important;
    line-height: 1.6 !important;
}

/* Terms and Conditions */
.woocommerce-terms-and-conditions-wrapper {
    margin-top: 20px;
}

.woocommerce-terms-and-conditions {
    max-height: 200px;
    overflow-y: auto;
    padding: 15px;
    background: #f8f9fa;
    border-radius: 6px;
    border: 1px solid #e0e0e0;
    font-size: 0.9rem;
}

.form-row.place-order {
    padding: 0 !important;
    margin-top: 20px !important;
}

/* Info Messages */
.woocommerce-info {
    background: #e3f2fd !important;
    color: #1976d2 !important;
    border-left: 4px solid #1976d2 !important;
    padding: 15px 20px !important;
    border-radius: 6px !important;
    margin-bottom: 20px !important;
}

/* ============================================
   CART PAGE - PROFESSIONAL DESIGN
   ============================================ */

.cart-page-wrapper {
    background: #f8f9fa;
    min-height: 100vh;
}

.woocommerce-cart-form {
    background: #ffffff;
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    margin-bottom: 30px;
}

.woocommerce-cart-form table.shop_table {
    width: 100%;
    border-collapse: collapse;
}

.woocommerce-cart-form table.shop_table thead {
    background: #f8f9fa;
}

.woocommerce-cart-form table.shop_table th {
    padding: 15px !important;
    text-align: left !important;
    color: #0d0d0d !important;
    font-weight: 700 !important;
    font-family: 'Arimo', sans-serif !important;
    text-transform: uppercase;
    font-size: 0.9rem !important;
    letter-spacing: 1px;
    border-bottom: 2px solid #e0e0e0 !important;
}

.woocommerce-cart-form table.shop_table td {
    padding: 20px 15px !important;
    border-bottom: 1px solid #f0f0f0 !important;
    vertical-align: middle !important;
}

.woocommerce-cart-form table.shop_table .product-thumbnail img {
    width: 100px;
    height: 100px;
    object-fit: cover;
    border-radius: 8px;
}

.woocommerce-cart-form table.shop_table .product-name a {
    color: #0d0d0d !important;
    font-weight: 600 !important;
    font-size: 1.1rem !important;
    text-decoration: none !important;
    font-family: 'Marcellus', serif !important;
}

.woocommerce-cart-form table.shop_table .product-name a:hover {
    color: #FF5A5F !important;
}

.woocommerce-cart-form table.shop_table .product-price,
.woocommerce-cart-form table.shop_table .product-subtotal {
    color: #FF5A5F !important;
    font-weight: 700 !important;
    font-size: 1.1rem !important;
}

.woocommerce-cart-form table.shop_table .product-remove a {
    color: #999 !important;
    font-size: 28px !important;
    line-height: 1 !important;
    text-decoration: none !important;
    transition: all 0.3s ease !important;
    display: inline-block;
}

.woocommerce-cart-form table.shop_table .product-remove a:hover {
    color: #FF5A5F !important;
    transform: scale(1.2);
}

.woocommerce-cart-form .quantity input.qty {
    width: 80px !important;
    padding: 8px 12px !important;
    border: 1px solid #d0d0d0 !important;
    border-radius: 6px !important;
    text-align: center !important;
    font-size: 1rem !important;
    font-weight: 600 !important;
}

.woocommerce-cart-form .actions {
    padding: 25px 15px !important;
    background: #f8f9fa !important;
}

.woocommerce-cart-form .actions .coupon {
    display: inline-block;
    margin-right: 20px;
}

.woocommerce-cart-form .actions input.input-text {
    padding: 10px 15px !important;
    border: 1px solid #d0d0d0 !important;
    border-radius: 6px !important;
    margin-right: 10px !important;
    width: 200px !important;
}

.woocommerce-cart-form .actions button,
.woocommerce-cart-form .actions .button {
    background: linear-gradient(135deg, #FF5A5F 0%, #FF4747 100%) !important;
    color: #ffffff !important;
    padding: 10px 25px !important;
    border: none !important;
    border-radius: 6px !important;
    font-weight: 700 !important;
    text-transform: uppercase !important;
    letter-spacing: 1.5px !important;
    cursor: pointer !important;
    transition: all 0.3s ease !important;
    font-size: 0.9rem !important;
}

.woocommerce-cart-form .actions button:hover,
.woocommerce-cart-form .actions .button:hover {
    background: linear-gradient(135deg, #a01828 0%, #b02525 100%) !important;
    transform: translateY(-2px);
}

/* Cart Totals */
.cart-collaterals {
    max-width: 500px;
    margin-left: auto;
}

.cart-collaterals .cart_totals {
    background: #ffffff;
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.cart-collaterals .cart_totals h2 {
    font-family: 'Marcellus', serif !important;
    font-size: 1.8rem !important;
    color: #0d0d0d !important;
    margin-bottom: 25px !important;
    padding-bottom: 15px !important;
    border-bottom: 2px solid #f0f0f0 !important;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.cart-collaterals .cart_totals table {
    width: 100%;
    border-collapse: collapse;
}

.cart-collaterals .cart_totals th,
.cart-collaterals .cart_totals td {
    padding: 15px 0 !important;
    border-bottom: 1px solid #f0f0f0 !important;
    font-size: 1rem !important;
}

.cart-collaterals .cart_totals th {
    text-align: left !important;
    color: #666 !important;
    font-weight: 600 !important;
}

.cart-collaterals .cart_totals td {
    text-align: right !important;
    color: #0d0d0d !important;
    font-weight: 700 !important;
}

.cart-collaterals .cart_totals .order-total th,
.cart-collaterals .cart_totals .order-total td {
    padding: 20px 0 !important;
    font-size: 1.3rem !important;
    border-top: 2px solid #FF5A5F !important;
    border-bottom: none !important;
}

.cart-collaterals .cart_totals .order-total td {
    color: #FF5A5F !important;
}

.cart-collaterals .wc-proceed-to-checkout {
    margin-top: 25px;
}

.cart-collaterals .wc-proceed-to-checkout .checkout-button {
    background: linear-gradient(135deg, #FF5A5F 0%, #FF4747 100%) !important;
    color: #ffffff !important;
    padding: 16px 40px !important;
    border: none !important;
    border-radius: 8px !important;
    font-weight: 700 !important;
    text-transform: uppercase !important;
    letter-spacing: 2px !important;
    font-size: 1rem !important;
    cursor: pointer !important;
    transition: all 0.3s ease !important;
    width: 100% !important;
    text-align: center !important;
    display: block !important;
    text-decoration: none !important;
    box-shadow: 0 4px 15px rgba(196, 30, 58, 0.3) !important;
}

.cart-collaterals .wc-proceed-to-checkout .checkout-button:hover {
    background: linear-gradient(135deg, #a01828 0%, #b02525 100%) !important;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(196, 30, 58, 0.4) !important;
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */

@media (max-width: 1200px) {
    .featured-products-section .products,
    .woocommerce ul.products,
    .order-products-grid {
        grid-template-columns: repeat(3, 1fr) !important;
    }
    
    .pb-hero {
        padding: 100px 30px 70px;
    }
    
    .pb-hero-title {
        font-size: 4rem;
        letter-spacing: 6px;
    }
    
    .pb-hero-illustration {
        width: 360px;
        height: 270px;
    }
}

@media (max-width: 992px) {
    .pb-header-container {
        justify-content: space-between;
    }
    
    .pb-nav {
        display: none;
    }
    
    .pb-header-actions {
        margin-right: 10px;
    }
    
    .pb-hamburger {
        display: flex;
    }
    
    /* Hero Section - Tablet */
    .pb-hero {
        padding: 100px 30px 60px;
        margin-top: 80px;
    }
    
    .pb-hero-title {
        font-size: 3.5rem;
        letter-spacing: 5px;
        margin-bottom: 30px;
    }
    
    .pb-hero-illustration {
        width: 320px;
        height: 240px;
        margin-bottom: 35px;
    }
    
    .pb-location-btn {
        font-size: 0.85rem;
        padding: 13px 32px;
        letter-spacing: 1.5px;
    }
    
    .pb-hero-locations {
        gap: 15px;
    }
    
    .pb-footer-container {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .pb-section-container,
    .pb-location-container {
        grid-template-columns: 1fr;
    }
    
    .pb-location-section.reverse .pb-section-container {
        direction: ltr;
    }
    
    .featured-products-section {
        padding: 70px 30px 60px;
    }
    
    .featured-products-section h2 {
        font-size: 2.5rem;
        letter-spacing: 3px;
        margin-bottom: 15px;
    }
    
    .featured-products-section .section-subtitle {
        font-size: 1.05rem;
        margin-bottom: 50px;
        padding: 0 15px;
    }
    
    .featured-products-section .products,
    .woocommerce ul.products,
    .order-products-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 25px;
        padding: 0 10px;
        margin-bottom: 50px;
    }
    
    .featured-products-section .product img {
        height: 220px;
    }
    
    .browse-more-btn {
        padding: 14px 35px;
        font-size: 0.95rem;
        letter-spacing: 1.5px;
    }
    
    /* Checkout Responsive */
    .woocommerce-checkout .col2-set,
    .woocommerce-checkout #order_review_heading,
    .woocommerce-checkout #order_review {
        width: 100% !important;
        float: none !important;
        padding-right: 0 !important;
        margin-left: 0 !important;
    }
    
    .woocommerce-checkout #order_review {
        margin-top: 40px;
    }
}

@media (max-width: 768px) {
    /* Hero Section - Mobile */
    .pb-hero {
        padding: 80px 20px 50px;
        margin-top: 72px;
    }
    
    .pb-hero-title {
        font-size: 2.8rem;
        letter-spacing: 3px;
        margin-bottom: 30px;
        line-height: 1.2;
    }
    
    .pb-hero-illustration {
        width: 280px;
        height: 220px;
        margin-bottom: 30px;
    }
    
    .pb-location-btn {
        font-size: 0.8rem;
        padding: 12px 28px;
        letter-spacing: 1.2px;
    }
    
    .pb-hero-locations {
        gap: 12px;
        flex-direction: column;
        width: 100%;
        max-width: 300px;
    }
    
    .pb-location-btn {
        width: 100%;
        text-align: center;
    }
    
    .pb-scroll-indicator {
        bottom: 20px;
        font-size: 1.5rem;
    }
    
    .featured-products-section,
    .pb-location-section,
    .order-online-page {
        padding: 50px 20px;
    }
    
    .featured-products-section h2,
    .pb-location-content h2,
    .order-online-page h1 {
        font-size: 2rem;
        letter-spacing: 2px;
    }
    
    .featured-products-section .section-subtitle {
        font-size: 1rem;
        margin-bottom: 40px;
    }
    
    .featured-products-section .products,
    .woocommerce ul.products,
    .order-products-grid {
        grid-template-columns: 1fr !important;
        gap: 20px !important;
        padding: 0;
        margin-bottom: 40px;
    }
    
    .featured-products-section .product img {
        height: 250px;
    }
    
    .featured-products-section .product .woocommerce-loop-product__title,
    .featured-products-section .product a {
        font-size: 1.2rem;
        margin: 20px 0 10px;
        padding: 0 20px;
    }
    
    .browse-more-btn {
        padding: 13px 30px;
        font-size: 0.9rem;
        letter-spacing: 1.2px;
    }
    
    .pb-footer-container {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    /* Checkout Mobile */
    .woocommerce-checkout {
        padding-top: 120px !important;
    }
    
    .woocommerce-checkout .woocommerce,
    .woocommerce-checkout .site-content {
        padding: 0 20px;
    }
    
    .woocommerce-billing-fields h3,
    #order_review_heading {
        font-size: 1.5rem !important;
    }
    
    .woocommerce form .form-row-first,
    .woocommerce form .form-row-last {
        width: 100% !important;
        float: none !important;
    }
    
    .woocommerce-checkout-review-order,
    .woocommerce-checkout-payment {
        padding: 20px;
    }
    
    #place_order {
        padding: 14px 30px !important;
        font-size: 0.95rem !important;
    }
}
/* ============================================
   CUSTOM PRODUCT MANAGEMENT SYSTEM
   ============================================ */

/* Products Page Hero */
.pb-products-page {
    padding-top: 92px;
    background: #f8f9fa;
    min-height: 100vh;
}

.pb-products-hero {
    background: linear-gradient(135deg, #FF5A5F 0%, #ff7b7f 100%);
    color: #ffffff;
    padding: 60px 40px;
    text-align: center;
}

.pb-products-hero h1 {
    font-family: 'Marcellus', serif;
    font-size: 3.5rem;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 4px;
}

.pb-products-hero p {
    font-size: 1.2rem;
    color: #cccccc;
}

/* Products Container */
.pb-products-container {
    max-width: 1500px;
    margin: 0 auto;
    padding: 60px 40px;
    display: grid;
    grid-template-columns: 250px 1fr;
    gap: 40px;
}

/* Sidebar Filters */
.pb-products-filters {
    background: #ffffff;
    padding: 25px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    height: fit-content;
    position: sticky;
    top: 120px;
}

.pb-products-filters h3 {
    font-family: 'Marcellus', serif;
    font-size: 1.4rem;
    color: #0d0d0d;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 2px solid #f0f0f0;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.pb-category-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.pb-category-list li {
    margin-bottom: 5px;
}

.pb-category-list a {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 15px;
    color: #666;
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.3s ease;
    font-weight: 500;
    font-size: 0.95rem;
}

.pb-category-list a:hover {
    background: #f8f9fa;
    color: #FF5A5F;
    transform: translateX(5px);
}

.pb-category-list a.active {
    background: linear-gradient(135deg, #FF5A5F 0%, #ff7b7f 100%);
    color: #ffffff;
    font-weight: 600;
}

.pb-cat-icon {
    font-size: 1.3rem;
    min-width: 24px;
    text-align: center;
}

/* Product Filters */
.pb-product-filters {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 50px;
    flex-wrap: wrap;
}

.pb-filter-btn {
    background: #ffffff;
    color: #0d0d0d;
    padding: 12px 25px;
    border: 2px solid #e0e0e0;
    border-radius: 25px;
    font-weight: 600;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.9rem;
    text-transform: uppercase;
}

.pb-filter-btn:hover,
.pb-filter-btn.active {
    background: #FF5A5F;
    color: #ffffff;
    border-color: #FF5A5F;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 90, 95, 0.3);
}

/* Products Grid */
.pb-products-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.pb-product-card {
    background: #ffffff;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    display: flex;
    flex-direction: column;
}

.pb-product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

.pb-product-card.featured {
    border: 3px solid #FF5A5F;
}

.pb-product-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background: linear-gradient(135deg, #FF5A5F 0%, #FF4747 100%);
    color: #ffffff;
    padding: 6px 15px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    z-index: 2;
    box-shadow: 0 3px 10px rgba(255, 90, 95, 0.4);
}

.pb-product-image {
    width: 100%;
    height: 280px;
    overflow: hidden;
    position: relative;
}

.pb-product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.pb-product-card:hover .pb-product-image img {
    transform: scale(1.1);
}

.pb-product-content {
    padding: 25px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.pb-product-category {
    color: #999;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-weight: 600;
    margin-bottom: 8px;
}

.pb-product-title {
    font-family: 'Marcellus', serif;
    font-size: 1.4rem;
    color: #0d0d0d;
    margin-bottom: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    line-height: 1.3;
}

.pb-product-excerpt {
    color: #666;
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 20px;
    flex: 1;
}

.pb-product-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 15px;
    padding-top: 15px;
    border-top: 1px solid #f0f0f0;
}

.pb-product-price {
    font-size: 1.8rem;
    color: #FF5A5F;
    font-weight: 700;
    font-family: 'Marcellus', serif;
}

.pb-add-to-cart,
.pb-out-of-stock {
    background: linear-gradient(135deg, #FF5A5F 0%, #FF4747 100%);
    color: #ffffff;
    padding: 10px 20px;
    border: none;
    border-radius: 8px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.85rem;
    white-space: nowrap;
}

.pb-add-to-cart:hover {
    background: linear-gradient(135deg, #a01828 0%, #b02525 100%);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(196, 30, 58, 0.4);
}

.pb-out-of-stock {
    background: #cccccc;
    cursor: not-allowed;
}

.cart-icon {
    font-size: 1rem;
    margin-right: 5px;
}

.pb-product-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(13, 13, 13, 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 1;
    text-decoration: none;
}

.pb-product-card:hover .pb-product-overlay {
    opacity: 1;
}

.pb-product-overlay span {
    color: #ffffff;
    font-family: 'Marcellus', serif;
    font-size: 1.3rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 700;
    border: 2px solid #ffffff;
    padding: 12px 30px;
    border-radius: 5px;
}

/* Cart Notification */
.pb-cart-notification {
    position: fixed;
    bottom: -100px;
    left: 50%;
    transform: translateX(-50%);
    background: #0d0d0d;
    color: #ffffff;
    padding: 18px 35px;
    border-radius: 50px;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.3);
    z-index: 99999;
    display: flex;
    align-items: center;
    gap: 12px;
    transition: bottom 0.4s ease;
}

.pb-cart-notification.show {
    bottom: 40px;
}

.notification-icon {
    width: 30px;
    height: 30px;
    background: #4CAF50;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-weight: 700;
    font-size: 1.2rem;
}

.notification-text {
    font-weight: 600;
    letter-spacing: 0.5px;
}

/* No Products Message */
.pb-no-products {
    text-align: center;
    padding: 80px 20px;
    grid-column: 1 / -1;
}

.pb-no-products p {
    font-size: 1.2rem;
    color: #666;
}

/* ============================================
   SINGLE PRODUCT PAGE
   ============================================ */

.pb-single-product {
    padding-top: 92px;
    background: #f8f9fa;
    min-height: 100vh;
    padding-bottom: 60px;
}

.pb-product-container {
    max-width: 1200px;
    margin: 60px auto;
    padding: 0 40px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    background: #ffffff;
    border-radius: 15px;
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.1);
    padding: 50px;
}

.pb-product-gallery img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
}

.pb-product-details {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.pb-product-meta {
    display: flex;
    gap: 15px;
    align-items: center;
}

.pb-product-category-badge {
    background: #f0f0f0;
    color: #666;
    padding: 6px 15px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.pb-product-sku {
    color: #999;
    font-size: 0.85rem;
}

.pb-product-name {
    font-family: 'Marcellus', serif;
    font-size: 2.5rem;
    color: #0d0d0d;
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 700;
    line-height: 1.2;
}

.pb-product-price-section {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 20px 0;
    border-top: 1px solid #f0f0f0;
    border-bottom: 1px solid #f0f0f0;
}

.pb-product-price-large {
    font-family: 'Marcellus', serif;
    font-size: 2.5rem;
    color: #FF5A5F;
    font-weight: 700;
}

.pb-product-stock {
    padding: 6px 15px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
}

.pb-product-stock.in-stock {
    background: #d1e7dd;
    color: #0f5132;
}

.pb-product-stock.out-of-stock {
    background: #f8d7da;
    color: #842029;
}

.pb-product-description {
    color: #666;
    font-size: 1rem;
    line-height: 1.8;
}

.pb-product-add-section {
    display: flex;
    gap: 20px;
    align-items: center;
    margin-top: 10px;
}

.pb-quantity-selector {
    display: flex;
    align-items: center;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    overflow: hidden;
}

.pb-qty-btn {
    width: 45px;
    height: 45px;
    background: #f8f9fa;
    border: none;
    font-size: 1.3rem;
    font-weight: 700;
    color: #0d0d0d;
    cursor: pointer;
    transition: all 0.3s ease;
}

.pb-qty-btn:hover {
    background: #FF5A5F;
    color: #ffffff;
}

#productQuantity {
    width: 60px;
    height: 45px;
    text-align: center;
    border: none;
    border-left: 2px solid #e0e0e0;
    border-right: 2px solid #e0e0e0;
    font-size: 1.1rem;
    font-weight: 700;
    color: #0d0d0d;
}

.pb-add-to-cart-large,
.pb-out-of-stock-large {
    flex: 1;
    background: linear-gradient(135deg, #FF5A5F 0%, #FF4747 100%);
    color: #ffffff;
    padding: 14px 30px;
    border: none;
    border-radius: 8px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1rem;
}

.pb-add-to-cart-large:hover {
    background: linear-gradient(135deg, #a01828 0%, #b02525 100%);
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(196, 30, 58, 0.4);
}

.pb-out-of-stock-large {
    background: #cccccc;
    cursor: not-allowed;
}

.pb-product-info {
    background: #f8f9fa;
    padding: 20px;
    border-radius: 8px;
    margin-top: 10px;
}

.pb-info-item {
    padding: 8px 0;
    color: #666;
    font-size: 0.95rem;
}

.pb-info-item strong {
    color: #0d0d0d;
    margin-right: 8px;
}

/* Related Products */
.pb-related-products {
    max-width: 1500px;
    margin: 0 auto;
    padding: 60px 40px 0;
}

.pb-related-products h2 {
    font-family: 'Marcellus', serif;
    font-size: 2.5rem;
    text-align: center;
    color: #0d0d0d;
    margin-bottom: 40px;
    text-transform: uppercase;
    letter-spacing: 3px;
}

.pb-related-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.pb-related-card {
    background: #ffffff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.pb-related-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.pb-related-card a {
    text-decoration: none;
    display: block;
}

.pb-related-image {
    width: 100%;
    height: 200px;
    overflow: hidden;
}

.pb-related-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.pb-related-card:hover .pb-related-image img {
    transform: scale(1.1);
}

.pb-related-card h4 {
    font-family: 'Marcellus', serif;
    font-size: 1.1rem;
    color: #0d0d0d;
    padding: 15px 20px 5px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.pb-related-price {
    font-size: 1.3rem;
    color: #FF5A5F;
    font-weight: 700;
    padding: 0 20px 20px;
    display: block;
}

/* ============================================
   SHOPPING CART PAGE
   ============================================ */

.pb-cart-page {
    padding-top: 92px;
    background: #f8f9fa;
    min-height: 100vh;
    padding-bottom: 60px;
}

.pb-cart-hero {
    background: linear-gradient(135deg, #0d0d0d 0%, #2d2d2d 100%);
    color: #ffffff;
    padding: 50px 40px;
    text-align: center;
}

.pb-cart-hero h1 {
    font-family: 'Marcellus', serif;
    font-size: 3rem;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 3px;
}

.pb-cart-hero p {
    font-size: 1.1rem;
    color: #cccccc;
}

.pb-cart-container {
    max-width: 1500px;
    margin: 60px auto;
    padding: 0 40px;
}

.pb-cart-content {
    display: grid;
    grid-template-columns: 1fr 400px;
    gap: 40px;
}

.pb-cart-items {
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    overflow: hidden;
}

.pb-cart-table {
    width: 100%;
    border-collapse: collapse;
}

.pb-cart-table thead {
    background: #f8f9fa;
}

.pb-cart-table th {
    padding: 18px 20px;
    text-align: left;
    color: #0d0d0d;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 1px;
    border-bottom: 2px solid #e0e0e0;
}

.pb-cart-table td {
    padding: 25px 20px;
    border-bottom: 1px solid #f0f0f0;
    vertical-align: middle;
}

.pb-cart-product-info {
    display: flex;
    gap: 20px;
    align-items: center;
}

.pb-cart-product-info img {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 8px;
}

.pb-cart-product-info h4 {
    font-family: 'Marcellus', serif;
    font-size: 1.1rem;
    color: #0d0d0d;
    margin-bottom: 5px;
    text-transform: uppercase;
}

.pb-view-product {
    color: #FF5A5F;
    font-size: 0.85rem;
    text-decoration: none;
}

.pb-view-product:hover {
    text-decoration: underline;
}

.pb-cart-price {
    color: #0d0d0d;
    font-weight: 700;
    font-size: 1.1rem;
}

.pb-qty-control {
    display: flex;
    align-items: center;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    overflow: hidden;
    width: fit-content;
}

.pb-qty-minus,
.pb-qty-plus {
    width: 35px;
    height: 35px;
    background: #f8f9fa;
    border: none;
    font-size: 1.1rem;
    font-weight: 700;
    color: #0d0d0d;
    cursor: pointer;
    transition: all 0.3s ease;
}

.pb-qty-minus:hover,
.pb-qty-plus:hover {
    background: #FF5A5F;
    color: #ffffff;
}

.pb-qty-input {
    width: 50px;
    height: 35px;
    text-align: center;
    border: none;
    border-left: 2px solid #e0e0e0;
    border-right: 2px solid #e0e0e0;
    font-size: 1rem;
    font-weight: 700;
    color: #0d0d0d;
}

.pb-cart-subtotal {
    color: #FF5A5F;
    font-weight: 700;
    font-size: 1.2rem;
}

.pb-remove-item {
    width: 35px;
    height: 35px;
    background: transparent;
    border: 2px solid #e0e0e0;
    border-radius: 50%;
    color: #999;
    font-size: 1.2rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.pb-remove-item:hover {
    background: #FF5A5F;
    border-color: #FF5A5F;
    color: #ffffff;
    transform: rotate(90deg);
}

.pb-cart-summary {
    background: #ffffff;
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    height: fit-content;
    position: sticky;
    top: 120px;
}

.pb-cart-summary h3 {
    font-family: 'Marcellus', serif;
    font-size: 1.8rem;
    color: #0d0d0d;
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 2px solid #f0f0f0;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.pb-summary-line {
    display: flex;
    justify-content: space-between;
    padding: 12px 0;
    color: #666;
    font-size: 1rem;
}

.pb-summary-total {
    display: flex;
    justify-content: space-between;
    padding: 20px 0;
    margin-top: 15px;
    border-top: 2px solid #FF5A5F;
    font-size: 1.3rem;
    font-weight: 700;
    color: #0d0d0d;
}

.pb-summary-total span:last-child {
    color: #FF5A5F;
}

.pb-checkout-btn {
    display: block;
    width: 100%;
    background: linear-gradient(135deg, #FF5A5F 0%, #FF4747 100%);
    color: #ffffff;
    padding: 16px;
    border: none;
    border-radius: 8px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-align: center;
    text-decoration: none;
    font-size: 1rem;
    margin-top: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(196, 30, 58, 0.3);
}

.pb-checkout-btn:hover {
    background: linear-gradient(135deg, #a01828 0%, #b02525 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(196, 30, 58, 0.4);
}

.pb-continue-shopping {
    display: block;
    text-align: center;
    color: #666;
    text-decoration: none;
    margin-top: 20px;
    font-size: 0.95rem;
    transition: color 0.3s ease;
}

.pb-continue-shopping:hover {
    color: #FF5A5F;
}

.pb-cart-empty {
    text-align: center;
    padding: 100px 40px;
}

.pb-empty-icon {
    font-size: 5rem;
    margin-bottom: 25px;
    opacity: 0.3;
}

.pb-cart-empty h2 {
    font-family: 'Marcellus', serif;
    font-size: 2.5rem;
    color: #0d0d0d;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.pb-cart-empty p {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 30px;
}

.pb-shop-btn {
    display: inline-block;
    background: linear-gradient(135deg, #FF5A5F 0%, #FF4747 100%);
    color: #ffffff;
    padding: 14px 35px;
    border-radius: 8px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.pb-shop-btn:hover {
    background: linear-gradient(135deg, #a01828 0%, #b02525 100%);
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(196, 30, 58, 0.4);
}

/* ============================================
   CHECKOUT PAGE
   ============================================ */

.pb-checkout-page {
    padding-top: 92px;
    background: #f8f9fa;
    min-height: 100vh;
    padding-bottom: 60px;
}

.pb-checkout-hero {
    background: linear-gradient(135deg, #0d0d0d 0%, #2d2d2d 100%);
    color: #ffffff;
    padding: 50px 40px;
    text-align: center;
}

.pb-checkout-hero h1 {
    font-family: 'Marcellus', serif;
    font-size: 3rem;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 3px;
}

.pb-checkout-hero p {
    font-size: 1.1rem;
    color: #cccccc;
}

.pb-checkout-container {
    max-width: 1500px;
    margin: 60px auto;
    padding: 0 40px;
}

.pb-checkout-content {
    display: grid;
    grid-template-columns: 1fr 400px;
    gap: 40px;
}

.pb-checkout-form {
    background: #ffffff;
    border-radius: 12px;
    padding: 40px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.pb-checkout-form h2 {
    font-family: 'Marcellus', serif;
    font-size: 2rem;
    color: #0d0d0d;
    margin-bottom: 30px;
    padding-bottom: 15px;
    border-bottom: 2px solid #f0f0f0;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.pb-form-group {
    margin-bottom: 25px;
}

.pb-form-group label {
    display: block;
    color: #0d0d0d;
    font-weight: 600;
    margin-bottom: 8px;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.pb-form-group input,
.pb-form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid #d0d0d0;
    border-radius: 6px;
    font-size: 0.95rem;
    font-family: 'Arimo', sans-serif;
    transition: all 0.3s ease;
}

.pb-form-group input:focus,
.pb-form-group textarea:focus {
    border-color: #FF5A5F;
    outline: none;
    box-shadow: 0 0 0 3px rgba(255, 90, 95, 0.1);
}

.pb-payment-methods {
    margin-top: 30px;
    padding-top: 30px;
    border-top: 2px solid #f0f0f0;
}

.pb-payment-methods h3 {
    font-family: 'Marcellus', serif;
    font-size: 1.5rem;
    color: #0d0d0d;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

.pb-payment-option {
    background: #f8f9fa;
    padding: 18px;
    border-radius: 8px;
    margin-bottom: 12px;
    border: 2px solid #e0e0e0;
    transition: all 0.3s ease;
}

.pb-payment-option:hover {
    border-color: #FF5A5F;
    background: #ffffff;
}

.pb-payment-option input[type="radio"] {
    margin-right: 10px;
}

.pb-payment-option label {
    display: flex;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}

.pb-payment-option label strong {
    font-size: 1rem;
    color: #0d0d0d;
}

.pb-payment-option label span {
    font-size: 0.85rem;
    color: #666;
}

.pb-place-order-btn {
    width: 100%;
    background: linear-gradient(135deg, #FF5A5F 0%, #FF4747 100%);
    color: #ffffff;
    padding: 16px;
    border: none;
    border-radius: 8px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 1rem;
    margin-top: 30px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(196, 30, 58, 0.3);
}

.pb-place-order-btn:hover {
    background: linear-gradient(135deg, #a01828 0%, #b02525 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(196, 30, 58, 0.4);
}

.pb-checkout-summary {
    background: #ffffff;
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    height: fit-content;
    position: sticky;
    top: 120px;
}

.pb-checkout-summary h2 {
    font-family: 'Marcellus', serif;
    font-size: 1.8rem;
    color: #0d0d0d;
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 2px solid #f0f0f0;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.pb-order-items {
    max-height: 400px;
    overflow-y: auto;
    margin-bottom: 25px;
}

.pb-order-item {
    display: flex;
    justify-content: space-between;
    padding: 15px 0;
    border-bottom: 1px solid #f0f0f0;
}

.pb-order-item-info {
    display: flex;
    gap: 15px;
    align-items: center;
    flex: 1;
}

.pb-order-item-info img {
    width: 60px;
    height: 60px;
    object-fit: cover;
    border-radius: 6px;
}

.pb-order-item-info h4 {
    font-family: 'Marcellus', serif;
    font-size: 0.95rem;
    color: #0d0d0d;
    margin-bottom: 3px;
    text-transform: uppercase;
}

.pb-order-item-info span {
    color: #666;
    font-size: 0.85rem;
}

.pb-order-item-price {
    color: #FF5A5F;
    font-weight: 700;
    font-size: 1.1rem;
}

.pb-order-totals {
    padding-top: 20px;
}

.pb-total-line {
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
    color: #666;
    font-size: 1rem;
}

.pb-total-grand {
    display: flex;
    justify-content: space-between;
    padding: 20px 0;
    margin-top: 15px;
    border-top: 2px solid #FF5A5F;
    font-size: 1.4rem;
    font-weight: 700;
    color: #0d0d0d;
}

.pb-total-grand span:last-child {
    color: #FF5A5F;
}

.pb-checkout-empty {
    text-align: center;
    padding: 100px 40px;
}

.pb-checkout-empty h2 {
    font-family: 'Marcellus', serif;
    font-size: 2.5rem;
    color: #0d0d0d;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.pb-checkout-empty p {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 30px;
}

/* Order Success Modal */
.pb-order-modal {
    display: none;
    position: fixed;
    z-index: 100000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
}

.pb-order-modal.show {
    display: flex;
    align-items: center;
    justify-content: center;
}

.pb-modal-content {
    background: #ffffff;
    padding: 50px;
    border-radius: 15px;
    text-align: center;
    max-width: 500px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

.pb-modal-icon {
    width: 80px;
    height: 80px;
    background: #4CAF50;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 3rem;
    margin: 0 auto 25px;
}

.pb-modal-content h2 {
    font-family: 'Marcellus', serif;
    font-size: 2rem;
    color: #0d0d0d;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.pb-modal-content p {
    color: #666;
    font-size: 1rem;
    margin-bottom: 10px;
    line-height: 1.6;
}

.pb-modal-content #orderNumber {
    color: #FF5A5F;
    font-weight: 700;
}

.pb-modal-btn {
    background: linear-gradient(135deg, #FF5A5F 0%, #FF4747 100%);
    color: #ffffff;
    padding: 14px 35px;
    border: none;
    border-radius: 8px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    cursor: pointer;
    margin-top: 25px;
    transition: all 0.3s ease;
}

.pb-modal-btn:hover {
    background: linear-gradient(135deg, #a01828 0%, #b02525 100%);
    transform: translateY(-2px);
}

/* Responsive Styles for Product System */
@media (max-width: 1200px) {
    .pb-products-grid,
    .pb-related-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 992px) {
    .pb-products-grid,
    .pb-related-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .pb-product-container,
    .pb-cart-content,
    .pb-checkout-content {
        grid-template-columns: 1fr;
    }
    
    .pb-cart-summary,
    .pb-checkout-summary {
        position: static;
    }
}

@media (max-width: 768px) {
    .pb-products-grid,
    .pb-related-grid {
        grid-template-columns: 1fr;
    }
    
    .pb-products-hero h1,
    .pb-cart-hero h1,
    .pb-checkout-hero h1 {
        font-size: 2rem;
    }
    
    .pb-cart-table th:nth-child(3),
    .pb-cart-table td:nth-child(3) {
        display: none;
    }
}

/* ============================================
   PAGE HERO SECTIONS (Offers, Careers, Menu)
   ============================================ */

.page-hero {
    position: relative;
    background: linear-gradient(135deg, #0d0d0d 0%, #2d2d2d 100%);
    color: #ffffff;
    padding: 120px 40px 60px;
    text-align: center;
    margin-top: 0;
    overflow: hidden;
}

.page-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 320"><path fill="%23FF5A5F" fill-opacity="0.1" d="M0,96L48,112C96,128,192,160,288,160C384,160,480,128,576,112C672,96,768,96,864,112C960,128,1056,160,1152,165.3C1248,171,1344,149,1392,138.7L1440,128L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z"></path></svg>') no-repeat bottom;
    background-size: cover;
    opacity: 0.3;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(13, 13, 13, 0.8) 0%, rgba(255, 90, 95, 0.2) 100%);
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
}

.hero-title {
    font-family: 'Marcellus', serif;
    font-size: 3.5rem;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 4px;
    font-weight: 700;
}

.hero-subtitle {
    font-size: 1.2rem;
    color: #cccccc;
}

/* ============================================
   OFFERS PAGE STYLING
   ============================================ */

.offers-section {
    padding: 60px 40px 80px;
    background: #f8f9fa;
}

.offers-container {
    max-width: 1500px;
    margin: 0 auto;
}

.offers-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 60px;
}

.offer-card {
    background: #ffffff;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.4s ease;
    position: relative;
    padding: 30px;
}

.offer-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

.offer-card.featured {
    border: 3px solid #FF5A5F;
    background: linear-gradient(135deg, #fff 0%, #fff5f5 100%);
}

.offer-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: #FF5A5F;
    color: #ffffff;
    padding: 8px 20px;
    border-radius: 25px;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    box-shadow: 0 3px 10px rgba(255, 90, 95, 0.4);
}

.offer-badge.hot {
    background: linear-gradient(135deg, #FF5A5F 0%, #FF4747 100%);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

.offer-content {
    text-align: center;
}

.offer-title {
    font-family: 'Marcellus', serif;
    font-size: 1.8rem;
    color: #0d0d0d;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.offer-description {
    color: #666;
    font-size: 1rem;
    margin-bottom: 20px;
    line-height: 1.6;
}

.offer-price {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
}

.old-price {
    font-size: 1.2rem;
    color: #999;
    text-decoration: line-through;
}

.new-price {
    font-family: 'Marcellus', serif;
    font-size: 2.5rem;
    color: #FF5A5F;
    font-weight: 700;
}

.offer-save {
    color: #4CAF50;
    font-weight: 700;
    font-size: 1.1rem;
    margin-bottom: 10px;
}

.offer-note {
    font-size: 0.85rem;
    color: #999;
    font-style: italic;
    margin-bottom: 20px;
}

.offer-button {
    display: inline-block;
    background: linear-gradient(135deg, #FF5A5F 0%, #FF4747 100%);
    color: #ffffff;
    padding: 14px 35px;
    border-radius: 8px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(196, 30, 58, 0.3);
}

.offer-button:hover {
    background: linear-gradient(135deg, #a01828 0%, #b02525 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(196, 30, 58, 0.4);
}

.offers-newsletter {
    background: linear-gradient(135deg, #0d0d0d 0%, #2d2d2d 100%);
    color: #ffffff;
    padding: 60px;
    border-radius: 15px;
    text-align: center;
}

.offers-newsletter h2 {
    font-family: 'Marcellus', serif;
    font-size: 2.5rem;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 3px;
}

.offers-newsletter p {
    font-size: 1.1rem;
    color: #cccccc;
    margin-bottom: 30px;
}

.newsletter-form {
    display: flex;
    justify-content: center;
    gap: 15px;
    max-width: 600px;
    margin: 0 auto;
}

.newsletter-form input {
    flex: 1;
    padding: 15px 20px;
    border: 2px solid #444;
    border-radius: 8px;
    font-size: 1rem;
    background: rgba(255, 255, 255, 0.1);
    color: #ffffff;
}

.newsletter-form input::placeholder {
    color: #999;
}

.newsletter-form button {
    background: linear-gradient(135deg, #FF5A5F 0%, #FF4747 100%);
    color: #ffffff;
    padding: 15px 40px;
    border: none;
    border-radius: 8px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.newsletter-form button:hover {
    background: linear-gradient(135deg, #a01828 0%, #b02525 100%);
    transform: translateY(-2px);
}

/* ============================================
   CAREERS PAGE STYLING
   ============================================ */

.careers-section {
    padding: 60px 40px 80px;
    background: #f8f9fa;
}

.careers-container {
    max-width: 1500px;
    margin: 0 auto;
}

.careers-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 60px;
}

.careers-intro h2 {
    font-family: 'Marcellus', serif;
    font-size: 2.5rem;
    color: #0d0d0d;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 3px;
}

.careers-intro p {
    font-size: 1.1rem;
    color: #666;
    line-height: 1.8;
}

.section-title {
    font-family: 'Marcellus', serif;
    font-size: 2.5rem;
    text-align: center;
    color: #0d0d0d;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 3px;
}

.category-underline {
    width: 100px;
    height: 4px;
    background: #FF5A5F;
    margin: 0 auto 50px;
}

.benefits-section {
    margin-bottom: 60px;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-bottom: 60px;
}

.benefit-card {
    background: #ffffff;
    padding: 40px 30px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.benefit-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.benefit-icon {
    font-size: 3rem;
    display: block;
    margin-bottom: 20px;
}

.benefit-card h4 {
    font-family: 'Marcellus', serif;
    font-size: 1.3rem;
    color: #0d0d0d;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.benefit-card p {
    color: #666;
    font-size: 0.95rem;
}

.positions-section {
    margin-bottom: 60px;
}

.positions-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.position-card {
    background: #ffffff;
    padding: 35px;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border-left: 4px solid #FF5A5F;
}

.position-card:hover {
    transform: translateX(5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.position-card h3 {
    font-family: 'Marcellus', serif;
    font-size: 1.8rem;
    color: #0d0d0d;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

.position-type {
    display: inline-block;
    background: #f0f0f0;
    color: #666;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.85rem;
    margin-bottom: 15px;
    font-weight: 600;
}

.position-card p {
    color: #666;
    line-height: 1.8;
    margin-bottom: 10px;
}

.position-card ul {
    list-style: none;
    padding: 0;
    margin: 15px 0;
}

.position-card li {
    padding-left: 25px;
    position: relative;
    color: #666;
    margin-bottom: 8px;
}

.position-card li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #4CAF50;
    font-weight: 700;
}

.apply-button {
    display: inline-block;
    background: linear-gradient(135deg, #FF5A5F 0%, #FF4747 100%);
    color: #ffffff;
    padding: 12px 30px;
    border-radius: 8px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    text-decoration: none;
    transition: all 0.3s ease;
    margin-top: 15px;
}

.apply-button:hover {
    background: linear-gradient(135deg, #a01828 0%, #b02525 100%);
    transform: translateY(-2px);
}

.application-section {
    background: #ffffff;
    padding: 80px 60px;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    margin-top: 60px;
}

.application-section h2 {
    font-family: 'Marcellus', serif;
    font-size: 2.8rem;
    color: #0d0d0d;
    margin-bottom: 15px;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 4px;
    font-weight: 400;
}

.application-section > p {
    text-align: center;
    color: #666;
    font-size: 1.1rem;
    margin-bottom: 50px;
    letter-spacing: 0.5px;
}

.application-form {
    max-width: 900px;
    margin: 0 auto;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px;
    margin-bottom: 25px;
}

.application-form input[type="text"],
.application-form input[type="email"],
.application-form input[type="tel"],
.application-form select,
.application-form textarea {
    width: 100%;
    padding: 16px 20px;
    border: 2px solid #e0e0e0;
    border-radius: 10px;
    font-size: 1rem;
    font-family: 'Arimo', sans-serif;
    transition: all 0.3s ease;
    background: #f9f9f9;
    color: #0d0d0d;
}

.application-form input[type="text"]:focus,
.application-form input[type="email"]:focus,
.application-form input[type="tel"]:focus,
.application-form select:focus,
.application-form textarea:focus {
    border-color: #FF5A5F;
    outline: none;
    box-shadow: 0 0 0 4px rgba(255, 90, 95, 0.1);
    background: #ffffff;
}

.application-form input::placeholder,
.application-form textarea::placeholder {
    color: #999;
    font-style: italic;
}

.application-form select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23333' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 15px center;
    padding-right: 45px;
}

.application-form select option {
    padding: 10px;
}

.application-form textarea {
    min-height: 140px;
    resize: vertical;
    line-height: 1.6;
    grid-column: 1 / -1;
    margin-bottom: 10px;
}

.file-upload {
    grid-column: 1 / -1;
    margin-bottom: 15px;
    padding: 25px;
    background: #f5f5f5;
    border: 2px dashed #d0d0d0;
    border-radius: 12px;
    text-align: center;
    transition: all 0.3s ease;
}

.file-upload:hover {
    border-color: #FF5A5F;
    background: #fff5f5;
}

.file-upload label {
    display: block;
    font-weight: 600;
    color: #0d0d0d;
    margin-bottom: 12px;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.file-upload input[type="file"] {
    width: 100%;
    padding: 12px;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    background: white;
    cursor: pointer;
    font-size: 0.95rem;
}

.file-upload input[type="file"]::file-selector-button {
    padding: 10px 20px;
    background: #0d0d0d;
    color: white;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-weight: 600;
    margin-right: 15px;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-size: 0.85rem;
}

.file-upload input[type="file"]::file-selector-button:hover {
    background: #FF5A5F;
    transform: translateY(-1px);
}

.submit-button {
    background: linear-gradient(135deg, #FF5A5F 0%, #FF4747 100%);
    color: #ffffff;
    padding: 18px 60px;
    border: none;
    border-radius: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2.5px;
    font-size: 1.05rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: block;
    margin: 35px auto 0;
    box-shadow: 0 6px 20px rgba(255, 90, 95, 0.3);
    font-family: 'Arimo', sans-serif;
}

.submit-button:hover {
    background: linear-gradient(135deg, #a01828 0%, #b02525 100%);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 90, 95, 0.4);
}

.submit-button:active {
    transform: translateY(-1px);
}

/* ============================================
   RESPONSIVE - OFFERS & CAREERS PAGES
   ============================================ */

@media (max-width: 1200px) {
    .offers-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
        letter-spacing: 3px;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .offers-grid,
    .benefits-grid,
    .positions-grid {
        grid-template-columns: 1fr;
    }
    
    .newsletter-form {
        flex-direction: column;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .application-form input[type="text"],
    .application-form input[type="email"],
    .application-form input[type="tel"],
    .application-form select,
    .application-form textarea {
        font-size: 16px;
    }
    
    .offers-section,
    .careers-section {
        padding: 50px 20px;
    }
    
    .offers-newsletter {
        padding: 40px 25px;
    }
    
    .application-section {
        padding: 50px 30px;
        border-radius: 15px;
    }
    
    .application-section h2 {
        font-size: 2.2rem;
        letter-spacing: 2px;
    }
    
    .submit-button {
        width: 100%;
        padding: 16px 40px;
        font-size: 1rem;
        letter-spacing: 2px;
    }
    
    .file-upload {
        padding: 20px 15px;
    }
    
    .file-upload input[type="file"]::file-selector-button {
        width: 100%;
        margin-right: 0;
        margin-bottom: 10px;
    }
}

/* ============================================
   CATERING PAGE STYLING
   ============================================ */

.catering-section {
    padding: 120px 40px 80px;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    min-height: 100vh;
}

.catering-container {
    max-width: 1500px;
    margin: 0 auto;
}

.catering-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 80px;
    padding: 40px;
    background: #ffffff;
    border-radius: 15px;
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.08);
}

.catering-intro h2 {
    font-family: 'Marcellus', serif;
    font-size: 3rem;
    color: #0d0d0d;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 4px;
}

.catering-intro p {
    font-size: 1.15rem;
    color: #666;
    line-height: 1.8;
}

.catering-packages {
    margin-bottom: 80px;
}

.packages-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 35px;
    margin-top: 50px;
}

.package-card {
    background: #ffffff;
    border-radius: 15px;
    padding: 40px 30px;
    text-align: center;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.1);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.package-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, #FF5A5F 0%, #FF4747 100%);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.package-card:hover::before {
    transform: scaleX(1);
}

.package-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

.package-card.featured {
    border: 3px solid #FF5A5F;
    background: linear-gradient(135deg, #ffffff 0%, #fff5f5 100%);
}

.package-card .badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: linear-gradient(135deg, #FF5A5F 0%, #FF4747 100%);
    color: #ffffff;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    box-shadow: 0 3px 10px rgba(255, 90, 95, 0.4);
}

.package-icon {
    font-size: 4rem;
    margin-bottom: 20px;
    display: block;
}

.package-name {
    font-family: 'Marcellus', serif;
    font-size: 1.8rem;
    color: #0d0d0d;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.package-price {
    font-size: 2rem;
    color: #FF5A5F;
    font-weight: 700;
    margin-bottom: 25px;
    font-family: 'Marcellus', serif;
}

.package-features {
    list-style: none;
    padding: 0;
    margin: 25px 0;
    text-align: left;
}

.package-features li {
    padding: 12px 0 12px 30px;
    position: relative;
    color: #666;
    border-bottom: 1px solid #f0f0f0;
    font-size: 0.95rem;
}

.package-features li:last-child {
    border-bottom: none;
}

.package-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #4CAF50;
    font-weight: 700;
    font-size: 1.2rem;
}

.package-button {
    display: inline-block;
    background: linear-gradient(135deg, #FF5A5F 0%, #FF4747 100%);
    color: #ffffff;
    padding: 14px 40px;
    border-radius: 8px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-decoration: none;
    transition: all 0.3s ease;
    margin-top: 20px;
    box-shadow: 0 4px 15px rgba(196, 30, 58, 0.3);
}

.package-button:hover {
    background: linear-gradient(135deg, #a01828 0%, #b02525 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(196, 30, 58, 0.4);
}

.catering-features {
    background: linear-gradient(135deg, #0d0d0d 0%, #2d2d2d 100%);
    padding: 60px;
    border-radius: 15px;
    margin-bottom: 80px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
}

.feature-item {
    text-align: center;
    color: #ffffff;
}

.feature-icon {
    display: block;
    font-size: 2.5rem;
    color: #FF5A5F;
    margin-bottom: 15px;
    font-weight: 700;
}

.feature-item h4 {
    font-family: 'Marcellus', serif;
    font-size: 1.3rem;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

.feature-item p {
    color: #cccccc;
    font-size: 0.95rem;
}

.catering-contact {
    background: #ffffff;
    padding: 60px;
    border-radius: 15px;
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.1);
}

.catering-contact h2 {
    font-family: 'Marcellus', serif;
    font-size: 2.5rem;
    color: #0d0d0d;
    text-align: center;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 3px;
}

.catering-contact > p {
    text-align: center;
    color: #666;
    font-size: 1.1rem;
    margin-bottom: 40px;
}

.catering-form {
    max-width: 900px;
    margin: 0 auto;
}

.catering-form .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

.catering-form input,
.catering-form select,
.catering-form textarea {
    width: 100%;
    padding: 14px 18px;
    border: 1px solid #d0d0d0;
    border-radius: 6px;
    font-size: 1rem;
    font-family: 'Arimo', sans-serif;
    transition: all 0.3s ease;
    background: #ffffff;
}

.catering-form input:focus,
.catering-form select:focus,
.catering-form textarea:focus {
    border-color: #FF5A5F;
    outline: none;
    box-shadow: 0 0 0 3px rgba(255, 90, 95, 0.1);
}

.catering-form textarea {
    grid-column: 1 / -1;
    resize: vertical;
    min-height: 120px;
}

/* ============================================
   RESPONSIVE - CATERING PAGE
   ============================================ */

@media (max-width: 1200px) {
    .packages-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .feature-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .catering-section {
        padding: 100px 20px 50px;
    }
    
    .catering-intro h2 {
        font-size: 2rem;
        letter-spacing: 2px;
    }
    
    .packages-grid,
    .feature-grid {
        grid-template-columns: 1fr;
    }
    
    .catering-features {
        padding: 40px 25px;
    }
    
    .catering-contact {
        padding: 40px 25px;
    }
    
    .catering-form .form-row {
        grid-template-columns: 1fr;
    }
    
    .package-card {
        padding: 30px 20px;
    }
}

/* ============================================
   MENU PAGE STYLING
   ============================================ */

.menu-section {
    padding: 60px 40px 80px;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    min-height: 100vh;
}

.menu-container {
    max-width: 1500px;
    margin: 0 auto;
}

.specialty-pizzas-section {
    margin-bottom: 80px;
}

.pizza-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.pizza-card {
    background: #ffffff;
    border-radius: 12px;
    padding: 30px 25px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border-top: 4px solid transparent;
}

.pizza-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.15);
    border-top-color: #FF5A5F;
}

.pizza-name {
    font-family: 'Marcellus', serif;
    font-size: 1.4rem;
    color: #0d0d0d;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

.pizza-description {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 20px;
    min-height: 60px;
}

.pizza-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid #f0f0f0;
}

.pizza-price {
    font-family: 'Marcellus', serif;
    font-size: 1.8rem;
    color: #FF5A5F;
    font-weight: 700;
}

.pizza-card .add-to-cart-button {
    background: linear-gradient(135deg, #FF5A5F 0%, #FF4747 100%);
    color: #ffffff;
    padding: 10px 20px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 700;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    box-shadow: 0 3px 10px rgba(196, 30, 58, 0.3);
}

.pizza-card .add-to-cart-button:hover {
    background: linear-gradient(135deg, #a01828 0%, #b02525 100%);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(196, 30, 58, 0.4);
}

.menu-category {
    margin-bottom: 70px;
    background: #ffffff;
    padding: 50px;
    border-radius: 15px;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.08);
}

.category-title {
    font-family: 'Marcellus', serif;
    font-size: 2.5rem;
    text-align: center;
    color: #0d0d0d;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 3px;
}

.menu-items {
    margin-top: 40px;
}

.menu-item {
    padding: 25px 0;
    border-bottom: 1px solid #e8e8e8;
    transition: all 0.3s ease;
}

.menu-item:last-child {
    border-bottom: none;
}

.menu-item:hover {
    background: #f8f9fa;
    padding-left: 15px;
    padding-right: 15px;
    margin-left: -15px;
    margin-right: -15px;
    border-radius: 8px;
}

.item-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
}

.item-name {
    font-family: 'Marcellus', serif;
    font-size: 1.4rem;
    color: #0d0d0d;
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

.item-price {
    font-family: 'Marcellus', serif;
    font-size: 1.5rem;
    color: #FF5A5F;
    font-weight: 700;
}

.item-description {
    color: #666;
    font-size: 1rem;
    line-height: 1.6;
}

.menu-cta {
    text-align: center;
    background: linear-gradient(135deg, #0d0d0d 0%, #2d2d2d 100%);
    padding: 60px;
    border-radius: 15px;
    margin-top: 60px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
}

.menu-cta h3 {
    font-family: 'Marcellus', serif;
    font-size: 2.5rem;
    color: #ffffff;
    margin-bottom: 30px;
    text-transform: uppercase;
    letter-spacing: 3px;
}

.menu-cta .cta-button {
    display: inline-block;
    background: linear-gradient(135deg, #FF5A5F 0%, #FF4747 100%);
    color: #ffffff;
    padding: 18px 50px;
    border-radius: 8px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2.5px;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 1.1rem;
    box-shadow: 0 5px 20px rgba(196, 30, 58, 0.4);
}

.menu-cta .cta-button:hover {
    background: linear-gradient(135deg, #a01828 0%, #b02525 100%);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(196, 30, 58, 0.5);
}

/* ============================================
   RESPONSIVE - MENU PAGE
   ============================================ */

@media (max-width: 1200px) {
    .pizza-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .menu-section {
        padding: 100px 20px 50px;
    }
    
    .pizza-grid {
        grid-template-columns: 1fr;
    }
    
    .menu-category {
        padding: 30px 20px;
    }
    
    .category-title {
        font-size: 2rem;
        letter-spacing: 2px;
    }
    
    .menu-cta {
        padding: 40px 25px;
    }
    
    .menu-cta h3 {
        font-size: 1.8rem;
        letter-spacing: 2px;
    }
    
    .item-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }
    
    /* Hero Section Mobile */
    .pb-hero-illustration {
        width: 280px;
        height: 220px;
        margin-bottom: 30px;
    }
    
    .pb-hero-title {
        font-size: 2.5rem;
        letter-spacing: 4px;
        margin-bottom: 30px;
    }
    
    .pb-location-btn {
        font-size: 0.85rem;
        padding: 12px 25px;
    }
    
    /* Header Mobile */
    .pb-header {
        padding: 15px 20px;
    }
    
    .pb-logo a {
        font-size: 1rem;
        padding: 6px 15px;
    }
    
    /* Mobile Menu */
    .pb-mobile-menu {
        width: 100%;
    }
    
    .pb-menu-container {
        grid-template-columns: 1fr;
    }
    
    .pb-menu-left {
        display: none;
    }
    
    .pb-menu-right {
        padding: 100px 30px 60px;
        width: 100%;
    }
    
    .pb-menu-link {
        font-size: 1.8rem;
    }
    
    /* Location Sections Mobile */
    .pb-section-images {
        gap: 10px;
    }
    
    .pb-image-large img {
        height: 250px;
    }
    
    .pb-image-small img {
        height: 180px;
    }
    
    .pb-section-title {
        font-size: 2rem;
        letter-spacing: 2px;
    }
    
    .pb-section-text {
        font-size: 1rem;
    }
    
    .pb-section-links {
        flex-direction: column;
    }
    
    .pb-section-link {
        width: 100%;
        text-align: center;
    }
    
    /* Products Grid Mobile */
    .pb-products-grid,
    .pb-featured-grid {
        grid-template-columns: 1fr !important;
        gap: 20px;
    }
    
    .pb-product-card {
        padding: 20px;
    }
    
    .pb-product-title {
        font-size: 1.3rem;
    }
    
    .pb-product-price {
        font-size: 1.5rem;
    }
    
    /* Footer Mobile */
    .pb-footer {
        padding: 50px 20px 25px;
    }
    
    .pb-footer-col h3 {
        font-size: 1.1rem;
        margin-bottom: 20px;
    }
    
    .pb-footer-col p {
        font-size: 0.9rem;
    }
    
    .pb-newsletter {
        flex-direction: column;
    }
    
    .pb-newsletter input,
    .pb-newsletter button {
        width: 100%;
    }
    
    .pb-social {
        justify-content: center;
    }
    
    /* Cart & Checkout Mobile */
    .pb-cart-container,
    .pb-checkout-container {
        padding: 20px;
    }
    
    .pb-cart-table {
        font-size: 0.9rem;
    }
    
    .pb-cart-table th,
    .pb-cart-table td {
        padding: 10px 5px;
    }
    
    .pb-cart-actions {
        flex-direction: column;
        gap: 10px;
    }
    
    .pb-cart-summary {
        padding: 20px;
    }
    
    /* Featured Products Mobile */
    .pb-featured-badge {
        font-size: 0.65rem;
        padding: 4px 10px;
    }
    
    /* Package Cards Mobile */
    .package-card {
        padding: 25px 20px;
    }
    
    .package-name {
        font-size: 1.5rem;
    }
    
    .package-price {
        font-size: 1.8rem;
    }
    
    /* Pizza Cards Mobile */
    .pizza-card {
        padding: 25px 20px;
    }
    
    .pizza-name {
        font-size: 1.2rem;
    }
    
    .pizza-price {
        font-size: 1.5rem;
    }
    
    .pizza-footer {
        flex-direction: column;
        gap: 15px;
        align-items: stretch;
    }
    
    .pizza-card .add-to-cart-button {
        width: 100%;
        text-align: center;
    }
}

/* Additional Mobile Optimizations for Small Screens */
@media (max-width: 480px) {
    .pb-header {
        padding: 12px 15px;
    }
    
    .pb-logo a {
        font-size: 0.9rem;
        letter-spacing: 1px;
    }
    
    .pb-header-actions {
        gap: 12px;
        margin-right: 8px;
    }
    
    .account-icon-svg,
    .cart-icon-svg {
        font-size: 20px;
    }
    
    .auth-modal-content {
        width: 95%;
        padding: 40px 25px;
    }
    
    .auth-form-container h2 {
        font-size: 1.6rem;
    }
    
    .auth-tab {
        font-size: 0.9rem;
        padding: 12px 15px;
    }
    
    /* Hero Section - Small Mobile */
    .pb-hero {
        padding: 60px 15px 40px;
        margin-top: 68px;
    }
    
    .pb-hero-title {
        font-size: 2rem;
        letter-spacing: 2px;
        margin-bottom: 25px;
        line-height: 1.1;
        padding: 0 10px;
    }
    
    .pb-hero-illustration {
        width: 240px;
        height: 180px;
        margin-bottom: 25px;
        border-radius: 15px;
    }
    
    .pb-location-btn {
        font-size: 0.75rem;
        padding: 11px 24px;
        letter-spacing: 1px;
        width: 100%;
    }
    
    .pb-hero-locations {
        gap: 10px;
        width: 100%;
        max-width: 280px;
    }
    
    .pb-scroll-indicator {
        display: none;
    }
    
    .section-title,
    .pb-section-title {
        font-size: 1.8rem;
        letter-spacing: 1px;
    }
    
    .featured-products-section h2 {
        font-size: 1.8rem;
    }
    
    .featured-products-section .section-subtitle {
        font-size: 0.95rem;
        margin-bottom: 35px;
    }
    
    .featured-products-section .product .woocommerce-loop-product__title,
    .featured-products-section .product a {
        font-size: 1.1rem;
        letter-spacing: 1px;
    }
    
    .featured-products-section .product .price {
        font-size: 1.3rem;
    }
    
    .featured-products-section .product .button {
        padding: 12px 25px;
        font-size: 0.85rem;
        letter-spacing: 1.3px;
    }
    
    .browse-more-btn {
        padding: 12px 25px;
        font-size: 0.85rem;
        letter-spacing: 1px;
    }
    
    .pb-menu-link {
        font-size: 1.5rem;
    }
    
    .pb-footer-col h3 {
        font-size: 1rem;
    }
    
    .offer-card,
    .position-card,
    .benefit-card {
        padding: 20px 15px;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .application-section {
        padding: 40px 20px;
    }
    
    .application-section h2 {
        font-size: 1.8rem;
        letter-spacing: 1.5px;
    }
    
    .application-section > p {
        font-size: 1rem;
        margin-bottom: 35px;
    }
    
    .application-form input[type="text"],
    .application-form input[type="email"],
    .application-form input[type="tel"],
    .application-form select,
    .application-form textarea {
        padding: 14px 16px;
        font-size: 15px;
    }
    
    .file-upload {
        padding: 18px 12px;
    }
    
    .file-upload label {
        font-size: 0.9rem;
        margin-bottom: 10px;
    }
    
    .submit-button {
        padding: 15px 35px;
        font-size: 0.95rem;
        letter-spacing: 1.5px;
    }
}

/* ============================================
   CONTACT PAGE STYLING
   ============================================ */

.contact-section {
    padding: 120px 40px 80px;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    min-height: 100vh;
}

.contact-container {
    max-width: 1500px;
    margin: 0 auto;
}

.contact-two-column {
    display: grid;
    grid-template-columns: 45% 55%;
    gap: 60px;
    margin-bottom: 80px;
    align-items: start;
}

/* Left Column - Contact Info */
.contact-info-left {
    /* Left side is scrollable naturally */
}

.contact-info-left h2 {
    font-family: 'Marcellus', serif;
    font-size: 2.5rem;
    color: #0d0d0d;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 3px;
}

.contact-info-left > p {
    font-size: 1.1rem;
    color: #666;
    line-height: 1.8;
    margin-bottom: 40px;
}

.info-blocks {
    display: flex;
    flex-direction: column;
    gap: 30px;
    margin-bottom: 40px;
}

.info-block {
    background: #ffffff;
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.info-block:hover {
    transform: translateX(5px);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.12);
}

.info-icon {
    font-size: 2.5rem;
    display: block;
    margin-bottom: 15px;
}

.info-block h4 {
    font-family: 'Marcellus', serif;
    font-size: 1.3rem;
    color: #0d0d0d;
    margin-bottom: 12px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

.info-block p {
    color: #666;
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 8px;
}

.info-block p:last-child {
    margin-bottom: 0;
}

.info-block strong {
    color: #0d0d0d;
    font-weight: 600;
}

/* Social Links */
.contact-social h4 {
    font-family: 'Marcellus', serif;
    font-size: 1.3rem;
    color: #0d0d0d;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-links a {
    width: 45px;
    height: 45px;
    background: #0d0d0d;
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: #FF5A5F;
    transform: translateY(-3px);
}

/* Right Column - Contact Form */
.contact-form-right {
    background: #ffffff;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 120px;
    align-self: start;
}

.contact-form-right h2 {
    font-family: 'Marcellus', serif;
    font-size: 2.5rem;
    color: #0d0d0d;
    margin-bottom: 30px;
    text-transform: uppercase;
    letter-spacing: 3px;
}

.contact-form .form-group {
    margin-bottom: 20px;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
    width: 100%;
    padding: 14px 18px;
    border: 1px solid #d0d0d0;
    border-radius: 6px;
    font-size: 1rem;
    font-family: 'Arimo', sans-serif;
    transition: all 0.3s ease;
    background: #ffffff;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
    border-color: #FF5A5F;
    outline: none;
    box-shadow: 0 0 0 3px rgba(255, 90, 95, 0.1);
}

.contact-form textarea {
    resize: vertical;
    min-height: 120px;
}

.contact-form select {
    appearance: none;
    background-image: url('data:image/svg+xml;charset=UTF-8,<svg xmlns="http://www.w3.org/2000/svg" width="12" height="8" viewBox="0 0 12 8"><path fill="%230d0d0d" d="M6 8L0 0h12z"/></svg>');
    background-repeat: no-repeat;
    background-position: calc(100% - 18px) center;
    background-size: 12px;
    cursor: pointer;
}

/* Map Section */
.map-section {
    margin-top: 60px;
}

.map-section h2 {
    font-family: 'Marcellus', serif;
    font-size: 2.5rem;
    color: #0d0d0d;
    text-align: center;
    margin-bottom: 40px;
    text-transform: uppercase;
    letter-spacing: 3px;
}

.map-wrapper {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
}

.map-wrapper iframe {
    display: block;
}

/* ============================================
   RESPONSIVE - CONTACT PAGE
   ============================================ */

@media (max-width: 992px) {
    .contact-two-column {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .contact-form-right {
        position: relative;
        top: 0;
    }
    
    /* Account Pages Mobile */
    .pb-account-container {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .pb-account-sidebar {
        position: relative;
        top: 0;
    }
    
    .pb-account-content {
        padding: 25px;
    }
    
    .pb-account-cards {
        grid-template-columns: 1fr;
    }
    
    .pb-account-form .pb-form-row {
        grid-template-columns: 1fr;
    }
    
    .pb-quick-links-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .pb-order-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }
    
    .pb-order-details {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }
    
    .pb-order-actions {
        flex-direction: column;
        width: 100%;
    }
    
    .pb-order-btn {
        width: 100%;
    }
}

@media (max-width: 768px) {
    .contact-section {
        padding: 100px 20px 50px;
    }
    
    .contact-info-left h2,
    .contact-form-right h2,
    .map-section h2 {
        font-size: 2rem;
        letter-spacing: 2px;
    }
    
    .contact-form-right {
        padding: 30px 20px;
    }
    
    .info-block {
        padding: 20px;
    }
    
    .map-wrapper iframe {
        height: 350px;
    }
    
    /* Account Pages Tablet */
    .pb-account-header h1 {
        font-size: 26px;
    }
    
    .pb-quick-links-grid {
        grid-template-columns: 1fr;
    }
    
    .pb-login-required-content {
        padding: 40px 25px;
    }
    
    .pb-login-icon {
        font-size: 60px;
    }
    
    .pb-login-required-content h2 {
        font-size: 26px;
    }
}

/* ============================================
   DELIVERY AVAILABILITY CHECKER MODAL
   ============================================ */

.pb-delivery-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(5px);
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    padding: 20px;
}

.pb-delivery-modal.show {
    opacity: 1;
    visibility: visible;
}

.pb-delivery-modal-content {
    background: #ffffff;
    border-radius: 20px;
    max-width: 550px;
    width: 100%;
    position: relative;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    animation: slideUp 0.4s ease;
    overflow: hidden;
}

@keyframes slideUp {
    from {
        transform: translateY(50px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.pb-modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: rgba(0, 0, 0, 0.1);
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    font-size: 28px;
    cursor: pointer;
    color: #333;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 10;
}

.pb-modal-close:hover {
    background: rgba(0, 0, 0, 0.2);
    transform: rotate(90deg);
}

.pb-delivery-header {
    background: linear-gradient(135deg, #fff5f5 0%, #ffe8e8 100%);
    padding: 40px 30px 30px;
    text-align: center;
    border-bottom: 3px solid #FF5A5F;
}

.pb-delivery-icon {
    margin-bottom: 15px;
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.pb-delivery-header h2 {
    font-family: 'Marcellus', serif;
    font-size: 28px;
    color: #0d0d0d;
    margin-bottom: 10px;
}

.pb-delivery-header p {
    color: #666;
    font-size: 15px;
}

/* Form Section */
.pb-delivery-form {
    padding: 40px 30px;
}

.pb-zipcode-input-group {
    display: flex;
    gap: 10px;
    margin-bottom: 15px;
}

.pb-zipcode-input-group input {
    flex: 1;
    padding: 16px 20px;
    border: 2px solid #ddd;
    border-radius: 12px;
    font-size: 16px;
    font-family: 'Arimo', sans-serif;
    transition: all 0.3s ease;
}

.pb-zipcode-input-group input:focus {
    outline: none;
    border-color: #FF5A5F;
    box-shadow: 0 0 0 3px rgba(255, 90, 95, 0.1);
}

.pb-zipcode-input-group button {
    background: #FF5A5F;
    color: white;
    border: none;
    padding: 16px 30px;
    border-radius: 12px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.pb-zipcode-input-group button:hover {
    background: #e54348;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 90, 95, 0.3);
}

.pb-input-hint {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #999;
    font-size: 13px;
    padding: 0 5px;
}

.pb-input-hint svg {
    flex-shrink: 0;
}

/* Result Sections */
.pb-delivery-result {
    padding: 40px 30px;
    text-align: center;
}

.pb-result-icon {
    margin-bottom: 20px;
    animation: scaleIn 0.5s ease;
}

@keyframes scaleIn {
    from {
        transform: scale(0);
    }
    to {
        transform: scale(1);
    }
}

.pb-delivery-result h3 {
    font-family: 'Marcellus', serif;
    font-size: 24px;
    margin-bottom: 15px;
    color: #0d0d0d;
}

.pb-delivery-result p {
    color: #666;
    font-size: 15px;
    margin-bottom: 20px;
}

/* Success Details */
.pb-delivery-details {
    background: #f8f9fa;
    border-radius: 12px;
    padding: 25px;
    margin: 25px 0;
    text-align: left;
}

.pb-detail-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid #e0e0e0;
}

.pb-detail-row:last-child {
    border-bottom: none;
}

.pb-detail-label {
    color: #666;
    font-size: 14px;
    font-weight: 600;
}

.pb-detail-value {
    color: #0d0d0d;
    font-size: 15px;
    font-weight: 700;
}

/* Buttons */
.pb-proceed-checkout-btn {
    background: #FF5A5F;
    color: white;
    border: none;
    padding: 16px 40px;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    width: 100%;
    margin-bottom: 12px;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.pb-proceed-checkout-btn:hover {
    background: #e54348;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(255, 90, 95, 0.4);
}

.pb-check-another-btn,
.pb-try-again-btn {
    background: transparent;
    color: #FF5A5F;
    border: 2px solid #FF5A5F;
    padding: 14px 30px;
    border-radius: 12px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    width: 100%;
    transition: all 0.3s ease;
}

.pb-check-another-btn:hover,
.pb-try-again-btn:hover {
    background: #FF5A5F;
    color: white;
}

/* Suggestions */
.pb-suggestions {
    background: #fff3cd;
    border: 2px solid #ffc107;
    border-radius: 12px;
    padding: 20px;
    margin: 20px 0;
    text-align: left;
}

.pb-suggestions h4 {
    color: #856404;
    font-size: 15px;
    margin-bottom: 12px;
    font-weight: 700;
}

.pb-suggestions ul {
    list-style: none;
    padding: 0;
}

.pb-suggestions li {
    color: #856404;
    padding: 8px 0;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.pb-suggestions li:before {
    content: "→";
    color: #ffc107;
    font-weight: bold;
}

/* Loading State */
.pb-delivery-loading {
    padding: 60px 30px;
    text-align: center;
}

.pb-spinner {
    width: 50px;
    height: 50px;
    margin: 0 auto 20px;
    border: 4px solid #f3f3f3;
    border-top: 4px solid #FF5A5F;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.pb-delivery-loading p {
    color: #666;
    font-size: 15px;
}

/* Update existing checkout button in cart */
.pb-checkout-btn {
    background: #FF5A5F;
    color: white;
    text-decoration: none;
    padding: 16px 30px;
    border-radius: 8px;
    font-weight: 700;
    transition: all 0.3s ease;
    display: block;
    text-align: center;
    margin-bottom: 15px;
    border: none;
    width: 100%;
    cursor: pointer;
    font-size: 16px;
}

.pb-checkout-btn:hover {
    background: #e54348;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 90, 95, 0.3);
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .pb-delivery-modal-content {
        max-width: 95%;
        border-radius: 16px;
    }
    
    .pb-delivery-header {
        padding: 30px 20px 25px;
    }
    
    .pb-delivery-header h2 {
        font-size: 24px;
    }
    
    .pb-delivery-form {
        padding: 30px 20px;
    }
    
    .pb-zipcode-input-group {
        flex-direction: column;
    }
    
    .pb-zipcode-input-group button {
        width: 100%;
    }
    
    .pb-delivery-result {
        padding: 30px 20px;
    }
    
    .pb-delivery-result h3 {
        font-size: 20px;
    }
    
    .pb-delivery-details {
        padding: 20px;
    }
    
    .pb-detail-row {
        flex-direction: column;
        align-items: flex-start;
        gap: 5px;
    }
}
/* Delivery Info Bar on Checkout */
.pb-delivery-info-bar {
    background: linear-gradient(135deg, #e8f5e9 0%, #c8e6c9 100%);
    border: 2px solid #4CAF50;
    border-radius: 12px;
    padding: 20px 25px;
    margin-bottom: 30px;
    display: none;
}

.pb-delivery-info-content {
    display: flex;
    align-items: center;
    gap: 15px;
    flex-wrap: wrap;
}

.pb-delivery-info-content > div {
    flex: 1;
    min-width: 200px;
}

.pb-delivery-info-content strong {
    color: #2e7d32;
    font-weight: 700;
    margin-right: 8px;
}

.pb-delivery-info-content span {
    color: #1b5e20;
    font-size: 15px;
}

.pb-change-zone-btn {
    background: white;
    color: #4CAF50;
    border: 2px solid #4CAF50;
    padding: 10px 20px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.pb-change-zone-btn:hover {
    background: #4CAF50;
    color: white;
}

@media (max-width: 768px) {
    .pb-delivery-info-bar {
        padding: 15px;
    }
    
    .pb-delivery-info-content {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }
    
    .pb-change-zone-btn {
        width: 100%;
    }
}
/* Payment Gateway Styles */
.pb-payment-methods {
    margin-bottom: 25px;
}

.pb-payment-methods h3 {
    margin-bottom: 15px;
    color: #333;
    font-size: 18px;
}

.pb-payment-option {
    background: white;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    padding: 15px;
    margin-bottom: 12px;
    transition: all 0.3s ease;
    cursor: pointer;
}

.pb-payment-option:hover {
    border-color: #FF5A5F;
    box-shadow: 0 2px 8px rgba(255, 90, 95, 0.1);
}

.pb-payment-option input[type="radio"] {
    margin-right: 12px;
}

.pb-payment-option label {
    display: flex;
    align-items: center;
    gap: 12px;
    cursor: pointer;
    margin: 0;
}

.pb-payment-option .payment-icon {
    font-size: 28px;
    min-width: 40px;
    text-align: center;
}

.pb-payment-option label div {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.pb-payment-option label strong {
    color: #333;
    font-size: 16px;
}

.pb-payment-option label span {
    color: #666;
    font-size: 13px;
}

.pb-payment-option input[type="radio"]:checked + label {
    color: #FF5A5F;
}

.pb-payment-option:has(input[type="radio"]:checked) {
    border-color: #FF5A5F;
    background: #fff5f5;
}


/* ====================================================================
   CUSTOM CHECKOUT PAGE - COMPLETE STYLING
   ==================================================================== */

/* Checkout Page Container */
.pb-checkout-page {
    min-height: 60vh;
    padding: 40px 0;
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
}

/* Checkout Hero Section */
.pb-checkout-hero {
    text-align: center;
    padding: 40px 20px;
    background: linear-gradient(135deg, #FF5A5F 0%, #FF4747 100%);
    color: #fff;
    margin-bottom: 40px;
    border-radius: 15px;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.pb-checkout-hero h1 {
    font-size: 42px;
    margin: 0 0 10px 0;
    font-weight: 700;
}

.pb-checkout-hero p {
    font-size: 18px;
    margin: 0;
    opacity: 0.9;
}

/* Checkout Container */
.pb-checkout-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Delivery Info Bar */
.pb-delivery-info-bar {
    background: linear-gradient(135deg, #FF5A5F 0%, #FF4747 100%);
    color: #fff;
    padding: 20px;
    border-radius: 12px;
    margin-bottom: 30px;
    box-shadow: 0 4px 15px rgba(255, 90, 95, 0.3);
}

.pb-delivery-info-content {
    display: flex;
    align-items: center;
    gap: 15px;
}

.pb-delivery-info-content svg {
    flex-shrink: 0;
}

.pb-delivery-info-content div {
    flex: 1;
}

.pb-delivery-info-content strong {
    display: block;
    margin-bottom: 3px;
}

.pb-change-zone-btn {
    background: rgba(255, 255, 255, 0.2);
    border: 2px solid #fff;
    color: #fff;
    padding: 8px 20px;
    border-radius: 25px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s;
}

.pb-change-zone-btn:hover {
    background: #fff;
    color: #FF5A5F;
}

/* Checkout Content Layout */
.pb-checkout-content {
    display: grid;
    grid-template-columns: 1fr 400px;
    gap: 30px;
    margin-bottom: 40px;
}

/* Checkout Form */
.pb-checkout-form,
.pb-checkout-summary {
    background: #fff;
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.1);
}

.pb-checkout-form h2,
.pb-checkout-summary h2 {
    margin: 0 0 25px 0;
    font-size: 24px;
    color: #333;
    padding-bottom: 15px;
    border-bottom: 3px solid #FF5A5F;
}

/* Form Groups */
.pb-form-group {
    margin-bottom: 20px;
}

.pb-form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #333;
    font-size: 14px;
}

.pb-form-group input[type="text"],
.pb-form-group input[type="email"],
.pb-form-group input[type="tel"],
.pb-form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid #e1e8ed;
    border-radius: 8px;
    font-size: 14px;
    transition: all 0.3s;
    font-family: inherit;
}

.pb-form-group input:focus,
.pb-form-group textarea:focus {
    outline: none;
    border-color: #FF5A5F;
    box-shadow: 0 0 0 3px rgba(255, 90, 95, 0.1);
}

.pb-form-group textarea {
    resize: vertical;
    min-height: 80px;
}

/* Payment Methods */
.pb-payment-methods {
    margin: 30px 0;
}

.pb-payment-methods h3 {
    font-size: 18px;
    margin: 0 0 15px 0;
    color: #333;
}

.pb-payment-option {
    margin-bottom: 12px;
}

.pb-payment-option input[type="radio"] {
    display: none;
}

.pb-payment-option label {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px 20px;
    border: 2px solid #e1e8ed;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s;
    background: #f8f9fa;
}

.pb-payment-option input[type="radio"]:checked + label {
    border-color: #FF5A5F;
    background: #f0f3ff;
    box-shadow: 0 2px 10px rgba(255, 90, 95, 0.2);
}

.pb-payment-option label:hover {
    border-color: #FF5A5F;
    background: #f8f9fa;
}

.pb-payment-option .payment-icon {
    font-size: 28px;
    line-height: 1;
}

.pb-payment-option label div {
    flex: 1;
}

.pb-payment-option label strong {
    display: block;
    font-size: 16px;
    margin-bottom: 3px;
    color: #333;
}

.pb-payment-option label span {
    display: block;
    font-size: 13px;
    color: #666;
}

/* Place Order Button */
.pb-place-order-btn {
    width: 100%;
    padding: 16px 30px;
    background: linear-gradient(135deg, #FF5A5F 0%, #FF4747 100%);
    color: #fff;
    border: none;
    border-radius: 10px;
    font-size: 18px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 4px 15px rgba(255, 90, 95, 0.4);
}

.pb-place-order-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 90, 95, 0.6);
}

.pb-place-order-btn:active {
    transform: translateY(0);
}

.pb-place-order-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

/* Order Summary */
.pb-order-items {
    margin-bottom: 20px;
}

.pb-order-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
    border-bottom: 1px solid #f0f0f0;
}

.pb-order-item:last-child {
    border-bottom: none;
}

.pb-order-item-info {
    display: flex;
    gap: 15px;
    align-items: center;
    flex: 1;
}

.pb-order-item-info img {
    width: 60px;
    height: 60px;
    object-fit: cover;
    border-radius: 8px;
}

.pb-order-item-info h4 {
    margin: 0 0 5px 0;
    font-size: 15px;
    color: #333;
}

.pb-order-item-info span {
    font-size: 13px;
    color: #666;
}

.pb-order-item-price {
    font-size: 16px;
    font-weight: 700;
    color: #FF5A5F;
}

/* Order Totals */
.pb-order-totals {
    background: #f8f9fa;
    padding: 20px;
    border-radius: 10px;
    margin-top: 20px;
}

.pb-total-line {
    display: flex;
    justify-content: space-between;
    margin-bottom: 12px;
    font-size: 14px;
    color: #666;
}

.pb-total-grand {
    display: flex;
    justify-content: space-between;
    padding-top: 15px;
    margin-top: 15px;
    border-top: 2px solid #ddd;
    font-size: 20px;
    font-weight: 700;
    color: #333;
}

.pb-total-grand span:last-child {
    color: #FF5A5F;
}

/* Success Modal */
.pb-order-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

.pb-order-modal.show {
    display: flex;
}

.pb-modal-content {
    background: #fff;
    padding: 40px;
    border-radius: 20px;
    text-align: center;
    max-width: 500px;
    width: 90%;
    box-shadow: 0 10px 50px rgba(0, 0, 0, 0.3);
    animation: modalSlideIn 0.4s ease-out;
}

@keyframes modalSlideIn {
    from {
        opacity: 0;
        transform: translateY(-50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.pb-modal-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, #FF5A5F 0%, #FF4747 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 40px;
    color: #fff;
}

.pb-modal-content h2 {
    margin: 0 0 15px 0;
    font-size: 28px;
    color: #333;
}

.pb-modal-content p {
    margin: 10px 0;
    color: #666;
    font-size: 16px;
}

.pb-modal-content strong {
    color: #FF5A5F;
}

.pb-modal-btn {
    margin-top: 25px;
    padding: 14px 40px;
    background: linear-gradient(135deg, #FF5A5F 0%, #FF4747 100%);
    color: #fff;
    border: none;
    border-radius: 10px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.pb-modal-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(255, 90, 95, 0.4);
}

/* Responsive Design */
@media (max-width: 992px) {
    .pb-checkout-content {
        grid-template-columns: 1fr;
    }
    
    .pb-checkout-summary {
        order: -1;
    }
}

@media (max-width: 768px) {
    .pb-checkout-hero h1 {
        font-size: 32px;
    }
    
    .pb-checkout-form,
    .pb-checkout-summary {
        padding: 20px;
    }
    
    .pb-delivery-info-content {
        flex-direction: column;
        text-align: center;
    }
}
/* ============================================
   MY ADDRESSES PAGE - PROFESSIONAL STYLING
   ============================================ */

.pb-addresses-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 20px;
    margin-top: 20px;
}

.pb-address-card {
    background: white;
    border-radius: 12px;
    padding: 25px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    position: relative;
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

.pb-address-card:hover {
    box-shadow: 0 4px 16px rgba(255, 90, 95, 0.15);
    border-color: #FF5A5F;
    transform: translateY(-2px);
}

.pb-address-card.default {
    border-color: #46b450;
    background: linear-gradient(to bottom, #f0fff4 0%, #ffffff 100%);
}

.pb-default-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: #46b450;
    color: white;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.pb-address-type {
    font-size: 12px;
    color: #FF5A5F;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 15px;
}

.pb-address-details {
    color: #555;
    line-height: 1.8;
    font-size: 14px;
    margin-bottom: 20px;
}

.pb-address-details strong {
    color: #333;
    font-size: 16px;
    display: block;
    margin-bottom: 8px;
}

.pb-address-actions {
    display: flex;
    gap: 10px;
    padding-top: 15px;
    border-top: 1px solid #f0f0f0;
}

.pb-btn-delete {
    padding: 8px 20px;
    background: white;
    color: #d63638;
    border: 1px solid #d63638;
    border-radius: 6px;
    cursor: pointer;
    font-size: 13px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.pb-btn-delete:hover {
    background: #d63638;
    color: white;
}

/* Modal Styling */
.pb-modal {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(5px);
    animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.pb-modal-content {
    background: white;
    margin: 5% auto;
    padding: 40px;
    width: 90%;
    max-width: 600px;
    border-radius: 16px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    position: relative;
    animation: slideDown 0.3s ease;
}

@keyframes slideDown {
    from {
        transform: translateY(-50px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.pb-modal-close {
    position: absolute;
    right: 20px;
    top: 20px;
    font-size: 32px;
    color: #999;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.pb-modal-close:hover {
    background: #f0f0f0;
    color: #333;
    transform: rotate(90deg);
}

.pb-modal h2 {
    font-size: 28px;
    color: #333;
    margin-bottom: 30px;
    font-weight: 700;
}

.pb-address-form .pb-form-group {
    margin-bottom: 20px;
}

.pb-address-form label {
    display: block;
    font-weight: 600;
    color: #333;
    margin-bottom: 8px;
    font-size: 14px;
}

.pb-address-form input[type="text"],
.pb-address-form input[type="tel"],
.pb-address-form select {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 14px;
    transition: all 0.3s ease;
    font-family: 'Arimo', sans-serif;
}

.pb-address-form input:focus,
.pb-address-form select:focus {
    outline: none;
    border-color: #FF5A5F;
    box-shadow: 0 0 0 3px rgba(255, 90, 95, 0.1);
}

.pb-form-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 15px;
}

.pb-address-form input[type="checkbox"] {
    width: 18px;
    height: 18px;
    margin-right: 8px;
    cursor: pointer;
}

.pb-btn-primary {
    padding: 14px 30px;
    background: linear-gradient(135deg, #FF5A5F 0%, #FF4747 100%);
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
    margin-top: 10px;
}

.pb-btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(255, 90, 95, 0.3);
}

/* ============================================
   MY BOOKINGS PAGE - PROFESSIONAL STYLING
   ============================================ */

.pb-bookings-tabs {
    display: flex;
    gap: 10px;
    margin-bottom: 30px;
    border-bottom: 2px solid #f0f0f0;
}

.pb-tab-btn {
    padding: 12px 24px;
    background: white;
    border: none;
    border-bottom: 3px solid transparent;
    cursor: pointer;
    font-size: 15px;
    font-weight: 600;
    color: #666;
    transition: all 0.3s ease;
    position: relative;
    bottom: -2px;
}

.pb-tab-btn.active {
    color: #FF5A5F;
    border-bottom-color: #FF5A5F;
}

.pb-tab-btn:hover {
    color: #FF5A5F;
    background: #fff5f5;
}

.pb-tab-content {
    display: none;
}

.pb-tab-content.active {
    display: block;
}

.pb-bookings-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.pb-booking-card {
    background: white;
    border-radius: 12px;
    padding: 25px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    border-left: 4px solid #FF5A5F;
    transition: all 0.3s ease;
}

.pb-booking-card:hover {
    box-shadow: 0 4px 16px rgba(255, 90, 95, 0.15);
    transform: translateX(4px);
}

.pb-booking-card.confirmed {
    border-left-color: #46b450;
}

.pb-booking-card.pending {
    border-left-color: #ffb900;
}

.pb-booking-card.cancelled {
    border-left-color: #d63638;
    opacity: 0.7;
}

.pb-booking-header {
    display: flex;
    justify-content: space-between;
    align-items: start;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 1px solid #f0f0f0;
}

.pb-booking-info h3 {
    font-size: 20px;
    color: #333;
    margin: 0 0 5px 0;
    font-weight: 700;
}

.pb-booking-id {
    font-size: 13px;
    color: #999;
    margin: 0;
}

.pb-status-badge {
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.pb-status-badge.confirmed {
    background: #d4edda;
    color: #155724;
}

.pb-status-badge.pending {
    background: #fff3cd;
    color: #856404;
}

.pb-status-badge.cancelled {
    background: #f8d7da;
    color: #721c24;
}

.pb-booking-details {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-bottom: 20px;
}

.pb-detail-item {
    display: flex;
    align-items: start;
    gap: 12px;
}

.pb-detail-icon {
    font-size: 24px;
    line-height: 1;
}

.pb-detail-item strong {
    display: block;
    font-size: 12px;
    color: #666;
    margin-bottom: 4px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.pb-detail-item p {
    font-size: 16px;
    color: #333;
    font-weight: 600;
    margin: 0;
}

.pb-booking-notes {
    background: #f8f9fa;
    padding: 15px;
    border-radius: 8px;
    margin-top: 15px;
}

.pb-booking-notes strong {
    display: block;
    color: #333;
    margin-bottom: 8px;
    font-size: 13px;
}

.pb-booking-notes p {
    color: #666;
    line-height: 1.6;
    margin: 0;
}

.pb-booking-actions {
    display: flex;
    gap: 10px;
    padding-top: 15px;
    border-top: 1px solid #f0f0f0;
    margin-top: 15px;
}

.pb-btn-cancel {
    padding: 10px 24px;
    background: white;
    color: #d63638;
    border: 2px solid #d63638;
    border-radius: 8px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.pb-btn-cancel:hover {
    background: #d63638;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(214, 54, 56, 0.3);
}

.pb-btn-view-details {
    padding: 10px 24px;
    background: linear-gradient(135deg, #FF5A5F 0%, #FF4747 100%);
    color: white;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.pb-btn-view-details:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 90, 95, 0.3);
}

/* ============================================
   EMPTY STATES - PROFESSIONAL STYLING
   ============================================ */

.pb-empty-state {
    text-align: center;
    padding: 80px 40px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.pb-empty-icon {
    font-size: 80px;
    margin-bottom: 20px;
    opacity: 0.5;
}

.pb-empty-state h3 {
    font-size: 24px;
    color: #333;
    margin-bottom: 10px;
    font-weight: 700;
}

.pb-empty-state p {
    font-size: 16px;
    color: #666;
    margin-bottom: 30px;
}

.pb-shop-btn,
.pb-empty-state .pb-btn-primary {
    display: inline-block;
    padding: 14px 32px;
    background: linear-gradient(135deg, #FF5A5F 0%, #FF4747 100%);
    color: white;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
    font-size: 16px;
}

.pb-shop-btn:hover,
.pb-empty-state .pb-btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(255, 90, 95, 0.3);
}

/* Success Message */
.pb-success-message {
    background: #d4edda;
    color: #155724;
    padding: 15px 20px;
    border-radius: 8px;
    margin-bottom: 20px;
    border-left: 4px solid #46b450;
    font-weight: 600;
}

/* ============================================
   RESPONSIVE - ADDRESSES & BOOKINGS
   ============================================ */

@media (max-width: 768px) {
    .pb-addresses-grid {
        grid-template-columns: 1fr;
    }
    
    .pb-booking-details {
        grid-template-columns: 1fr;
    }
    
    .pb-booking-header {
        flex-direction: column;
        gap: 15px;
    }
    
    .pb-modal-content {
        margin: 10% 5%;
        padding: 30px 20px;
    }
    
    .pb-form-row {
        grid-template-columns: 1fr;
    }
    
    .pb-bookings-tabs {
        flex-direction: column;
    }
    
    .pb-tab-btn {
        width: 100%;
        text-align: left;
    }
}
