/*=========================================
  ENHANCED HOME PAGE STYLES
=========================================*/

/* Hero Section */
.hero-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    min-height: 18vh;
    display: flex;
    align-items: center;
}

.hero-title {
    font-size: 3rem;
    font-weight: 700;
    color: #2c3e50;
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

.hero-title-small {
    font-size: 2.2rem;
    font-weight: 700;
    color: #2c3e50;
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

.hero-subtitle {
    font-size: 1.2rem;
    color: #6c757d;
    line-height: 1.6;
    margin-bottom: 2rem;
}

.hero-subtitle-small {
    font-size: 1rem;
    color: #6c757d;
    line-height: 1.6;
    margin-bottom: 2rem;
}

.hero-features {
    margin-bottom: 2rem;
}

.feature-item {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    margin-bottom: 0.75rem;
    font-size: 1.1rem;
    color: #495057;
}

.feature-item i {
    margin-right: 0.75rem;
}

.hero-cta {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.hero-image-container {
    position: relative;
    max-width: 100%;
    overflow: hidden;
}

.hero-image {
    width: 100%;
    height: auto;
    max-width: 500px;
    border-radius: 15px;
}

/* Stats Section */
.stats-section {
    background: white;
    border-top: 1px solid #e9ecef;
    border-bottom: 1px solid #e9ecef;
}

.stat-card {
    background: white;
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease;
    border: 1px solid #e9ecef;
}

.stat-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.stat-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #f74902 0%, #e63e00 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
}

.stat-icon-darkblue {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
}

.stat-icon i,
.stat-icon-darkblue i {
    font-size: 1.5rem;
    color: white;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 1.1rem;
    color: #6c757d;
    font-weight: 500;
}

/* Section Titles */
.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 1rem;
}

.section-subtitle {
    font-size: 1.2rem;
    color: #6c757d;
    margin-bottom: 2rem;
}

/* Recently Added Products */
.recent-products {
    background: #f8f9fa;
}

.product-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.product-image-container {
    position: relative;
    padding: 1rem;
    background: #f8f9fa;
    text-align: center;
    height: 180px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-image {
    width: 100%;
    height: 140px;
    object-fit: contain;
    border-radius: 10px;
    transition: transform 0.3s ease;
}

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

.product-badge {
    position: absolute;
    top: 0.5rem;
    right: 0.5rem;
    background: #28a745;
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 15px;
    font-size: 0.75rem;
    font-weight: 600;
}

.product-badge-teal {
    position: absolute;
    top: 0.5rem;
    right: 0.5rem;
    background: #3498db;
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 15px;
    font-size: 0.75rem;
    font-weight: 600;
}

.product-info {
    padding: 1rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.product-title {
    font-size: 0.9rem;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 0.5rem;
    line-height: 1.3;
    min-height: 2.6rem;
}

.product-title a {
    color: inherit;
    text-decoration: none;
}

.product-title a:hover {
    color: #f74902;
}

.product-price {
    font-size: 0.85rem;
    color: #3498db;
    font-weight: 600;
    margin-bottom: 0.75rem;
}

/* Why Choose Section */
.why-choose-section {
    background: white;
}

.feature-card {
    background: white;
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    height: 100%;
    border: 1px solid #e9ecef;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.feature-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #f74902 0%, #e63e00 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.feature-icon-darkblue {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.feature-icon i,
.feature-icon-darkblue i {
    font-size: 1.75rem;
    color: white;
}

.feature-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 1rem;
}

.feature-description {
    color: #6c757d;
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 0;
}

/*=========================================
  END ENHANCED HOME PAGE STYLES
=========================================*/

/* Button icon spacing */
.btn i {
    margin-right: 0.5rem !important;
}

/* Terms and legal pages styling */
.terms-list {
    counter-reset: term-counter;
}

.terms-list li {
    counter-increment: term-counter;
    border-left: 4px solid #2c3e50;
    position: relative;
}

.terms-list li::before {
    content: counter(term-counter);
    position: absolute;
    left: -2rem;
    top: 0.5rem;
    background: #2c3e50;
    color: white;
    width: 1.5rem;
    height: 1.5rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    font-weight: bold;
}

.border-left-darkblue {
    border-left: 4px solid #2c3e50 !important;
}

.faq-answer {
    line-height: 1.6;
}

.faq-answer a {
    color: #2c3e50;
    text-decoration: none;
}

.faq-answer a:hover {
    color: #f74902;
}

/* Contact page styling */
.contact-icon {
    width: 40px;
    height: 40px;
    background: rgba(44, 62, 80, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
}

.contact-item {
    padding: 1rem 0;
    border-bottom: 1px solid #e9ecef;
}

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

.holiday-item {
    border-left: 4px solid #3498db;
}

.map-container {
    height: 300px;
    overflow: hidden;
    border-radius: 10px;
}

/* Form styling */
.form-control {
    border-radius: 8px;
    padding: 0.75rem 1rem;
    border: 1px solid #e9ecef;
    transition: all 0.3s ease;
}

.form-control:focus {
    border-color: #2c3e50;
    box-shadow: 0 0 0 0.2rem rgba(44, 62, 80, 0.25);
}

.input-group-text {
    border-radius: 8px 0 0 8px;
}

.form-control:first-child {
    border-radius: 0 8px 8px 0;
}

.form-label {
    color: #2c3e50;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.card {
    border-radius: 15px;
    overflow: hidden;
}

.btn {
    border-radius: 8px;
    padding: 0.75rem 1.5rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-outline-darkblue:focus {
    box-shadow: 0 0 0 0.2rem rgba(44, 62, 80, 0.25);
}

.btn-outline-tapprs:focus {
    box-shadow: 0 0 0 0.2rem rgba(247, 73, 2, 0.25);
}

.row-full{
    height: 100vh;
}

/*Text styling*/
.text-tapprs{color: #f74902;}
.text-outline-darkblue{
    color: #2c3e50 !important;
    font-weight: 600 !important;
}
.text-darkblue{
    color: #2c3e50 !important;
}
.text-green{color: #46b992;}
.text-yellow{color: #fff6bb;}
.text-khaki{color: #D3D1B9;}
.text-grey{color: #bdc3c7;}
.text-brown{color: #847269;}

.display-5 {
    font-size: 2rem;
    font-weight: 300;
    line-height: 1.2;
}

/*Button styling*/
.btn-grey {background-color: #bdc3c7; color: black;}
.btn-khaki {background-color: #D3D1B9; color: black;}
.btn-tapprs {
    background-color: #F74902; 
    color: white;
    border: 2px solid #F74902;
    font-weight: 600;
    transition: all 0.3s ease;
}
.btn-outline-darkblue {
    background-color: transparent;
    border: 2px solid #2c3e50;
    color: #2c3e50;
    font-weight: 600;
    transition: all 0.3s ease;
}
.btn-outline-darkblue:hover {
    background-color: #2c3e50;
    border-color: #2c3e50;
    color: white;
}
.btn-tapprs:hover{
    background-color: #e63e00;
    border-color: #e63e00;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(247, 73, 2, 0.3);
}
.btn-outline-tapprs {
    background-color: transparent;
    color: #F74902;
    border: 2px solid #F74902;
    font-weight: 600;
    transition: all 0.3s ease;
}
.btn-outline-tapprs:hover {
    background-color: #F74902;
    border-color: #F74902;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(247, 73, 2, 0.3);
}
.btn-brown {background-color: #847269; color: white;}
.btn-cta {
    background-color: #f07341; /* pastel orange */
    color: white;
    font-weight: 600;
    border: none;
    border-radius: 0.5rem;
    transition: background-color 0.2s ease-in-out;
}

.btn-cta:hover {
    background-color: #dd5c29;
    color: white;
}

/* Button Sizes */
.btn-lg {
    padding: 0.75rem 2rem;
    font-size: 1.1rem;
    border-radius: 8px;
}

.btn-sm {
    padding: 0.375rem 1rem;
    font-size: 0.9rem;
    border-radius: 6px;
}


/*Backgrounds*/
.bg-yellow{background-color: #fff6bb;}
.bg-green{background-color: #46b992;}
.bg-khaki{background-color: #D3D1B9;}
.bg-darkblue{background-color: #2c3e50;}
.bg-darkgrey{background-color: #515a63;}
.bg-grey{background-color: #bdc3c7;}
.bg-lightgrey{background-color: #F2F2F2;}
.bg-tapprs{background-color: #f74902;}
.bg-brown{background-color: #847269;}
.bg-torquoise{background-color: #51989d;}


/*Links*/
.link-grey a{color: #bdc3c7;}
.link-white a{color: #FFF;}
.link-tapprs a{color: #f74902;}
.link-black a{color: #000;}

/*Table lists*/
.list_cancelled_row {background: url('/files/images/icons/strike.png') 0 50% repeat-x;}


.highlight a {color: #000; text-decoration:underline;} 
.highlight a:hover{color: #f74902;}

.borderless td, .borderless th {border: none;}

/*Cart checkout steps*/
.checkout_step { float:left; background-color: #d3d1b9;color:#fff;padding:2px 7px;   margin:8px 0px 0 0;
   -webkit-border-radius: 20px;-moz-border-radius: 20px;border-radius: 20px;
}
.checkout_step_current { float:left; background-color: #ff4000; color:#fff;padding:2px 7px;   margin:8px 0px 0 0;
   -webkit-border-radius: 20px;   -moz-border-radius: 20px;   border-radius: 20px;
}
.checkout_step_text {color:#d3d1b9;float:left;font-size:11px;line-height:19px;width:140px;border-bottom:2px solid #d3d1b9;margin:0;}
.checkout_step_text_current {color:#ff4000;float:left;font-size:11px;line-height:19px;width:140px;border-bottom:2px solid #d3d1b9;margin:0;}
.checkout_step_text_last {color:#d3d1b9;float:left; font-size:11px; line-height:20px; margin: 0;}
.checkout_step_text_last_current {float:left; font-size:11px; line-height:20px; margin: 0;}

.box-shadow-bar{box-shadow: 0 1px 8px 0 rgba(0,0,0,.1);}
.card{box-shadow: 0 1px 8px 0 rgba(0,0,0,.1);}


/* --- Enhanced Header Styling --- */
.navbar {
    padding: 1rem 0;
    transition: all 0.3s ease;
}

.navbar-logo {
    transition: transform 0.3s ease;
}

.navbar-logo:hover {
    transform: scale(1.05);
}

.navbar-nav .nav-link {
    font-weight: 500;
    padding: 0.5rem 1rem;
    transition: all 0.3s ease;
    border-radius: 6px;
    margin: 0 0.25rem;
}

.navbar-nav .nav-link:hover {
    background-color: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
}

.navbar-nav .nav-item.active .nav-link {
    background-color: rgba(247, 73, 2, 0.2);
    color: #F74902 !important;
}

.navbar-nav .nav-link i {
    font-size: 1rem;
}


/* --- Product Menu --- */
.product-menu {
    font-size: 0.94rem;
}

.product-menu .navbar-nav .nav-link {
    color: #555;
    font-weight: 500;
    transition: all 0.2s ease-in-out;
}

.product-menu .navbar-nav .nav-link:hover {
    color: #f74902 !important;
    background-color: #f9f9f9;
    border-radius: 4px;
}


/* --- Product Menu Dropdown --- */
.product-menu .dropdown-menu .dropdown-item {
    color: #555;
    font-size: 0.9rem;
}

.product-menu .dropdown-menu .dropdown-item:hover {
    color: #000;
    background-color: #e9ecef;
}


/* --- Product Menu Search --- */
.product-menu-search .form-control {
    border-color: #999;
    color: #555;
    background-color: #fafafa;
    font-size: 0.9rem;
    transition: border-color 0.2s ease-in-out, box-shadow 0.2s ease-in-out;
}

.product-menu-search .form-control:focus {
    border-color: #999;
    box-shadow: 0 0 3px rgba(0, 0, 0, 0.1);
}

.product-menu-search .btn {
    font-size: 0.875rem;
    padding: 0.25rem 0.6rem;
}


/* --- Product Listing --- */
.product-link {
    color: #5a8eb1;
    text-decoration: none;
    transition: color 0.2s ease-in-out;
}

.product-link:hover {
    color: #3a6d8c;
    text-decoration: underline;
}

.rate-text {
    font-size: 0.7rem;
    color: #777 !important;
    margin-top: 2px;
}

/* --- Product Category Headings --- */
.category-heading {
    font-size: 1rem;
    font-weight: 600;
    color: #555;
    margin-bottom: 0;
    padding-left: 0.75rem;
}


/* --- Sidebar Styling --- */
.sidebar-section .card-header {
    background-color: #f8f9fa;
    border-bottom: 1px solid #ddd;
    padding: 0.5rem 0.75rem;
}

.sidebar-section .card-header h5 {
    font-size: 1rem;
    font-weight: 600;
    color: #555;
    margin-bottom: 0;
    padding-left: 0.75rem;
}

.sidebar-section .card-body,
.sidebar-section .list-unstyled li {
    font-size: 0.85rem;
    color: #555;
}

.sidebar-section .list-unstyled li a {
    color: #555;
    text-decoration: none;
}

.sidebar-section .list-unstyled li a:hover {
    color: #3399cc;
    text-decoration: underline;
}

/* --- Legacy fallback hover style --- */
.card .list-unstyled a.text-muted:hover {
    color: #3a6d8c !important;
    text-decoration: underline;
}


/* --- Enhanced Footer Styling --- */
.footer-link {
    display: block;
    font-size: 0.95rem;
    color: #949ba3;
    text-decoration: none;
    padding: 0.25rem 0;
    transition: all 0.3s ease;
    border-radius: 4px;
    padding-left: 0.5rem;
}

.footer-link:hover {
    color: #F74902;
    background-color: rgba(247, 73, 2, 0.1);
    padding-left: 1rem;
    transform: translateX(5px);
}

footer {
    background: #2c3e50;
    color: white;
}

footer h6 {
    color: #F74902;
    font-weight: 600;
    margin-bottom: 1rem;
}

.nav-tabs .nav-link {
    color: #5a8eb1;
    padding: 0.5rem 1rem;
    font-weight: 500;
    border: none;
    border-bottom: 2px solid transparent;
    transition: all 0.2s ease;
    white-space: nowrap;
}

.nav-tabs .nav-link:hover {
    color: #3a6d8c;
    background-color: #f8f9fa;
    border-color: #cde4f0;
}

.nav-tabs .nav-link.active {
    color: #3a6d8c;
    font-weight: 600;
    border-bottom: 3px solid #3a6d8c;
    background-color: #ffffff;
}

/*=========================================
  RESPONSIVE DESIGN
=========================================*/

/* Mobile Styles */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.2rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .hero-cta {
        flex-direction: column;
        align-items: center;
    }
    
    .hero-cta .btn {
        width: 100%;
        max-width: 300px;
    }
    
    .hero-section {
        min-height: auto;
        padding: 3rem 0;
    }
    
    .stat-card {
        padding: 1.5rem;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .feature-card {
        padding: 1.5rem;
    }
    
    .product-image-container {
        height: 160px;
    }
    
    .product-image {
        height: 120px;
    }
}

@media (max-width: 576px) {
    .hero-title {
        font-size: 1.8rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .stat-number {
        font-size: 1.8rem;
    }
    
    .stat-card {
        padding: 1rem;
    }
    
    .feature-card {
        padding: 1rem;
    }
    
    .feature-title {
        font-size: 1.3rem;
    }
    
    .hero-cta .btn {
        font-size: 1rem;
        padding: 0.6rem 1.5rem;
    }
}

/* Ensure 2 products per row on mobile */
@media (max-width: 576px) {
    .recent-products .col-6 {
        flex: 0 0 50%;
        max-width: 50%;
    }
}

/* Hero section mobile centering */
@media (max-width: 768px) {
    .hero-title-small {
        text-align: center !important;
    }
    
    .hero-subtitle-small {
        text-align: center !important;
    }
    
    .hero-features {
        text-align: center !important;
    }
    
    .hero-features .feature-item {
        justify-content: center !important;
    }
    
    .hero-cta {
        justify-content: center !important;
    }
}

/*=========================================
  END RESPONSIVE DESIGN
=========================================*/

.table-responsive {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}

/* Invoice Page Styling */
.invoice-container {
    background: white;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    padding: 2rem;
    margin: 2rem auto;
    max-width: 800px;
}

.invoice-header {
    border-bottom: 2px solid #F74902;
    padding-bottom: 1rem;
    margin-bottom: 2rem;
}

.invoice-header h4 {
    color: #2c3e50;
    font-weight: 600;
    margin: 0;
}

.invoice-company-info {
    color: #6c757d;
    font-size: 0.875rem;
    line-height: 1.4;
}

.invoice-company-info h5 {
    color: #2c3e50;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.invoice-details-section {
    background: #f8f9fa;
    border-radius: 6px;
    padding: 1rem;
    margin-bottom: 2rem;
}

.invoice-details-table {
    border: 1px solid #e9ecef;
    border-radius: 6px;
    overflow: hidden;
}

.invoice-details-table th {
    background: #2c3e50;
    color: white;
    font-weight: 600;
    border: none;
    padding: 0.75rem;
}

.invoice-details-table td {
    padding: 0.75rem;
    border-bottom: 1px solid #e9ecef;
}

.invoice-details-table tr:last-child td {
    border-bottom: none;
}

.invoice-items-table {
    border: 1px solid #e9ecef;
    border-radius: 6px;
    overflow: hidden;
    margin-bottom: 2rem;
}

.invoice-items-table th {
    background: #2c3e50;
    color: white;
    font-weight: 600;
    border: none;
    padding: 0.75rem;
}

.invoice-items-table td {
    padding: 0.75rem;
    border-bottom: 1px solid #e9ecef;
}

.invoice-items-table tr:last-child td {
    border-bottom: none;
    background: #f8f9fa;
    font-weight: 600;
}

.invoice-total-row {
    background: #f8f9fa;
    font-weight: 600;
    color: #2c3e50;
}

.invoice-footer {
    border-top: 1px solid #e9ecef;
    padding-top: 1rem;
    margin-top: 2rem;
    color: #6c757d;
    font-size: 0.875rem;
}

.invoice-footer .text-center {
    margin-bottom: 0.5rem;
}

.invoice-thank-you {
    color: #F74902;
    font-weight: 600;
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

@media print {
    .invoice-container {
        box-shadow: none;
        border: none;
        margin: 0;
        padding: 1rem;
    }
    
    .invoice-header {
        border-bottom: 2px solid #000;
    }
    
    .invoice-items-table th,
    .invoice-details-table th {
        background: #000 !important;
        color: white !important;
    }
}

/* Account Status Badges - Text Color Only */
.bg-success-subtle {
    background-color: transparent !important;
    color: #28a745 !important;
}

.text-danger {
    color: #dc3545 !important;
}

.bg-warning {
    background-color: transparent !important;
    color: #ffc107 !important;
}

.bg-info {
    background-color: transparent !important;
    color: #3498db !important;
}

.bg-secondary {
    background-color: transparent !important;
    color: #6c757d !important;
}

.bg-danger {
    background-color: transparent !important;
    color: #dc3545 !important;
}

/*=========================================
  CALENDAR & DATE PICKER IMPROVEMENTS
=========================================*/

/* Enhanced calendar card styling */
#mydatepicker .card {
    border: none;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: box-shadow 0.3s ease;
}

#mydatepicker .card:hover {
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

/* Date input focus states */
#mydatepicker input[type="text"]:focus {
    border-color: #F74902;
    box-shadow: 0 0 0 0.2rem rgba(247, 73, 2, 0.25);
}

/* Pricing display styling */
#mydatepicker .filled_from_ajax {
    font-weight: 600;
    color: #2c3e50;
}

#mydatepicker .filled_from_ajax[id="display_sub_total"] {
    color: #F74902 !important;
    font-size: 1.1em;
}

/* Button grid spacing */
.d-grid.gap-2 > * + * {
    margin-top: 0.5rem;
}

.d-grid.gap-3 > * + * {
    margin-top: 1rem;
}

/* Mobile spacing improvements */
@media (max-width: 768px) {
    .d-grid.gap-3 > * + * {
        margin-top: 1rem !important;
    }
    
    #mydatepicker {
        margin-top: 2rem !important;
    }
    
    /* Account page button spacing */
    .d-grid.gap-3 .btn {
        padding: 0.75rem 1rem;
    }
    
    /* Product page button spacing */
    #mydatepicker .d-grid.gap-2 > * + * {
        margin-top: 0.5rem !important;
    }
    
    /* Thank you page button spacing */
    .d-flex.gap-3.flex-wrap > .btn {
        margin-bottom: 0.5rem !important;
    }
    
    /* Button spacing for small screens */
    .d-flex.gap-2.flex-wrap > .btn,
    .d-flex.gap-3.flex-wrap > .btn {
        margin-bottom: 0.5rem !important;
    }
}