:root {
    /* Light mode (default) - More cohesive and modern colors */
    --background-primary: #f8f9fa;
    --background-secondary: #ffffff;
    --background-tertiary: #f1f3f5;
    --primary-text: #3b82f6;
    --secondary-text: #4b5563;
    --card-background: #ffffff;
    --accent-color: #3b82f6;
    --border-color: #e5e7eb;
    --star-color: #fbbf24;
    --card-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    --button-gradient: linear-gradient(135deg, #3b82f6, #60a5fa);
    --header-gradient: linear-gradient(to right, #f8f9fa, #f1f3f5);
}

body.dark-mode {
    /* Dark mode - More cohesive and modern colors */
    --background-primary: #111827;
    --background-secondary: #1f2937;
    --background-tertiary: #374151;
    --primary-text: #3b82f6;
    --secondary-text: #e5e7eb;
    --card-background: #1f2937;
    --accent-color: #3b82f6;
    --border-color: #4b5563;
    --star-color: #fbbf24;
    --card-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    --button-gradient: linear-gradient(135deg, #3b82f6, #60a5fa);
    --header-gradient: linear-gradient(to right, #111827, #1f2937);
}

body {
    font-family: 'Segoe UI', sans-serif;
    background-color: var(--background-primary);
    color: var(--secondary-text);
    margin: 0;
    padding: 0;
    line-height: 1.6;
}

#loader {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 99999;
  background: var(--background-primary);
  display: flex;
  justify-content: center;
  align-items: center;
}

.spinner {
  border: 8px solid var(--border-color);
  border-top: 8px solid var(--primary-text);
  border-radius: 50%;
  width: 60px;
  height: 60px;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

header {
    background: var(--background-secondary);
    padding: 15px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid var(--border-color);
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: all 0.3s ease;
    box-shadow: 0 1px 6px rgba(0, 0, 0, 0.05);
}

.header-left {
    display: flex;
    align-items: center;
    gap: 15px;
}

#headerLogo {
    width: 36px;
    height: 36px;
    border-radius: 8px;
    object-fit: cover;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.header-title {
    font-size: 1.4em;
    font-weight: 600;
    color: var(--primary-text);
    letter-spacing: -0.5px;
}

.header-right {
    display: flex;
    align-items: center;
    gap: 12px;
}

#langSelector, #darkModeToggle, #checkTransactionBtn {
    background-color: var(--background-tertiary);
    color: var(--secondary-text);
    border: none;
    border-radius: 6px;
    padding: 8px 12px;
    cursor: pointer;
    transition: all 0.2s ease;
    font-size: 0.9em;
    font-weight: 500;
}

#checkTransactionBtn:hover, #langSelector:hover, #darkModeToggle:hover {
    background-color: var(--background-primary);
    color: var(--primary-text);
    transform: translateY(-2px);
}

#darkModeToggle {
    font-size: 1.1em;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    padding: 0;
}

.main-content {
    display: flex;
    gap: 30px;
    padding: 30px;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
}

.left-column {
    flex: 2;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.right-column {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 20px;
    position: sticky;
    top: 90px;
    align-self: flex-start;
    height: calc(100vh - 120px);
    overflow-y: auto;
    padding-right: 5px;
}

.right-column::-webkit-scrollbar {
    width: 6px;
}

.right-column::-webkit-scrollbar-track {
    background: var(--background-primary);
    border-radius: 10px;
}

.right-column::-webkit-scrollbar-thumb {
    background: var(--primary-text);
    border-radius: 10px;
    opacity: 0.7;
}

.product-header {
    background-color: var(--card-background);
    padding: 24px;
    border-radius: 12px;
    box-shadow: var(--card-shadow);
    border: none;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    align-items: center;
    gap: 24px;
}

.product-header:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 25px rgba(59, 130, 246, 0.15);
}

.product-banner {
    max-width: 150px;
    height: auto;
    border-radius: 10px;
    object-fit: cover;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.product-header h1 {
    color: var(--primary-text);
    margin: 0 0 8px 0;
    font-size: 1.8rem;
    letter-spacing: -0.5px;
}

.product-header p {
    margin: 0 0 16px 0;
    font-size: 1.1em;
    color: var(--secondary-text);
    opacity: 0.9;
}

.product-tags {
    display: flex;
    gap: 15px;
    font-size: 0.9em;
}

.product-tags span {
    display: flex;
    align-items: center;
    gap: 5px;
    animation: pulse 2.5s infinite ease-in-out;
}

.product-tags span:nth-child(2) {
    animation-delay: 0.2s;
}

.product-tags span:nth-child(3) {
    animation-delay: 0.4s;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
        color: var(--primary-text);
    }
}

.checkout-step {
    background-color: var(--card-background);
    padding: 24px;
    border-radius: 12px;
    box-shadow: var(--card-shadow);
    border: none;
    position: relative;
    overflow: hidden;
    margin-bottom: 20px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.checkout-step:hover {
    box-shadow: 0 8px 20px rgba(59, 130, 246, 0.15);
}

.checkout-step::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 5px;
    height: 100%;
    background: var(--primary-text);
    opacity: 0.8;
}

.checkout-step .step-number {
    background-color: var(--primary-text);
    color: white;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: 600;
    margin-bottom: 16px;
    box-shadow: 0 2px 6px rgba(59, 130, 246, 0.3);
}

.checkout-step h3 {
    margin: 0 0 18px 0;
    color: var(--primary-text);
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 12px;
    font-size: 1.1rem;
    font-weight: 600;
}

input[type="text"], select {
    width: 100%;
    padding: 12px 16px;
    background-color: var(--background-primary);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    color: var(--secondary-text);
    box-sizing: border-box;
    margin-bottom: 12px;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
    font-size: 0.95rem;
}

input[type="text"]:focus, select:focus {
    outline: none;
    border-color: var(--primary-text);
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.15);
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
    gap: 16px;
}

.product-item {
    background-color: var(--background-secondary);
    padding: 16px;
    border-radius: 10px;
    border: none;
    cursor: pointer;
    transition: all 0.25s ease;
    text-align: center;
    position: relative;
    overflow: hidden;
    box-shadow: var(--card-shadow);
    display: flex;
    flex-direction: column;
    align-items: center;
}

.product-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 16px rgba(59, 130, 246, 0.15);
    background-color: rgba(59, 130, 246, 0.03);
}

.product-item.selected {
    background-color: rgba(59, 130, 246, 0.08);
    box-shadow: 0 0 0 2px var(--primary-text);
}

.product-item .pet-icon {
    font-size: 1.8em;
    margin-bottom: 8px;
    color: var(--primary-text);
    background-color: rgba(59, 130, 246, 0.1);
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.product-item .product-name {
    font-weight: 600;
    font-size: 0.9em;
    margin: 8px 0 4px;
    color: var(--secondary-text);
}

.product-item .product-price {
    font-weight: 700;
    color: var(--primary-text);
    font-size: 0.95em;
    margin-top: 4px;
}

.product-description {
    font-size: 0.8em;
    color: var(--secondary-text);
    margin: 5px 0;
    min-height: 40px; /* Ensures consistent card height */
    opacity: 0.8;
}

.ratings-card, .help-card, .cart-summary-card {
    background-color: var(--card-background);
    padding: 12px;
    border-radius: 10px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    border: 1px solid var(--border-color);
    margin-bottom: 15px;
    max-height: 250px;
    overflow: hidden;
}

.ratings-card:hover, .help-card:hover, .cart-summary-card:hover {
    box-shadow: 0 5px 15px rgba(0,0,0,0.15);
    transform: translateY(-2px);
}

.ratings-card h3, .help-card h3, .cart-summary-card h3 {
    font-size: 1rem;
    margin: 0 0 10px 0;
    padding-bottom: 8px;
    border-bottom: 1px solid var(--border-color);
    color: var(--primary-text);
    display: flex;
    align-items: center;
    gap: 5px;
}

.ratings-card h3::before {
    content: '⭐';
    font-size: 0.9rem;
}

.help-card h3::before {
    content: '🔔';
    font-size: 0.9rem;
}

.cart-summary-card h3::before {
    content: '🛒';
    font-size: 0.9rem;
}

.rating-summary {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 5px;
}

.rating-score {
    font-size: 1.5em;
    font-weight: bold;
}

.rating-stars {
    font-size: 1em;
    color: var(--star-color);
}

.ratings-card small {
    font-size: 0.8em;
    opacity: 0.8;
}

.help-card p {
    margin: 0 0 8px 0;
    font-size: 0.9em;
}

.admin-links {
    display: flex;
    gap: 8px;
    margin-top: 8px;
}

.admin-link {
    background-color: var(--background-secondary);
    color: var(--secondary-text);
    padding: 6px 10px;
    text-align: center;
    border-radius: 6px;
    text-decoration: none;
    transition: all 0.2s ease;
    position: relative;
    overflow: hidden;
    font-size: 0.85em;
    flex: 1;
}

.admin-link:hover {
    background-color: var(--background-tertiary);
    transform: translateY(-2px);
    color: var(--primary-text);
}

.admin-link::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 300%;
    height: 300%;
    background: rgba(255, 255, 255, 0.1);
    transition: all .3s ease;
    transform: translate(-50%, -50%) rotate(45deg);
}

.admin-link:hover::after {
    width: 0;
    height: 0;
}

#cartItems {
    margin-bottom: 15px;
}

.cart-item {
    display: flex;
    justify-content: space-between;
    padding: 8px 0;
    border-bottom: 1px solid var(--border-color);
}

#checkoutBtn {
    width: 100%;
    padding: 15px;
    background: var(--button-gradient);
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 1.1em;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(233, 69, 96, 0.3);
    text-transform: uppercase;
    letter-spacing: 1px;
}

#checkoutBtn:disabled {
    background-color: #555;
    cursor: not-allowed;
}

#checkoutBtn:hover:not(:disabled) {
    background-color: #d43a50;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(233, 69, 96, 0.4);
}

#checkoutBtn::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 300%;
    height: 300%;
    background: rgba(255, 255, 255, 0.15);
    transition: all .6s ease;
    transform: translate(-50%, -50%) rotate(45deg);
}

#checkoutBtn:hover:not(:disabled)::after {
    width: 0;
    height: 0;
}

.footer-section {
    background-color: var(--background-secondary);
    padding: 60px 30px 20px 30px;
    margin-top: 60px;
    border-top: 1px solid var(--border-color);
    position: relative;
}

.footer-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--button-gradient);
    opacity: 0.7;
}

.footer-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto 40px auto;
    text-align: left;
}

.footer-about .footer-logo {
    width: 60px;
    height: 60px;
    border-radius: 12px;
    margin-bottom: 20px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.footer-about p {
    font-size: 0.95em;
    line-height: 1.7;
    margin-bottom: 24px;
    max-width: 320px;
    color: var(--secondary-text);
    opacity: 0.9;
}

.footer-socials {
    display: flex;
    gap: 18px;
}

.footer-socials a {
    color: var(--secondary-text);
    font-size: 1.5em;
    transition: all 0.3s ease;
    opacity: 0.8;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: rgba(59, 130, 246, 0.05);
}

.footer-socials a:hover {
    color: var(--primary-text);
    transform: translateY(-3px);
    opacity: 1;
    background-color: rgba(59, 130, 246, 0.1);
}

.footer-links h4 {
    color: var(--primary-text);
    margin-bottom: 24px;
    font-size: 1.1em;
    font-weight: 600;
    position: relative;
    padding-bottom: 10px;
}

.footer-links h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background: var(--primary-text);
    opacity: 0.7;
}

.footer-links ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links ul li {
    margin-bottom: 14px;
}

.footer-links ul a {
    color: var(--secondary-text);
    text-decoration: none;
    transition: all 0.2s ease;
    opacity: 0.85;
    font-size: 0.95em;
    display: inline-flex;
    align-items: center;
}

.footer-links ul a:hover {
    color: var(--primary-text);
    opacity: 1;
    transform: translateX(3px);
}

.footer-bottom {
    text-align: center;
    padding-top: 24px;
    border-top: 1px solid var(--border-color);
    font-size: 0.9em;
    color: var(--secondary-text);
    opacity: 0.8;
}

.error-message {
    color: var(--primary-text);
    font-size: 0.9em;
    margin-top: 5px;
}

@media (max-width: 900px) {
    .main-content {
        flex-direction: column;
    }
}
.checkout-step {
    background-color: var(--card-background);
    padding: 20px;
    border-radius: 10px;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.5s ease-out, transform 0.5s ease-out;
}

.checkout-step.visible {
    opacity: 1;
    transform: translateY(0);
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in-up {
    animation: fadeInUp 0.5s ease-out forwards;
}

/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    z-index: 1001;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0,0,0,0.6);
    animation: fadeIn 0.3s ease-in-out;
}

.modal-content {
    background-color: var(--background-secondary);
    margin: 15% auto;
    padding: 25px;
    border: 1px solid var(--border-color);
    width: 80%;
    max-width: 500px;
    border-radius: 10px;
    position: relative;
    animation: slideIn 0.4s ease-out;
}

.close-button {
    color: var(--secondary-text);
    float: right;
    font-size: 28px;
    font-weight: bold;
}

.close-button:hover,
.close-button:focus {
    color: var(--primary-text);
    text-decoration: none;
    cursor: pointer;
}

#transactionDetails p {
    margin-bottom: 10px;
    line-height: 1.8;
}

#transactionDetails strong {
    color: var(--primary-text);
}

@keyframes fadeIn {
    from {opacity: 0;}
    to {opacity: 1;}
}

@keyframes slideIn {
    from {transform: translateY(-50px); opacity: 0;}
    to {transform: translateY(0); opacity: 1;}
}
/* Home Page Product Selection */
.product-selection-container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    background-color: var(--background-secondary);
    border-radius: 10px;
}

.product-selection-container h2 {
    color: var(--primary-text);
    text-align: center;
    margin-bottom: 30px;
}

.product-grid-home {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 20px;
    justify-content: center;
}

.product-card-home {
    background-color: var(--card-background);
    border-radius: 10px;
    overflow: hidden;
    text-decoration: none;
    color: var(--secondary-text);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: block;
}

.product-card-home:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 25px rgba(0,0,0,0.3);
}

.product-card-home img {
    width: 100%;
    height: auto;
    display: block;
}

.product-info-home {
    padding: 15px;
}

.product-info-home h3 {
    margin: 0 0 5px 0;
    color: var(--primary-text);
}

.product-info-home p {
    margin: 0;
    font-size: 0.9em;
}
/* Header Links */
.header-link {
    color: var(--secondary-text);
    text-decoration: none;
    padding: 8px 12px;
    border-radius: 8px;
    transition: background-color 0.3s ease, color 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.header-link:hover {
    background-color: var(--background-tertiary);
    color: var(--primary-text);
}

/* --- Responsive Design --- */
@media (max-width: 992px) {
    .main-content {
        padding: 20px 15px;
    }
    
    .product-header {
        flex-direction: column;
        text-align: center;
    }
    
    .product-header img {
        margin: 0 auto 15px;
    }
    
    .product-tags {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    header {
        flex-direction: column;
        padding: 15px;
        gap: 12px;
    }

    .header-right {
        display: flex;
        flex-direction: row;
        flex-wrap: wrap;
        width: 100%;
        gap: 10px;
        justify-content: center;
    }

    .header-link {
        justify-content: center;
        padding: 10px;
        background-color: var(--background-tertiary);
        flex: 1;
        min-width: 120px;
        box-sizing: border-box;
        border-radius: 8px;
    }
    
    .main-content {
        flex-direction: column;
    }
    
    .right-column {
        position: static;
        height: auto;
        margin-top: 20px;
    }
    
    .checkout-step {
        padding: 20px 15px;
    }
    
    .product-grid {
        grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
    }
    
    .payment-methods {
        gap: 12px;
    }
    
    .payment-method {
        width: 100px;
        padding: 12px 8px;
    }
    
    .review-container {
        flex-direction: column;
    }

    .footer-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 25px;
    }

    .footer-about, .footer-links {
        align-items: center;
    }
    
    .footer-about p {
        max-width: 100%;
    }

    .footer-socials {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .header-title {
        font-size: 1.2em;
    }
    
    #headerLogo {
        width: 32px;
        height: 32px;
    }
    
    .header-link {
        font-size: 0.85em;
        padding: 8px;
        min-width: 100px;
    }
    
    .product-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .product-item .pet-icon {
        font-size: 1.5em;
        width: 40px;
        height: 40px;
    }
    
    .product-item .product-name {
        font-size: 0.8em;
    }
    
    .product-item .product-price {
        font-size: 0.85em;
    }
    
    .payment-methods {
        justify-content: space-between;
    }
    
    .payment-method {
        width: 45%;
        margin-bottom: 10px;
    }

    .footer-section {
        padding: 25px 15px 15px 15px;
    }
    
    .modal-content {
        width: 95%;
        padding: 20px 15px;
    }
}
/* View Switcher Button */
.view-switcher {
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid var(--border-color);
    text-align: center;
}
#switch-view-btn {
    background-color: var(--background-tertiary);
    color: var(--secondary-text);
    border: 1px solid var(--border-color);
    padding: 12px 20px;
    border-radius: 8px;
    cursor: pointer;
    font-size: 1em;
    font-weight: bold;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: background-color 0.3s;
}
#switch-view-btn:hover {
    background-color: var(--primary-text);
    color: white;
}
/* Fly to cart animation */
.fly-to-cart {
    position: fixed;
    font-size: 2em;
    color: var(--primary-text);
    z-index: 10000;
    pointer-events: none;
    transition: all 1s cubic-bezier(0.5, -0.5, 1, 0.5);
}
@keyframes shake {
  0%, 100% { transform: translateX(0); }
  25% { transform: translateX(-3px); }
  75% { transform: translateX(3px); }
}

.shake {
    animation: shake 0.3s ease-in-out;
}
/* --- Review Section Styles --- */
.review-section, .review-display-section {
    background-color: var(--card-background);
    padding: 18px;
    border-radius: 12px;
    width: 100%;
    box-sizing: border-box;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
    margin-bottom: 20px;
    border: 1px solid var(--border-color);
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.review-section h2, .review-display-section h2 {
    color: var(--primary-text);
    text-align: center;
    margin-bottom: 15px;
    font-size: 1.2rem;
    padding-bottom: 8px;
    border-bottom: 1px solid var(--border-color);
}

/* Star Rating */
.star-rating {
    display: flex;
    flex-direction: row-reverse;
    justify-content: center;
    margin-bottom: 20px;
}
.star-rating input { display: none; }
.star-rating label {
    font-size: 2.5em;
    color: var(--secondary-text);
    cursor: pointer;
    transition: color 0.2s;
}
.star-rating input:checked ~ label,
.star-rating label:hover,
.star-rating label:hover ~ label {
    color: var(--star-color);
}

/* Form Elements */
#reviewForm textarea {
    width: 100%;
    min-height: 100px;
    padding: 12px;
    background-color: var(--background-primary);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    color: var(--secondary-text);
    box-sizing: border-box;
    font-size: 1em;
    margin-bottom: 15px;
}
.file-upload-label {
    display: inline-block;
    background-color: var(--background-secondary);
    color: var(--secondary-text);
    padding: 10px 15px;
    border-radius: 8px;
    cursor: pointer;
    margin-bottom: 10px;
}
#reviewImage { display: none; }

/* Review Display */
#review-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
    max-height: 400px;
    overflow-y: auto;
    padding-right: 5px;
}

#review-list::-webkit-scrollbar {
    width: 6px;
}

#review-list::-webkit-scrollbar-track {
    background: var(--background-primary);
    border-radius: 10px;
}

#review-list::-webkit-scrollbar-thumb {
    background: var(--primary-text);
    border-radius: 10px;
}

.review-card {
    background-color: var(--background-secondary);
    padding: 12px;
    border-radius: 8px;
    border-left: 3px solid var(--primary-text);
    transition: transform 0.2s ease;
}

.review-card:hover {
    transform: translateX(3px);
}

.review-card .review-rating {
    color: var(--star-color);
    margin-bottom: 5px;
    font-size: 0.9em;
}

.review-card .review-text {
    margin-bottom: 8px;
    font-size: 0.95em;
    line-height: 1.4;
}

.review-card .review-image {
    max-width: 100%;
    max-height: 150px;
    border-radius: 6px;
    object-fit: cover;
}
/* Review Submit Button */
.review-submit-btn {
    width: 100%;
    padding: 15px;
    border: none;
    border-radius: 8px;
    font-size: 1.1em;
    font-weight: bold;
    cursor: pointer;
    color: white;
    background: linear-gradient(45deg, var(--primary-text), #f06a7e);
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(233, 69, 96, 0.4);
}

.review-submit-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(233, 69, 96, 0.6);
}

.review-submit-btn:disabled {
    background: #555;
    cursor: not-allowed;
    box-shadow: none;
    transform: none;
}