/**
 * Component Styles
 * Alaska Gun Trader Theme
 * 
 * @package Alaska_Gun_Trader
 */

/* ==========================================
   BUTTONS
   ========================================== */
.btn,
.agt-button,
.akammo-cta-button,
button,
input[type="submit"],
.wp-block-button__link {
    display: inline-block;
    padding: 15px 30px;
    background: var(--agt-forest);
    color: var(--agt-white);
    border: none;
    border-radius: 4px;
    font-family: var(--agt-font-heading);
  font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--agt-transition);
    text-align: center;
    text-decoration: none;
}

.btn:hover,
.agt-button:hover,
.akammo-cta-button:hover,
button:hover,
input[type="submit"]:hover {
    background: var(--agt-gunmetal);
    color: var(--agt-white);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}

.btn-orange,
.agt-button-orange {
    background: var(--agt-orange);
}

.btn-orange:hover,
.agt-button-orange:hover {
    background: #C04603;
}

/* ==========================================
   FORMS
   ========================================== */
input[type="text"],
input[type="email"],
input[type="number"],
input[type="url"],
input[type="search"],
input[type="password"],
textarea,
select {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid #E0E0E0;
    border-radius: 4px;
    font-size: 15px;
    color: var(--agt-gunmetal);
    background: var(--agt-white);
    transition: var(--agt-transition);
    font-family: inherit;
}

input:focus,
textarea:focus,
select:focus {
    outline: none;
    border-color: var(--agt-forest);
  box-shadow: 0 0 0 3px rgba(46, 74, 63, 0.1);
}

textarea {
    min-height: 150px;
    resize: vertical;
}

select {
  cursor: pointer;
    appearance: none;
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="12" height="8" viewBox="0 0 12 8"><path fill="%232E4A3F" d="M1.41 0L6 4.58 10.59 0 12 1.42l-6 6-6-6z"/></svg>');
    background-repeat: no-repeat;
    background-position: right 12px center;
    padding-right: 40px;
}

label {
    display: block;
font-weight: 600;
    color: var(--agt-gunmetal);
    margin-bottom: 8px;
}

/* ==========================================
   USER ACCOUNT MENU (HEADER)
   ========================================== */
.header-user-menu {
    position: relative;
    display: inline-block;
    margin-right: 15px;
}

.user-account-link {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 15px;
    background: var(--agt-gray-light);
    border-radius: 50px;
    color: var(--agt-text);
    text-decoration: none;
    transition: var(--agt-transition);
    cursor: pointer;
}

.user-account-link:hover {
    background: var(--agt-gray-medium);
}

.user-account-link:hover .user-name {
    color: var(--agt-orange);
}

.user-avatar {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    overflow: hidden;
    border: 2px solid var(--agt-green-dark);
}

.user-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.user-name {
    font-weight: 600;
    font-size: 14px;
    max-width: 120px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.message-count {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 20px;
    height: 20px;
    padding: 0 6px;
    background: var(--agt-orange);
    color: white;
    border-radius: 10px;
    font-size: 11px;
    font-weight: 700;
}

/* Dropdown Menu */
.user-dropdown {
    position: absolute;
    top: calc(100% + 5px);
    right: 0;
    min-width: 220px;
    background: white;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 10000;
    pointer-events: none;
}

/* Add a pseudo-element to bridge the gap between trigger and dropdown */
.user-dropdown::before {
    content: '';
    position: absolute;
    top: -10px;
    left: 0;
    right: 0;
    height: 15px;
}

.header-user-menu:hover .user-dropdown,
.user-dropdown:hover {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    pointer-events: auto;
}

.user-dropdown-menu {
    list-style: none;
    margin: 0;
    padding: 10px 0;
}

.user-dropdown-menu li {
    margin: 0;
}

.user-dropdown-menu li.divider {
    height: 1px;
    background: #e0e0e0;
    margin: 8px 0;
}

.user-dropdown-menu a {
    display: block;
    padding: 12px 20px;
    color: var(--agt-gunmetal);
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: var(--agt-transition);
    position: relative;
    z-index: 1;
}

.user-dropdown-menu a .hp-icon {
    display: inline-block;
    width: 18px;
    margin-right: 12px;
    text-align: center;
    opacity: 0.7;
}

.user-dropdown-menu a .count {
    float: right;
    background: var(--agt-orange);
    color: white;
    padding: 2px 8px;
    border-radius: 10px;
    font-size: 11px;
    font-weight: 700;
    margin-left: 10px;
}

.user-dropdown-menu a:hover {
    background: rgba(46, 74, 63, 0.05);
    color: var(--agt-forest);
}

.user-dropdown-menu a.logout-link:hover {
    background: rgba(217, 79, 4, 0.05);
    color: var(--agt-orange);
}

/* Login Button (when not logged in) */
.btn-login {
    background: var(--agt-white);
    border: 2px solid var(--agt-forest);
    color: var(--agt-forest);
    padding: 10px 25px;
    margin-right: 10px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
    white-space: nowrap;
}

.btn-login:hover {
    background: var(--agt-forest);
    color: var(--agt-white);
    border-color: var(--agt-forest);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .user-name {
        display: none;
    }
    
    .user-account-link {
        padding: 8px;
        background: transparent;
    }
    
    .user-avatar {
        border-color: rgba(255, 255, 255, 0.6);
    }
    
    .btn-login {
        padding: 6px 10px;
        font-size: 12px;
        margin-right: 0;
    }
}

/* Tablet/smaller screens - scale buttons down */
@media (max-width: 992px) {
    .header-actions .btn-login,
    .header-actions .btn-post-listing {
        padding: 8px 14px;
        font-size: 13px;
    }
}

@media (max-width: 600px) {
    .header-actions .btn-login,
    .header-actions .btn-post-listing {
        padding: 6px 10px;
        font-size: 11px;
    }
}

.search-form {
    display: flex;
    gap: 10px;
    align-items: center;
}

.search-field {
    flex: 1;
}

.search-submit {
background: var(--agt-orange);
    padding: 12px 30px;
}

.search-submit:hover {
    background: var(--agt-forest);
}

/* ==========================================
   CARDS
   ========================================== */
.agt-card,
.hp-listing {
    background: var(--agt-white);
    border-radius: var(--agt-border-radius);
    overflow: hidden;
    box-shadow: var(--agt-box-shadow);
    transition: var(--agt-transition);
}

.agt-card:hover,
.hp-listing:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

.agt-card img,
.hp-listing__image {
    width: 100%;
    height: 250px;
    object-fit: cover;
    display: block;
}

.agt-card-title,
.hp-listing__title {
    font-size: 18px;
    padding: 20px;
    margin: 0;
    color: var(--agt-gunmetal);
}

.agt-card-title a,
.hp-listing__title a {
    color: var(--agt-gunmetal);
    text-decoration: none;
}

.agt-card-title a:hover,
.hp-listing__title a:hover {
    color: var(--agt-orange);
}

.agt-card-content,
.hp-listing__excerpt {
    padding: 0 20px 20px;
    color: #666;
    font-size: 14px;
    line-height: 1.6;
}

.agt-card-price,
.hp-listing__price {
    color: var(--agt-orange);
    font-size: 22px;
    font-weight: 700;
    padding: 0 20px 20px;
}

/* ==========================================
   FEATURES/BENEFITS BOXES
   ========================================== */
.agt-feature {
background: var(--agt-white);
    padding: 35px 30px;
    border-radius: 4px;
    border-top: 3px solid var(--agt-orange);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  transition: var(--agt-transition);
}

.agt-feature:hover {
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
    border-top-color: var(--agt-forest);
}

.agt-feature h3 {
    color: var(--agt-gunmetal);
    margin: 0 0 15px 0;
 font-size: 20px;
}

.agt-feature p {
    color: #555;
    font-size: 15px;
    line-height: 1.7;
    margin: 0;
}

/* ==========================================
   LEGAL NOTICES
   ========================================== */
.agt-legal-notice,
.akammo-listing-legal {
    background-color: #FFF3CD;
    border-left: 4px solid var(--agt-orange);
    padding: 15px 20px;
    margin: 20px 0;
    border-radius: 4px;
}

.agt-legal-notice strong {
    color: var(--agt-orange);
}

/* ==========================================
   UTILITY CLASSES
   ========================================== */

/* Honeypot field (anti-spam) */
.honeypot-field {
    position: absolute;
    left: -9999px;
}

/* No filters placeholder text */
.no-filters-text {
    color: #9ca3af;
    font-size: 12px;
}

/* Icon recommendation text */
.icon-recommendation {
    margin-left: 15px;
    color: #666;
    font-size: 14px;
}

/* Active filters label */
.active-filters-label {
    color: #9ca3af;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-right: 4px;
}

/* ==========================================
   LISTING QUICK VIEW MODAL - ENHANCED
   ========================================== */
.agt-quickview-modal {
    position: fixed;
    inset: 0;
    z-index: 999998;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.25s ease, visibility 0.25s ease;
}

.agt-quickview-modal.active {
    opacity: 1;
    visibility: visible;
}

.agt-quickview-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(8px);
}

.agt-quickview-container {
    position: relative;
    width: 95vw;
    height: 90vh;
    max-width: 1400px;
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 25px 100px rgba(0, 0, 0, 0.6);
    overflow: hidden;
    transform: scale(0.95);
    transition: transform 0.3s ease;
    display: flex;
    flex-direction: column;
}

.agt-quickview-modal.active .agt-quickview-container {
    transform: scale(1);
}

.agt-quickview-close {
    position: absolute;
    top: 0;
    right: 0;
    z-index: 100;
    width: 46px;
    height: 34px;
    background: transparent;
    border: none;
    border-top-right-radius: 16px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #666;
    font-size: 18px;
    font-weight: 400;
    font-family: 'Segoe UI', Arial, sans-serif;
    line-height: 1;
    transition: background-color 0.1s ease, color 0.1s ease;
}

.agt-quickview-close::before,
.agt-quickview-close::after {
    content: '';
    position: absolute;
    width: 14px;
    height: 1.5px;
    background-color: currentColor;
    top: 50%;
    left: 50%;
}

.agt-quickview-close::before {
    transform: translate(-50%, -50%) rotate(45deg);
}

.agt-quickview-close::after {
    transform: translate(-50%, -50%) rotate(-45deg);
}

/* Hide the × text character since we're using pseudo-elements */
.agt-quickview-close {
    font-size: 0;
}

.agt-quickview-close:hover {
    background: #e81123;
    color: #fff;
}

.agt-quickview-close:active {
    background: #bf0f1d;
    color: #fff;
}

/* Loader */
.agt-quickview-loader {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #0f172a;
    z-index: 50;
    transition: opacity 0.3s;
}

.agt-quickview-loader.hidden {
    opacity: 0;
    pointer-events: none;
}

.agt-quickview-spinner {
    width: 50px;
    height: 50px;
    border: 4px solid rgba(255,255,255,0.1);
    border-top-color: #D94F04;
    border-radius: 50%;
    animation: qvSpin 0.7s linear infinite;
}

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

/* Content Layout - Fixed Height */
.agt-quickview-content {
    display: grid;
    grid-template-columns: 60% 40%;
    height: 100%;
    overflow: hidden;
}

/* ==========================================
   GALLERY SECTION - CLEAN
   ========================================== */
.agt-quickview-gallery {
    background: #0a0f1a;
    display: flex;
    flex-direction: column;
    height: 100%;
    position: relative;
}

/* Main Image Container */
.agt-quickview-main-image {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.agt-quickview-main-image img {
    max-width: 100%;
    max-height: calc(90vh - 140px);
    object-fit: contain;
    user-select: none;
    -webkit-user-drag: none;
    cursor: pointer;
    transition: transform 0.15s ease-out;
}

/* Navigation Arrows - Clean Style */
.qv-nav-prev,
.qv-nav-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 44px;
    height: 44px;
    background: rgba(255, 255, 255, 0.9);
    border: none;
    border-radius: 50%;
    color: #1e293b;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    transition: all 0.2s;
    z-index: 10;
    opacity: 0;
    box-shadow: 0 2px 8px rgba(0,0,0,0.15);
}

.agt-quickview-main-image:hover .qv-nav-prev,
.agt-quickview-main-image:hover .qv-nav-next {
    opacity: 1;
}

.qv-nav-prev:hover,
.qv-nav-next:hover {
    background: #fff;
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}

.qv-nav-prev { left: 20px; }
.qv-nav-next { right: 20px; }

/* Image Counter */
.qv-image-counter {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(0, 0, 0, 0.7);
    color: #fff;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 500;
    z-index: 10;
    backdrop-filter: blur(4px);
}

/* Thumbnails Strip */
.agt-quickview-thumbs {
    display: flex;
    gap: 8px;
    padding: 12px 16px;
    overflow-x: auto;
    background: rgba(0, 0, 0, 0.4);
    justify-content: center;
    min-height: 80px;
}

.agt-quickview-thumbs:empty {
    display: none;
}

.agt-quickview-thumb {
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    border-radius: 6px;
    overflow: hidden;
    cursor: pointer;
    opacity: 0.5;
    transition: all 0.2s;
    border: 2px solid transparent;
}

.agt-quickview-thumb:hover {
    opacity: 0.8;
}

.agt-quickview-thumb.active {
    opacity: 1;
    border-color: #D94F04;
}

.agt-quickview-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* ==========================================
   DETAILS SECTION
   ========================================== */
.agt-quickview-details {
    padding: 28px;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    background: #fff;
}

.agt-quickview-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1e293b;
    margin: 0 0 12px;
    line-height: 1.3;
    padding-right: 40px;
}

.agt-quickview-price {
    font-size: 1.75rem;
    font-weight: 700;
    color: #D94F04;
    margin-bottom: 16px;
}

.agt-quickview-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 24px;
    padding-bottom: 24px;
    border-bottom: 1px solid #e2e8f0;
}

.agt-quickview-meta span {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: #64748b;
}

.agt-quickview-meta i {
    color: #94a3b8;
    font-size: 14px;
}

.agt-quickview-description {
    font-size: 15px;
    line-height: 1.8;
    color: #475569;
    margin-bottom: 24px;
    flex: 1;
    overflow-y: auto;
    max-height: 200px;
    padding-right: 8px;
}

.agt-quickview-description::-webkit-scrollbar {
    width: 6px;
}

.agt-quickview-description::-webkit-scrollbar-track {
    background: #f1f5f9;
    border-radius: 3px;
}

.agt-quickview-description::-webkit-scrollbar-thumb {
    background: #cbd5e1;
    border-radius: 3px;
}

.agt-quickview-description p {
    margin: 0 0 12px;
}

.agt-quickview-description p:last-child {
    margin-bottom: 0;
}

.agt-quickview-attributes {
    margin-bottom: 24px;
    background: #f8fafc;
    border-radius: 10px;
    padding: 16px;
}

.agt-quickview-attributes:empty {
    display: none;
}

.agt-quickview-attr {
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
    border-bottom: 1px solid #e2e8f0;
    font-size: 14px;
}

.agt-quickview-attr:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.agt-quickview-attr:first-child {
    padding-top: 0;
}

.agt-quickview-attr-label {
    color: #64748b;
}

.agt-quickview-attr-value {
    color: #1e293b;
    font-weight: 600;
}

/* Seller Card */
.agt-quickview-seller {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px;
    background: #f8fafc;
    border-radius: 10px;
    margin-bottom: 16px;
    border: 1px solid #e2e8f0;
}

.qv-seller-avatar img {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid #fff;
    box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}

.qv-seller-info {
    flex: 1;
    min-width: 0;
}

.qv-seller-name {
    font-weight: 600;
    color: #1e293b;
    font-size: 14px;
    margin-bottom: 2px;
}

.qv-seller-meta {
    font-size: 12px;
    color: #64748b;
}

.qv-view-seller {
    font-size: 12px;
    color: #D94F04;
    text-decoration: none;
    font-weight: 500;
    white-space: nowrap;
}

.qv-view-seller:hover {
    text-decoration: underline;
}

/* Related Listings */
.agt-quickview-related {
    margin-bottom: 16px;
}

.agt-quickview-related:empty,
.agt-quickview-related.hidden {
    display: none;
}

.agt-quickview-related h4 {
    font-size: 13px;
    font-weight: 600;
    color: #64748b;
    margin: 0 0 10px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.qv-related-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
}

.qv-related-item {
    position: relative;
    aspect-ratio: 1;
    border-radius: 8px;
    overflow: hidden;
    cursor: pointer;
    background: #f1f5f9;
}

.qv-related-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.2s;
}

.qv-related-item:hover img {
    transform: scale(1.08);
}

.qv-related-item .qv-related-price {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 4px 6px;
    background: linear-gradient(transparent, rgba(0,0,0,0.7));
    color: #fff;
    font-size: 11px;
    font-weight: 600;
}

/* Action Buttons - Simplified */
.agt-quickview-actions {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: auto;
    padding-top: 16px;
    border-top: 1px solid #e2e8f0;
}

.qv-btn {
    padding: 10px 18px;
    font-size: 14px;
    font-weight: 600;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: all 0.15s;
    cursor: pointer;
    border: none;
    text-decoration: none;
}

.qv-btn-primary {
    background: #D94F04;
    color: #fff;
    flex: 1;
}

.qv-btn-primary:hover {
    background: #c24504;
}

.qv-btn-secondary {
    width: 42px;
    height: 42px;
    padding: 0;
    background: #f1f5f9;
    color: #64748b;
    border-radius: 50%;
}

.qv-btn-secondary:hover {
    background: #e2e8f0;
    color: #1e293b;
}

.qv-btn-secondary.is-favorited {
    background: #fef2f2;
    color: #dc2626;
}

.qv-btn-link {
    color: #64748b;
    background: none;
    padding: 10px 0;
    font-weight: 500;
    font-size: 13px;
}

.qv-btn-link:hover {
    color: #D94F04;
}

.qv-btn-link i {
    font-size: 11px;
    transition: transform 0.15s;
}

.qv-btn-link:hover i {
    transform: translateX(3px);
}

/* ==========================================
   FULLSCREEN IMAGE VIEW
   ========================================== */
.agt-quickview-modal.fullscreen-image .agt-quickview-container {
    width: 100vw;
    height: 100vh;
    max-width: 100vw;
    border-radius: 0;
}

.agt-quickview-modal.fullscreen-image .agt-quickview-content {
    grid-template-columns: 1fr;
}

.agt-quickview-modal.fullscreen-image .agt-quickview-details {
    display: none;
}

.agt-quickview-modal.fullscreen-image .agt-quickview-gallery {
    height: 100vh;
}

.agt-quickview-modal.fullscreen-image .qv-image-wrapper img {
    max-height: calc(100vh - 140px);
}

/* ==========================================
   MOBILE RESPONSIVE
   ========================================== */
@media (max-width: 1024px) {
    .agt-quickview-content {
        grid-template-columns: 1fr;
        grid-template-rows: 55% 45%;
    }
    
    .agt-quickview-gallery {
        height: auto;
    }
    
    .qv-image-wrapper img {
        max-height: 45vh;
    }
    
    .agt-quickview-details {
        padding: 24px;
    }
    
    .agt-quickview-title {
        font-size: 1.5rem;
    }
    
    .agt-quickview-price {
        font-size: 1.75rem;
    }
}

@media (max-width: 768px) {
    .agt-quickview-container {
        width: 100vw;
        height: 100vh;
        max-width: 100vw;
        border-radius: 0;
    }
    
    .agt-quickview-content {
        grid-template-rows: 50% 50%;
    }
    
    .agt-quickview-image-controls {
        top: 12px;
        left: 12px;
        padding: 6px;
        gap: 4px;
    }
    
    .agt-quickview-image-controls button {
        width: 36px;
        height: 36px;
        font-size: 14px;
    }
    
    .agt-quickview-nav {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }
    
    .agt-quickview-nav.prev {
        left: 8px;
    }
    
    .agt-quickview-nav.next {
        right: 8px;
    }
    
    .agt-quickview-thumbs {
        padding: 12px 16px;
        min-height: 80px;
    }
    
    .agt-quickview-thumb {
        width: 60px;
        height: 60px;
    }
    
    .agt-quickview-details {
        padding: 20px;
    }
    
    .agt-quickview-title {
        font-size: 1.25rem;
        padding-right: 40px;
    }
    
    .agt-quickview-price {
        font-size: 1.5rem;
    }
    
    .agt-quickview-description {
        max-height: 100px;
    }
    
    .agt-quickview-actions {
        position: sticky;
        bottom: 0;
        background: #fff;
        margin: 0 -20px -20px;
        padding: 16px 20px;
        border-radius: 0;
    }
    
    .agt-quickview-actions .btn {
        min-width: 100px;
        padding: 12px 16px;
        font-size: 14px;
    }
}
