/**
 * Grosvenor+ AI Mood Board Matcher Styles
 *
 * Updated to use Grosvenor Flooring style guide design tokens
 * @see /docs/style-guide.md
 * @updated 1.0.99
 */

/* ==========================================================================
   DESIGN TOKENS (from style guide)
   ========================================================================== */

:root {
    /* Primary Brand */
    --gf-gold: #edbe00;
    --gf-gold-hover: #d4a903;
    --gf-gold-light: #fffdf5;
    
    /* Grosvenor+ Premium Green */
    --gf-premium-green: #1a4d2e;
    --gf-premium-green-light: #2d6a4f;
    
    /* Neutrals */
    --gf-primary-text: #444444;
    --gf-body-text: #4C4C4C;
    --gf-muted: #6c757d;
    --gf-border: #dddddd;
    --gf-bg-light: #f8f9fa;
    --gf-white: #ffffff;
    
    /* Semantic */
    --gf-success: #5cb85c;
    --gf-error: #dc3545;
    
    /* Effects */
    --gf-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    --gf-shadow-lg: 0 8px 24px rgba(0, 0, 0, 0.12);
    --gf-radius: 10px;
    --gf-transition: 0.2s ease;
    --gf-transition-smooth: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    
    /* Typography */
    --gf-font: 'Hind', sans-serif;
}

/* ==========================================================================
   PREVENT FLICKER ON PAGE REFRESH
   Hide default elements when cached results exist (detected before DOM ready)
   ========================================================================== */

html.gplus-ai-has-cache .gplus-ai-steps,
html.gplus-ai-has-cache .gplus-ai-upload-area {
    display: none !important;
}

/* ==========================================================================
   MAIN CONTAINER
   ========================================================================== */

.gplus-ai-matcher {
    max-width: 100%; /* Full width like category pages */
    padding-left: 30px;
    padding-right: 30px;
    margin: 2rem auto;
    font-family: var(--gf-font);
}

/* ==========================================================================
   HOW IT WORKS STEPS
   ========================================================================== */

.gplus-ai-steps {
    margin-bottom: 2rem;
    text-align: center;
}

.gplus-ai-steps-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--gf-primary-text);
    margin: 0 0 1.5rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-family: var(--gf-font);
}

.gplus-ai-steps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

/* 4-step variant */
.gplus-ai-steps-grid.gplus-ai-steps-grid-4 {
    grid-template-columns: repeat(4, 1fr);
}

/* Tablet - 2x2 grid for 4 steps */
@media (max-width: 991px) {
    .gplus-ai-steps-grid.gplus-ai-steps-grid-4 {
        grid-template-columns: repeat(2, 1fr);
    }
}

.gplus-ai-step {
    background: var(--gf-white);
    border: 1px solid var(--gf-border);
    border-radius: var(--gf-radius);
    padding: 1.5rem 1rem;
    text-align: center;
}

.gplus-ai-step-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: var(--gf-gold);
    color: var(--gf-white);
    font-size: 1.25rem;
    font-weight: 700;
    border-radius: 50%;
    margin-bottom: 1rem;
}

.gplus-ai-step h4 {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--gf-primary-text);
    margin: 0 0 0.5rem;
    font-family: var(--gf-font);
}

.gplus-ai-step p {
    font-size: 0.85rem;
    color: var(--gf-muted);
    margin: 0;
    line-height: 1.5;
}

/* ==========================================================================
   LOGIN/ACCESS MESSAGES
   ========================================================================== */

.gplus-ai-login-required,
.gplus-ai-member-only,
.gplus-ai-not-configured {
    background: var(--gf-white);
    border: 1px solid var(--gf-border);
    border-radius: var(--gf-radius);
    padding: 3rem 2rem;
    text-align: center;
    box-shadow: var(--gf-shadow);
}

.gplus-ai-login-required p,
.gplus-ai-member-only p,
.gplus-ai-not-configured p {
    color: var(--gf-primary-text);
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
}

.gplus-ai-login-required .button,
.gplus-ai-not-configured .button {
    background: var(--gf-gold) !important;
    color: var(--gf-white) !important;
    padding: 0 1.5rem !important;
    line-height: 2.4em !important;
    border-radius: var(--gf-radius) !important;
    text-decoration: none !important;
    font-weight: bolder !important;
    text-transform: uppercase !important;
    letter-spacing: 0.03em !important;
    transition: var(--gf-transition) !important;
    border: none !important;
}

.gplus-ai-login-required .button:hover,
.gplus-ai-not-configured .button:hover {
    background: var(--gf-gold-hover) !important;
    transform: translateY(-2px);
}

/* ==========================================================================
   UPLOAD AREA
   ========================================================================== */

.gplus-ai-upload-area {
    background: var(--gf-white);
    border: 2px dashed var(--gf-border);
    border-radius: var(--gf-radius);
    padding: 4rem 2rem;
    text-align: center;
    cursor: pointer;
    transition: var(--gf-transition-smooth);
    position: relative;
    overflow: hidden;
}

.gplus-ai-upload-area::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--gf-gold-light);
    opacity: 0;
    transition: var(--gf-transition-smooth);
}

.gplus-ai-upload-area:hover,
.gplus-ai-upload-area.dragover {
    border-color: var(--gf-gold);
    transform: scale(1.01);
}

.gplus-ai-upload-area.dragover::before {
    opacity: 0.5;
}

.gplus-ai-upload-icon {
    margin-bottom: 1.5rem;
    color: var(--gf-gold);
}

.gplus-ai-upload-icon svg {
    opacity: 0.9;
}

.gplus-ai-upload-area h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--gf-primary-text);
    margin: 0 0 0.75rem;
    letter-spacing: -0.02em;
    font-family: var(--gf-font);
}

.gplus-ai-upload-text {
    color: var(--gf-muted);
    font-size: 1rem;
    margin: 0 0 1rem;
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
}

.gplus-ai-upload-or {
    color: var(--gf-muted);
    font-size: 0.875rem;
    margin: 0 0 1rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

/* Browse Button - Primary Gold CTA */
.gplus-ai-browse-btn {
    display: inline-block;
    background: var(--gf-gold) !important;
    color: var(--gf-white) !important;
    padding: 0 1.5rem !important;
    line-height: 2.4em !important;
    border-radius: var(--gf-radius) !important;
    font-weight: bolder !important;
    text-transform: uppercase !important;
    letter-spacing: 0.03em !important;
    cursor: pointer;
    transition: var(--gf-transition) !important;
    border: none !important;
    font-size: 1rem !important;
}

.gplus-ai-browse-btn:hover {
    background: var(--gf-gold-hover) !important;
    transform: translateY(-2px);
    box-shadow: var(--gf-shadow);
}

.gplus-ai-upload-hint {
    color: var(--gf-muted);
    font-size: 0.8rem;
    margin: 1.25rem 0 0;
    opacity: 0.8;
}

/* ==========================================================================
   PREVIEW AREA
   ========================================================================== */

.gplus-ai-preview {
    position: relative;
    border-radius: var(--gf-radius);
    overflow: hidden;
    box-shadow: var(--gf-shadow);
    background: var(--gf-bg-light); /* Light background instead of black */
    margin-bottom: 2rem;
    width: 50%; /* 50% width on desktop */
    margin-left: auto; /* Center horizontally */
    margin-right: auto; /* Center horizontally */
    border: 1px solid var(--gf-border);
}

.gplus-ai-preview img {
    display: block;
    width: 100%;
    height: auto; /* No height constraint */
    object-fit: contain;
}

.gplus-ai-remove-btn {
    position: absolute;
    top: 1rem;
    right: 1rem;
    width: 40px;
    height: 40px;
    background: rgba(0, 0, 0, 0.6);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--gf-transition);
    color: var(--gf-white);
    backdrop-filter: blur(4px);
}

.gplus-ai-remove-btn:hover {
    background: var(--gf-error);
    transform: scale(1.1);
}

/* ==========================================================================
   LOADING STATE
   ========================================================================== */

.gplus-ai-loading {
    background: var(--gf-white);
    border-radius: var(--gf-radius);
    padding: 4rem 2rem;
    text-align: center;
    box-shadow: var(--gf-shadow);
}

.gplus-ai-spinner {
    width: 56px;
    height: 56px;
    border: 3px solid var(--gf-border);
    border-top-color: var(--gf-gold);
    border-radius: 50%;
    animation: gplus-spin 1s linear infinite;
    margin: 0 auto 1.5rem;
}

@keyframes gplus-spin {
    to { transform: rotate(360deg); }
}

.gplus-ai-loading p {
    color: var(--gf-primary-text);
    font-size: 1.1rem;
    margin: 0;
    font-weight: 500;
}

/* ==========================================================================
   ERROR STATE
   ========================================================================== */

.gplus-ai-error {
    background: #fff5f5;
    border: 1px solid #f5c6cb;
    border-radius: var(--gf-radius);
    padding: 2.5rem 2rem;
    text-align: center;
}

.gplus-ai-error p {
    color: var(--gf-error);
    font-size: 1rem;
    margin: 0 0 1.5rem;
}

.gplus-ai-error .button {
    background: var(--gf-gold) !important;
    color: var(--gf-white) !important;
    border: none !important;
    padding: 0 1.5rem !important;
    line-height: 2.4em !important;
    border-radius: var(--gf-radius) !important;
    cursor: pointer;
    transition: var(--gf-transition) !important;
    font-weight: bolder !important;
    text-transform: uppercase !important;
}

.gplus-ai-error .button:hover {
    background: var(--gf-gold-hover) !important;
}

/* ==========================================================================
   RESULTS SECTION
   ========================================================================== */

.gplus-ai-results {
    animation: gplus-fade-in 0.5s ease;
}

@keyframes gplus-fade-in {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ==========================================================================
   ANALYSIS CARD
   Clean, light design matching site style
   ========================================================================== */

.gplus-ai-analysis {
    background: var(--gf-white);
    border: 1px solid var(--gf-border);
    border-radius: var(--gf-radius);
    padding: 1.5rem 2rem;
    margin-bottom: 2rem;
    box-shadow: var(--gf-shadow);
}

.gplus-ai-analysis-header {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
    padding-bottom: 0.75rem;
    border-bottom: 2px solid var(--gf-gold);
}

.gplus-ai-analysis-header svg {
    color: var(--gf-gold);
    flex-shrink: 0;
}

.gplus-ai-analysis-header h4 {
    margin: 0;
    font-size: 1rem;
    font-weight: 600;
    color: var(--gf-primary-text);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-family: var(--gf-font);
}

.gplus-ai-analysis-summary {
    font-size: 1rem;
    line-height: 1.7;
    margin: 0 0 1.25rem;
    color: var(--gf-body-text);
}

.gplus-ai-analysis-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.gplus-ai-tag {
    background: var(--gf-bg-light);
    color: var(--gf-primary-text);
    padding: 0.375rem 0.875rem;
    border-radius: var(--gf-radius);
    font-size: 0.8rem;
    font-weight: 500;
    border: 1px solid var(--gf-border);
}

.gplus-ai-tag:first-child {
    background: var(--gf-gold);
    color: var(--gf-white);
    border-color: var(--gf-gold);
    font-weight: 600;
}

/* ==========================================================================
   PRODUCTS GRID
   Exactly matches Flatsome/WooCommerce category pages - 5 columns
   ========================================================================== */

.gplus-ai-results h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--gf-primary-text);
    margin: 0 0 1.5rem;
    text-transform: uppercase;
    letter-spacing: 0.03em;
    font-family: var(--gf-font);
}

.gplus-ai-products {
    margin-bottom: 2rem;
}

/* Flatsome-style row */
.gplus-ai-products-grid {
    display: flex !important;
    flex-wrap: wrap !important;
    margin-left: -15px;
    margin-right: -15px;
    width: 100%;
}

/* Flatsome product-small col - 5 columns */
.gplus-ai-product-card {
    width: 20% !important; /* 5 columns */
    max-width: 20% !important;
    flex: 0 0 20% !important;
    padding-left: 15px;
    padding-right: 15px;
    margin-bottom: 30px;
    text-align: center;
    box-sizing: border-box !important;
}

.gplus-ai-product-card .col-inner {
    height: 100%;
}

/* Product image - Flatsome box-image style */
.gplus-ai-product-image {
    position: relative;
    background: #f8f9fa; /* Fallback if CSS var not loaded */
    background: var(--gf-bg-light, #f8f9fa);
    overflow: hidden;
    margin-bottom: 0;
}

.gplus-ai-product-image a {
    display: block;
    text-decoration: none;
}

.gplus-ai-product-image img {
    width: 100% !important;
    max-width: 100% !important;
    height: auto !important;
    display: block;
    transition: opacity 0.3s ease;
}

.gplus-ai-product-card:hover .gplus-ai-product-image img {
    opacity: 0.9;
}

/* ==========================================================================
   ADD TO PROJECT DROPDOWN
   Positioned directly below the image, styled like child theme buttons
   ========================================================================== */

.gplus-ai-product-actions {
    padding: 8px 0;
}

.gplus-ai-project-select {
    width: 100%;
    padding: 0 1.2em;
    height: auto;
    line-height: 2.4em;
    font-size: 0.75rem;
    border: 2px solid var(--gf-gold);
    border-radius: 10px; /* Child theme button radius */
    background: var(--gf-white);
    color: var(--gf-gold);
    font-weight: bolder; /* Child theme button weight */
    text-transform: uppercase;
    text-align: center;
    text-align-last: center;
    letter-spacing: 0.03em;
    cursor: pointer;
    transition: var(--gf-transition);
    appearance: none;
    -webkit-appearance: none;
    -moz-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='%23edbe00' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 10px center;
    white-space: nowrap; /* Child theme button style */
}

.gplus-ai-project-select:hover {
    background-color: var(--gf-gold-light);
}

.gplus-ai-project-select:focus {
    outline: none;
    border-color: var(--gf-gold-hover);
    box-shadow: 0 0 0 2px rgba(237, 190, 0, 0.2);
}

.gplus-ai-project-select option {
    color: var(--gf-primary-text);
    text-transform: none;
    text-align: left;
}

/* ==========================================================================
   PRODUCT INFO - Flatsome box-text style
   ========================================================================== */

.gplus-ai-product-info {
    padding: 0.875rem 0 0;
    text-align: center;
}

.gplus-ai-product-info a {
    text-decoration: none;
    color: inherit;
}

.gplus-ai-product-name {
    font-size: 0.9rem;
    font-weight: 400;
    color: var(--gf-primary-text);
    margin: 0 0 0.375rem;
    line-height: 1.4;
    text-decoration: none;
    transition: color 0.2s ease;
}

.gplus-ai-product-card:hover .gplus-ai-product-name {
    color: var(--gf-gold);
}

.gplus-ai-product-price {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--gf-primary-text);
    line-height: 1.4;
    margin-bottom: 0.25rem;
}

.gplus-ai-product-price del {
    color: var(--gf-muted);
    font-weight: 400;
    font-size: 0.85rem;
    margin-right: 0.25rem;
}

.gplus-ai-product-price ins {
    text-decoration: none;
    color: var(--gf-primary-text);
    font-weight: 600;
}

.gplus-ai-product-price .gplus-ex-vat {
    color: var(--gf-muted);
    font-weight: 400;
    font-size: 0.75rem;
    display: inline;
}

.gplus-ai-product-price .woocommerce-Price-amount {
    font-size: inherit;
}

/* Grosvenor+ discount badge - matches main site */
.gplus-ai-discount-badge {
    display: block;
    color: #1a472a;
    font-size: 12px;
    font-weight: 600;
    margin-top: 4px;
}

/* ==========================================================================
   TOAST NOTIFICATIONS
   ========================================================================== */

.gplus-ai-toast {
    position: fixed;
    bottom: 20px;
    right: 20px;
    padding: 1rem 1.5rem;
    border-radius: var(--gf-radius);
    color: var(--gf-white);
    font-size: 0.9rem;
    font-weight: 500;
    z-index: 10000;
    animation: gplus-toast-in 0.3s ease;
    box-shadow: var(--gf-shadow-lg);
}

.gplus-ai-toast.success {
    background: var(--gf-success);
}

.gplus-ai-toast.error {
    background: var(--gf-error);
}

.gplus-ai-toast.info {
    background: var(--gf-primary-text);
}

@keyframes gplus-toast-in {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ==========================================================================
   ANALYSE ANOTHER IMAGE BUTTONS (Secondary/Outline Style)
   ========================================================================== */

/* Wrapper for centered buttons */
.gplus-ai-button-wrapper {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    width: 100%;
    margin: 1rem 0 2rem;
}

.gplus-ai-button-wrapper.bottom {
    margin: 2rem 0 0;
}

/* Remove container margin when inside button wrapper */
.gplus-ai-button-wrapper .gplus-ai-save-mood-board-container {
    margin: 0;
}

/* Shared button styles */
.gplus-ai-new-search,
.gplus-ai-new-search-inline {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: var(--gf-white) !important;
    color: var(--gf-gold) !important;
    border: 2px solid var(--gf-gold) !important;
    padding: 12px 26px !important; /* Reduced by 2px to account for border */
    font-size: 1rem !important;
    border-radius: var(--gf-radius) !important;
    font-weight: 600 !important;
    text-transform: uppercase !important;
    letter-spacing: 0.03em !important;
    cursor: pointer;
    transition: var(--gf-transition) !important;
    box-sizing: border-box !important;
    text-align: center;
    white-space: nowrap;
    width: 25%;
    min-width: 200px;
}

.gplus-ai-new-search:hover,
.gplus-ai-new-search-inline:hover {
    background: var(--gf-gold) !important;
    color: var(--gf-white) !important;
}

/* ==========================================================================
   NO PRODUCTS STATE
   ========================================================================== */

.gplus-ai-no-products {
    text-align: center;
    padding: 3rem 2rem;
    background: var(--gf-bg-light);
    border-radius: var(--gf-radius);
}

.gplus-ai-no-products p {
    color: var(--gf-muted);
    font-size: 1rem;
    margin: 0;
}

/* ==========================================================================
   RESPONSIVE - Flatsome-style breakpoints
   ========================================================================== */

/* Large screens - 4 columns */
@media (max-width: 1200px) {
    .gplus-ai-product-card {
        width: 25% !important; /* 4 columns */
        max-width: 25% !important;
        flex: 0 0 25% !important;
    }
}

/* Medium screens - 3 columns */
@media (max-width: 900px) {
    .gplus-ai-product-card {
        width: 33.333% !important; /* 3 columns */
        max-width: 33.333% !important;
        flex: 0 0 33.333% !important;
    }
}

@media (max-width: 768px) {
    .gplus-ai-matcher {
        max-width: 100%; /* Full width on mobile */
        margin: 1rem;
        padding-left: 15px;
        padding-right: 15px;
    }

    .gplus-ai-steps-grid {
        grid-template-columns: 1fr; /* Stack vertically on mobile */
        gap: 1rem;
    }

    .gplus-ai-step {
        padding: 1.25rem 1rem;
    }

    .gplus-ai-preview {
        width: 100%; /* Full width on mobile */
    }

    .gplus-ai-upload-area {
        padding: 3rem 1.5rem;
    }

    .gplus-ai-upload-area h3 {
        font-size: 1.25rem;
    }

    /* Tablet - 2 columns */
    .gplus-ai-product-card {
        width: 50%; /* 2 columns */
        padding-left: 10px;
        padding-right: 10px;
        margin-bottom: 20px;
    }

    .gplus-ai-products-grid {
        margin-left: -10px;
        margin-right: -10px;
    }

    .gplus-ai-analysis {
        padding: 1.5rem;
    }

    .gplus-ai-toast {
        left: 20px;
        right: 20px;
        bottom: 10px;
    }
    
    /* Buttons - wider on mobile */
    .gplus-ai-new-search,
    .gplus-ai-new-search-inline {
        width: 100%;
    }
}

@media (max-width: 480px) {
    /* Mobile - 2 columns like Flatsome */
    .gplus-ai-product-card {
        width: 50% !important; /* Still 2 columns on small mobile */
        max-width: 50% !important;
        flex: 0 0 50% !important;
    }
    
    .gplus-ai-project-select {
        font-size: 0.65rem;
        padding: 0 1.5em 0 0.5em;
        height: 32px;
        line-height: 32px;
    }
}

/* ==========================================================================
   SAVE TO PROJECT BUTTON
   ========================================================================== */

.gplus-ai-save-mood-board-container {
    text-align: center;
    margin: 1.5rem 0;
}

.gplus-ai-save-mood-board {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px !important;
    font-size: 1rem !important;
    font-weight: 600;
    background: var(--gf-gold) !important;
    border: none !important;
    color: #fff !important;
    border-radius: var(--gf-radius) !important;
    cursor: pointer;
    transition: all 0.2s ease;
    box-sizing: border-box !important;
}

.gplus-ai-save-mood-board:hover:not(:disabled) {
    background: var(--gf-gold-hover) !important;
    border-color: var(--gf-gold-hover) !important;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(237, 190, 0, 0.3);
}

.gplus-ai-save-mood-board:disabled {
    opacity: 0.7;
    cursor: not-allowed;
}

.gplus-ai-save-mood-board.saved {
    background: var(--gf-success) !important;
    border-color: var(--gf-success) !important;
}

.gplus-ai-save-mood-board svg {
    flex-shrink: 0;
}

.gplus-ai-save-hint {
    margin: 8px 0 0;
    font-size: 0.85rem;
    color: var(--gf-muted);
}

/* Save Mood Board Modal */
#gplus-save-mood-board-modal .gplus-modal-hint {
    display: block;
    margin-top: 6px;
    font-size: 0.85rem;
    color: var(--gf-muted);
}

/* Added to Project success message */
.gplus-ai-added-to-project {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 12px;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--gf-success);
    background: rgba(92, 184, 92, 0.1);
    border-radius: var(--gf-radius);
}

.gplus-ai-added-to-project svg {
    flex-shrink: 0;
}

.gplus-ai-view-project-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-left: 10px;
    padding: 14px 20px !important;
    font-size: 0.9rem !important;
    background: var(--gf-gold) !important;
    border-color: var(--gf-gold) !important;
    color: #fff !important;
    border-radius: var(--gf-radius) !important;
}

.gplus-ai-view-project-btn:hover {
    background: var(--gf-gold-hover) !important;
    border-color: var(--gf-gold-hover) !important;
}

@media (max-width: 768px) {
    .gplus-ai-save-mood-board,
    .gplus-ai-view-project-btn {
        display: flex;
        width: 100%;
        justify-content: center;
        margin: 10px 0;
    }
    
    .gplus-ai-view-project-btn {
        margin-left: 0;
    }
}
