.plm-cart-page {
    max-width: 1200px;
    margin: 2rem auto;
    padding: 0 1rem;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
}

.plm-cart-header {
    margin-bottom: 2rem;
    border-bottom: 1px solid #e5e7eb;
    padding-bottom: 1rem;
}

.plm-cart-header h1 {
    font-size: 2rem;
    color: #1f2937;
    margin: 0;
}

.plm-cart-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 2rem;
}

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

.plm-cart-items {
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.plm-cart-item {
    display: grid;
    grid-template-columns: 3fr 1fr auto;
    gap: 1.5rem;
    padding: 1.5rem;
    border-bottom: 1px solid #e5e7eb;
}

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

.plm-cart-item-details h3 {
    margin: 0 0 0.5rem;
    font-size: 1.25rem;
    color: #1f2937;
}

.plm-plan-name {
    color: #4b5563;
    margin: 0 0 1rem;
    font-weight: 500;
}

.plm-plan-features {
    list-style: none;
    margin: 0;
    padding: 0;
    color: #6b7280;
}

.plm-plan-features li {
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
}

.plm-plan-features li:before {
    content: "✓";
    color: #10b981;
    margin-right: 0.5rem;
    font-weight: bold;
}

.plm-cart-item-price {
    font-size: 1.25rem;
    font-weight: 600;
    color: #1f2937;
    display: flex;
    align-items: center;
}

.plm-cart-item-remove button {
    background: none;
    border: none;
    color: #ef4444;
    cursor: pointer;
    padding: 0.5rem;
    font-size: 0.875rem;
    transition: color 0.2s;
}

.plm-cart-item-remove button:hover {
    color: #dc2626;
}

.plm-cart-summary {
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    padding: 1.5rem;
    position: sticky;
    top: 2rem;
}

.plm-cart-summary h2 {
    margin: 0 0 1.5rem;
    font-size: 1.5rem;
    color: #1f2937;
}

.plm-price-breakdown {
    margin-bottom: 1.5rem;
}

.plm-price-row {
    display: flex;
    justify-content: space-between;
    padding: 0.75rem 0;
    color: #4b5563;
}

.plm-price-row.total {
    border-top: 2px solid #e5e7eb;
    font-weight: 600;
    color: #1f2937;
    font-size: 1.25rem;
    margin-top: 0.5rem;
    padding-top: 1rem;
}

.plm-terms {
    margin: 1.5rem 0;
}

.plm-terms label {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    color: #4b5563;
    font-size: 0.875rem;
}

.plm-terms input[type="checkbox"] {
    margin-top: 0.25rem;
}

.plm-terms a {
    color: #2563eb;
    text-decoration: none;
}

.plm-terms a:hover {
    text-decoration: underline;
}

.plm-button-primary {
    background: #2563eb;
    color: #fff;
    border: none;
    border-radius: 6px;
    padding: 1rem;
    width: 100%;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    transition: background-color 0.2s;
}

.plm-button-primary:hover {
    background: #1d4ed8;
}

.plm-button-primary:disabled {
    background: #93c5fd;
    cursor: not-allowed;
}

/* Empty cart state */
.plm-cart-empty {
    text-align: center;
    padding: 3rem 1rem;
    color: #6b7280;
}

.plm-cart-empty p {
    margin: 0 0 1.5rem;
    font-size: 1.125rem;
}

.plm-cart-empty a {
    color: #2563eb;
    text-decoration: none;
    font-weight: 500;
}

.plm-cart-empty a:hover {
    text-decoration: underline;
}

/* Account creation notice */
.plm-account-creation-notice {
    margin: 15px 0;
    padding: 10px 15px;
    background-color: #f7f7f7;
    border-left: 4px solid #2271b1;
    border-radius: 3px;
    font-size: 14px;
}

.plm-account-creation-notice p {
    margin: 0;
    display: flex;
    align-items: center;
}

.plm-account-creation-notice .dashicons {
    color: #2271b1;
    margin-right: 10px;
    font-size: 18px;
}

/* Login and Signup Forms */
.plm-login-signup-wrapper {
    max-width: 900px;
    margin: 2rem auto;
    padding: 2rem;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.plm-login-signup-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

@media (max-width: 768px) {
    .plm-login-signup-container {
        grid-template-columns: 1fr;
    }
}

.plm-login-container,
.plm-signup-container {
    padding: 2rem;
    background: #f8f9fa;
    border-radius: 6px;
}

.plm-login-container h2,
.plm-signup-container h2 {
    margin: 0 0 1.5rem;
    font-size: 1.5rem;
    color: #333;
}

.plm-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.plm-form-row {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.plm-form-row label {
    font-weight: 500;
    color: #4a5568;
}

.plm-form-row input[type="text"],
.plm-form-row input[type="email"],
.plm-form-row input[type="password"] {
    padding: 0.75rem;
    border: 1px solid #e2e8f0;
    border-radius: 4px;
    font-size: 1rem;
    transition: border-color 0.2s;
}

.plm-form-row input[type="text"]:focus,
.plm-form-row input[type="email"]:focus,
.plm-form-row input[type="password"]:focus {
    border-color: #4299e1;
    outline: none;
    box-shadow: 0 0 0 3px rgba(66, 153, 225, 0.1);
}

.plm-remember-me {
    flex-direction: row;
    align-items: center;
    gap: 0.5rem;
}

.plm-remember-me label {
    font-weight: normal;
}

.plm-form-links {
    margin-top: 1rem;
}

.plm-form-links a {
    color: #4299e1;
    text-decoration: none;
    font-size: 0.9rem;
}

.plm-form-links a:hover {
    text-decoration: underline;
}

.plm-button {
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 4px;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    transition: background-color 0.2s;
}

.plm-button-primary {
    background-color: #4299e1;
    color: white;
}

.plm-button-primary:hover {
    background-color: #3182ce;
}

/* Cart Notice */
.plm-cart-notice {
    margin-bottom: 2rem;
    padding: 1rem;
    background-color: #ebf8ff;
    border-left: 4px solid #4299e1;
    border-radius: 4px;
    color: #2c5282;
}

.plm-cart-notice p {
    margin: 0;
    font-size: 1rem;
    line-height: 1.5;
} 