/**
 * HID Simple Commerce - Public Styles
 * Premium Velvet Rouge Theme
 */

:root {
    --velvet-rouge: #470108;
    --warm-gold: #B4A06A;
    --cream-linen: #F8F4E9;
    --lagoon-slate: #3a5a8b;
    --white: #FFFFFF;
    
    --font-header: 'Dancing Script', cursive;
    --font-body: 'Montserrat', sans-serif;
}

/* General Styles */
.hid-commerce-shop,
.hid-products-grid,
.hid-order-confirmation,
.hid-order-lookup {
    font-family: var(--font-body);
    color: #333;
}

/* Prevent horizontal overflow */
body.page .house-of-veloria-container {
    overflow-x: hidden;
}

.hid-commerce-shop {
    overflow-x: hidden;
}

.hid-commerce-shop * {
    max-width: 100%;
}

.hid-commerce-shop h1,
.hid-commerce-shop h2,
.hid-commerce-shop h3 {
    font-family: var(--font-header);
    color: var(--velvet-rouge);
}

/* Products Grid */
.hid-products-grid {
    display: grid;
    gap: 30px;
    margin: 0;
    width: 100%;
}

.hid-products-grid.columns-1 {
    grid-template-columns: 1fr;
}

.hid-products-grid.columns-2 {
    grid-template-columns: repeat(2, 1fr);
}

.hid-products-grid.columns-3 {
    grid-template-columns: repeat(3, 1fr);
}

.hid-products-grid.columns-4 {
    grid-template-columns: repeat(4, 1fr);
}

/* Product Card */
.hid-product-card {
    background: var(--white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(71, 1, 8, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.hid-product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(71, 1, 8, 0.2);
}

.hid-product-image {
    position: relative;
    width: 100%;
    padding-top: 100%;
    background: var(--cream-linen);
    overflow: hidden;
}

.hid-product-image img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.hid-product-card:hover .hid-product-image img {
    transform: scale(1.05);
}

.hid-featured-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    background: var(--warm-gold);
    color: var(--white);
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
}

.hid-product-info {
    padding: 20px;
}

.hid-product-title {
    font-size: 20px;
    margin: 0 0 10px 0;
    color: var(--velvet-rouge);
}

.hid-product-price {
    margin: 10px 0;
    font-size: 24px;
    font-weight: 700;
    color: var(--lagoon-slate);
}

.hid-price-regular {
    text-decoration: line-through;
    color: #999;
    font-size: 18px;
    margin-right: 10px;
}

.hid-price-sale {
    color: var(--warm-gold);
}

.hid-stock-status {
    margin: 10px 0;
    font-size: 14px;
}

.stock-status.in-stock {
    color: #46b450;
}

.stock-status.low-stock {
    color: #f0b429;
}

.stock-status.out-of-stock {
    color: #dc3232;
}

/* Buttons */
.hid-button-primary,
.hid-button-secondary,
.hid-button-large {
    font-family: var(--font-body);
    padding: 12px 30px;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-size: 16px;
    font-weight: 600;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.hid-button-primary {
    background: linear-gradient(135deg, var(--velvet-rouge), #6a0210);
    color: var(--white);
    box-shadow: 0 4px 15px rgba(71, 1, 8, 0.3);
}

.hid-button-primary:hover {
    background: linear-gradient(135deg, #6a0210, var(--velvet-rouge));
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(71, 1, 8, 0.4);
}

.hid-button-secondary {
    background: var(--warm-gold);
    color: var(--white);
}

.hid-button-secondary:hover {
    background: #9a8555;
}

.hid-button-large {
    padding: 15px 40px;
    font-size: 18px;
    width: 100%;
}

.hid-button-disabled {
    background: #ccc;
    color: #666;
    padding: 12px 30px;
    border: none;
    border-radius: 6px;
    cursor: not-allowed;
}

/* Add to Cart Wrapper */
.hid-add-to-cart-wrapper {
    display: flex;
    gap: 10px;
    align-items: stretch;
}

.hid-quantity-input {
    width: 60px;
    padding: 12px;
    border: 2px solid var(--cream-linen);
    border-radius: 6px;
    font-size: 16px;
    text-align: center;
}

.hid-add-to-cart-wrapper .hid-button-primary {
    flex: 1;
}

/* Search and Filter Bar */
.hid-search-filter-bar {
    background: var(--white);
    padding: 20px;
    border-radius: 12px;
    margin-bottom: 30px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.hid-search-box input {
    width: 100%;
    padding: 15px;
    border: 2px solid var(--cream-linen);
    border-radius: 8px;
    font-size: 16px;
    font-family: var(--font-body);
    margin-bottom: 15px;
}

.hid-search-box input:focus {
    border-color: var(--velvet-rouge);
    outline: none;
}

.hid-filter-controls {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    align-items: center;
}

.hid-filter-controls select {
    flex: 1;
    min-width: 150px;
    padding: 12px 16px;
    border: 2px solid var(--cream-linen);
    border-radius: 8px;
    font-family: var(--font-body);
    font-size: 14px;
    background: var(--white);
    cursor: pointer;
    transition: all 0.3s ease;
}

.hid-filter-controls select:hover,
.hid-filter-controls select:focus {
    border-color: var(--warm-gold);
    outline: none;
}

.hid-filter-controls .hid-button-secondary {
    padding: 12px 24px;
    background: var(--cream-linen);
    border: 2px solid var(--warm-gold);
    color: var(--velvet-rouge);
    border-radius: 8px;
    cursor: pointer;
    font-weight: 500;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.hid-filter-controls .hid-button-secondary:hover {
    background: var(--warm-gold);
    color: var(--white);
}

.hid-filter-controls .hid-button-primary {
    padding: 12px 24px;
    min-width: auto;
    white-space: nowrap;
}

/* Shop Container */
.hid-commerce-shop {
    max-width: 1400px;
    margin: 0 auto;
    padding: 2rem 20px !important;
}

/* No Products Message */
.hid-no-products {
    grid-column: 1 / -1; /* Span all columns */
    text-align: center;
    padding: 60px 20px;
    background: var(--cream-linen);
    border-radius: 12px;
    margin: 20px 0;
}

.hid-no-products p {
    font-size: 18px;
    color: var(--velvet-rouge);
    margin: 0;
}

/* Loading Indicator */
.hid-loading {
    grid-column: 1 / -1; /* Span all columns */
    text-align: center;
    padding: 60px 20px;
}

.hid-loading i {
    font-size: 48px;
    color: var(--velvet-rouge);
    animation: spin 1s linear infinite;
}

.hid-loading p {
    margin-top: 20px;
    font-size: 16px;
    color: #666;
}

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

/* Shop Header */
.hid-shop-header {
    margin-bottom: 2rem;
}

/* Search and Filter Bar */
.hid-search-filter-bar {
    background: var(--white);
    padding: 1.5rem;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    margin-bottom: 1rem;
}

.hid-search-box {
    margin-bottom: 1rem;
    display: flex;
    gap: 10px;
    align-items: stretch;
}

.hid-search-box input {
    flex: 1;
    padding: 12px 20px;
    border: 2px solid var(--cream-linen);
    border-radius: 8px;
    font-size: 16px;
    transition: border-color 0.3s ease;
}

.hid-search-box #hid-search-button {
    padding: 12px 24px;
    white-space: nowrap;
    min-width: auto;
}

.hid-search-box input:focus {
    outline: none;
    border-color: var(--warm-gold);
}

/* Shop Content */
.hid-shop-content {
    display: grid;
    grid-template-columns: 1fr 350px;
    gap: 30px;
    align-items: start;
}

.hid-products-area {
    width: 100%;
    display: flex;
    flex-direction: column;
}

/* Cart Sidebar */
.hid-cart-sidebar {
    background: var(--white);
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    height: fit-content;
    position: sticky;
    top: calc(var(--header-height) + 20px);
    border: 2px solid var(--cream-linen);
}

.hid-cart-sidebar h3 {
    margin-top: 0;
    font-size: 24px;
    color: var(--velvet-rouge);
}

.cart-count {
    font-family: var(--font-body);
    font-size: 18px;
    color: var(--warm-gold);
}

#hid-cart-items {
    margin: 20px 0;
}

.hid-cart-item {
    display: flex;
    gap: 10px;
    padding: 15px 0;
    border-bottom: 1px solid var(--cream-linen);
}

.hid-cart-item-image {
    width: 60px;
    height: 60px;
    border-radius: 8px;
    overflow: hidden;
}

.hid-cart-item-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hid-cart-item-info {
    flex: 1;
}

.hid-cart-item-name {
    font-weight: 600;
    margin-bottom: 5px;
}

.hid-cart-item-price {
    color: var(--lagoon-slate);
    font-weight: 600;
}

.hid-cart-item-actions {
    display: flex;
    gap: 5px;
    margin-top: 5px;
}

.hid-cart-item-actions input {
    width: 50px;
    padding: 5px;
    border: 1px solid var(--cream-linen);
    border-radius: 4px;
}

.hid-remove-item {
    color: #dc3232;
    background: none;
    border: none;
    cursor: pointer;
    font-size: 12px;
}

/* Cart Totals */
#hid-cart-totals {
    padding: 20px 0;
    border-top: 2px solid var(--velvet-rouge);
}

.hid-total-row {
    display: flex;
    justify-content: space-between;
    margin: 10px 0;
}

.hid-total-row.grand-total {
    font-size: 24px;
    font-weight: 700;
    color: var(--velvet-rouge);
}

/* Modal */
.hid-modal {
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(71, 1, 8, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
}

.hid-modal-content {
    background-color: var(--white);
    padding: 40px;
    border-radius: 12px;
    max-width: 700px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
}

/* Custom Scrollbar for Checkout Modal */
.hid-modal-content::-webkit-scrollbar {
    width: 12px;
}

.hid-modal-content::-webkit-scrollbar-track {
    background: var(--cream-linen);
    border-radius: 10px;
    margin: 10px 0;
}

.hid-modal-content::-webkit-scrollbar-thumb {
    background: var(--warm-gold);
    border-radius: 10px;
    border: 3px solid var(--cream-linen);
    transition: background 0.3s ease;
}

.hid-modal-content::-webkit-scrollbar-thumb:hover {
    background: var(--velvet-rouge);
}

/* Firefox Scrollbar */
.hid-modal-content {
    scrollbar-width: thin;
    scrollbar-color: var(--warm-gold) var(--cream-linen);
}

.hid-modal-close {
    position: absolute;
    top: 20px;
    right: 30px;
    font-size: 36px;
    font-weight: bold;
    color: var(--velvet-rouge);
    cursor: pointer;
}

.hid-modal-close:hover {
    color: var(--warm-gold);
}

/* Form Styles */
.hid-form-section {
    margin: 30px 0;
    padding: 25px;
    background: #fafafa;
    border-radius: 10px;
    border-left: 4px solid var(--warm-gold);
}

.hid-form-section h3 {
    font-size: 22px;
    margin-bottom: 20px;
    margin-top: 0;
    color: var(--velvet-rouge);
    display: flex;
    align-items: center;
    gap: 10px;
}

.hid-form-section h3::before {
    content: '';
    width: 30px;
    height: 3px;
    background: var(--warm-gold);
    display: inline-block;
}

.hid-form-row {
    margin-bottom: 20px;
}

.hid-form-row label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--velvet-rouge);
    font-size: 15px;
}

.hid-form-row input,
.hid-form-row textarea,
.hid-form-row select {
    width: 100%;
    padding: 14px 16px;
    border: 2px solid var(--cream-linen);
    border-radius: 8px;
    font-family: var(--font-body);
    font-size: 16px;
    background: var(--white);
    transition: all 0.3s ease;
}

.hid-form-row input:focus,
.hid-form-row textarea:focus,
.hid-form-row select:focus {
    border-color: var(--warm-gold);
    outline: none;
    box-shadow: 0 0 0 3px rgba(180, 160, 106, 0.1);
}

.hid-form-row textarea {
    min-height: 100px;
    resize: vertical;
}

.hid-notice {
    background: var(--cream-linen);
    padding: 15px;
    border-radius: 6px;
    font-size: 14px;
    color: var(--velvet-rouge);
}

/* Payment Methods */
.hid-payment-method {
    padding: 15px;
    border: 2px solid var(--cream-linen);
    border-radius: 8px;
    margin-bottom: 10px;
    transition: all 0.3s ease;
}

.hid-payment-method:hover {
    border-color: var(--warm-gold);
}

.hid-payment-method label {
    display: flex;
    align-items: flex-start;
    cursor: pointer;
}

.hid-payment-method input[type="radio"] {
    margin-top: 5px;
    margin-right: 15px;
}

.payment-desc {
    display: block;
    font-size: 14px;
    color: #666;
    margin-top: 5px;
}

.hid-bank-details {
    background: var(--cream-linen);
    padding: 20px;
    border-radius: 8px;
    margin: 15px 0;
}

/* Order Confirmation */
.hid-order-confirmation {
    max-width: 800px;
    margin: 0 auto;
}

.hid-confirmation-header {
    text-align: center;
    padding: 40px 0;
    background: var(--cream-linen);
    border-radius: 12px;
    margin-bottom: 30px;
}

.hid-confirmation-header h2 {
    font-size: 42px;
    margin: 0;
    color: var(--velvet-rouge);
}

.hid-order-details,
.hid-order-items {
    background: var(--white);
    padding: 30px;
    border-radius: 12px;
    margin-bottom: 30px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.hid-table-wrapper {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    margin: 20px 0;
}

.hid-order-items table {
    width: 100%;
    border-collapse: collapse;
    min-width: 500px;
}

.hid-order-items table th,
.hid-order-items table td {
    padding: 15px;
    text-align: left;
    border-bottom: 1px solid var(--cream-linen);
    white-space: nowrap;
}

.hid-order-items table th {
    background: var(--cream-linen);
    color: var(--velvet-rouge);
    font-weight: 700;
}

.hid-order-items table tfoot td {
    font-weight: 700;
}

/* Track Your Order Button */
.hid-tracking-info {
    text-align: center;
    margin-top: 30px;
    padding-top: 30px;
    border-top: 2px solid var(--cream-linen);
}

.hid-tracking-info .hid-button-primary {
    display: inline-block;
    padding: 15px 40px;
    font-size: 18px;
    background: var(--velvet-rouge);
    color: #ffffff !important;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    transition: all 0.3s ease;
    border: 2px solid var(--velvet-rouge);
}

.hid-tracking-info .hid-button-primary:hover {
    background: #6a0210;
    border-color: #6a0210;
    color: #ffffff !important;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(71, 1, 8, 0.3);
}

/* Mobile table scroll indicator */
@media (max-width: 768px) {
    .hid-table-wrapper {
        position: relative;
    }
    
    .hid-table-wrapper::after {
        content: '← Scroll for more →';
        display: block;
        text-align: center;
        padding: 10px;
        font-size: 12px;
        color: var(--velvet-rouge);
        font-weight: 600;
    }
    
    .hid-order-items table th,
    .hid-order-items table td {
        padding: 10px;
        font-size: 14px;
    }
}

/* Order Lookup */
.hid-order-lookup {
    max-width: 600px;
    margin: 0 auto;
}

.hid-order-lookup-form {
    background: var(--white);
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.hid-error {
    background: #dc3232;
    color: var(--white);
    padding: 15px;
    border-radius: 6px;
    margin-bottom: 20px;
}

/* Loading Spinner */
.hid-loading {
    display: inline-block;
    width: 20px;
    height: 20px;
    border: 3px solid var(--cream-linen);
    border-radius: 50%;
    border-top-color: var(--velvet-rouge);
    animation: spin 1s ease-in-out infinite;
}

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

/* Responsive Design */
@media (max-width: 1024px) {
    .hid-products-grid.columns-3,
    .hid-products-grid.columns-4 {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .hid-shop-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .hid-cart-sidebar {
        position: static;
        order: -1;
    }
    
    .hid-commerce-shop {
        padding: 1.5rem 15px !important;
    }
}

@media (max-width: 768px) {
    /* Prevent horizontal scroll on mobile */
    .hid-commerce-shop {
        padding: 1.5rem 10px !important;
        overflow-x: hidden;
    }
    
    .hid-shop-content {
        overflow-x: hidden;
        width: 100%;
    }
    
    .hid-products-area {
        overflow-x: hidden;
        width: 100%;
    }
    
    .hid-search-filter-bar {
        padding: 1rem;
        overflow-x: hidden;
    }
    
    .hid-products-grid.columns-3,
    .hid-products-grid.columns-4 {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .hid-filter-controls {
        flex-direction: column;
        gap: 10px;
    }
    
    .hid-filter-controls select,
    .hid-filter-controls .hid-button-secondary,
    .hid-filter-controls .hid-button-primary {
        width: 100%;
        min-width: unset;
    }
    
    .hid-search-box {
        flex-direction: column;
    }
    
    .hid-search-box input,
    .hid-search-box #hid-search-button {
        width: 100%;
    }
    
    .hid-search-filter-bar {
        padding: 1rem;
    }
    
    .hid-modal-content {
        padding: 20px;
        width: 95%;
    }
}

@media (max-width: 480px) {
    .hid-products-grid.columns-2,
    .hid-products-grid.columns-3,
    .hid-products-grid.columns-4 {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .hid-add-to-cart-wrapper {
        flex-direction: column;
    }
    
    .hid-quantity-input {
        width: 100%;
    }
    
    .hid-commerce-shop {
        padding: 1rem 10px !important;
    }
    
    .hid-search-filter-bar {
        padding: 0.75rem;
    }
    
    /* Modal Responsive Styling */
    .hid-modal-content {
        width: 95%;
        padding: 25px 15px;
        max-height: 85vh;
    }
    
    .hid-modal-close {
        top: 10px;
        right: 15px;
        font-size: 28px;
    }
    
    .hid-form-section {
        padding: 20px 15px;
        margin: 20px 0;
    }
    
    .hid-form-section h3 {
        font-size: 18px;
    }
    
    .hid-form-row input,
    .hid-form-row textarea,
    .hid-form-row select {
        padding: 12px 14px;
        font-size: 15px;
    }
    
    .hid-form-row label {
        font-size: 14px;
    }
}


/* ========================================
   CAPTCHA POPUP
======================================== */
/* Contact and jewelry request forms use the standard .hid-modal styling 
   for consistency with the homepage newsletter captcha */

/* Captcha input styling for enhanced consistency */
.captcha-group input[type="number"] {
    font-family: var(--font-body);
}

.captcha-group input[type="number"]:focus {
    outline: none;
    border-color: var(--warm-gold) !important;
    box-shadow: 0 0 0 3px rgba(180, 160, 106, 0.1);
}

.captcha-feedback {
    font-size: 14px;
    font-weight: 500;
}

/* Captcha modal button styling - applies to both homepage newsletter and contact forms */
#contact-captcha-modal .cta-button,
#contact-captcha-form button[type="submit"],
#newsletter-captcha-modal .cta-button,
#newsletter-captcha-form button[type="submit"] {
    display: inline-block !important;
    background-color: var(--warm-gold) !important;
    color: #ffffff !important;
    padding: 15px 30px !important;
    border: 2px solid var(--warm-gold) !important;
    border-radius: 2px !important;
    font-weight: 600 !important;
    text-transform: uppercase !important;
    letter-spacing: 1px !important;
    cursor: pointer !important;
    transition: all 0.3s ease !important;
    font-size: 14px !important;
    font-family: var(--font-body) !important;
    width: 100% !important;
    margin-top: 20px !important;
    text-align: center !important;
}

#contact-captcha-modal .cta-button:hover,
#contact-captcha-form button[type="submit"]:hover,
#newsletter-captcha-modal .cta-button:hover,
#newsletter-captcha-form button[type="submit"]:hover {
    background-color: var(--velvet-rouge) !important;
    border-color: var(--velvet-rouge) !important;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(71, 1, 8, 0.3);
}

/* ========================================
   FORM FEEDBACK MESSAGES
======================================== */

.form-feedback {
    margin-top: 15px;
    padding: 12px 15px;
    border-radius: 4px;
    font-weight: 500;
    display: none;
}

.form-feedback.success {
    background: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
    display: block;
}

.form-feedback.error {
    background: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
    display: block;
}

.form-feedback.info {
    background: #d1ecf1;
    color: #0c5460;
    border: 1px solid #bee5eb;
    display: block;
}

/* ========================================
   CONTACT FORM ENHANCEMENTS
======================================== */

.contact-layout {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 40px;
    margin: 40px 0;
}

.contact-info-panel {
    background: linear-gradient(135deg, var(--deep-burgundy) 0%, #5a0110 100%);
    color: white;
    padding: 40px 30px;
    border-radius: 8px;
}

.contact-info-title {
    font-family: var(--font-header);
    font-size: 28px;
    color: var(--warm-gold);
    margin-bottom: 30px;
}

.contact-info-item {
    display: flex;
    gap: 20px;
    margin-bottom: 25px;
    padding-bottom: 25px;
    border-bottom: 1px solid rgba(180, 160, 106, 0.3);
}

.contact-info-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.contact-info-icon {
    font-size: 24px;
    color: var(--warm-gold);
    width: 30px;
    flex-shrink: 0;
}

.contact-info-text h4 {
    margin: 0 0 5px 0;
    font-size: 16px;
    color: var(--warm-gold);
}

.contact-info-text p {
    margin: 0;
    font-size: 14px;
    opacity: 0.9;
}

.contact-form-panel {
    background: white;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.request-form-section {
    background: linear-gradient(to bottom, #f9f5f0 0%, white 100%);
    padding: 60px 0;
}

.request-form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

@media (max-width: 768px) {
    .contact-layout {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .contact-info-panel,
    .contact-form-panel {
        padding: 25px 20px;
    }

    .request-form-grid {
        grid-template-columns: 1fr;
    }
}
/* Button Spinner */
.hid-spinner {
    display: inline-block;
    width: 16px;
    height: 16px;
    margin-right: 8px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    border-top-color: #fff;
    animation: hid-spin 1s ease-in-out infinite;
    vertical-align: middle;
}

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