.section-title {
font-size: 18px;
    font-weight: bold;
    color: #333;
    margin-bottom: 15px;
    text-transform: uppercase;
}

a {
	font-family: "Roboto Slab", serif;
	font-size: 15px;
	font-weight: 400;
	text-decoration: none;
	line-height: 25px;
	font-style:normal;
	color: #15837a;
}
a:hover {
	color: #9d8a73;
	/* text-decoration: underline; */
	line-height: 25px;
}


  /* font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal; */


/* ===========================================
   COMPONENT LIBRARY CSS
   Modern, reusable components for Little L's
   ========================================== */

/* Global font weight adjustments */
.component * {
    font-weight: var(--font-weight-normal) !important;
}

/* Global form element alignment fixes */
button, input, select, textarea {
    line-height: 1.2 !important;
    vertical-align: middle !important;
    font-family: var(--font-primary) !important;
}

.component .font-bold,
.component a,
.component h1, .component h2, .component h3, .component h4, .component h5, .component h6,
.component .form-label,
.component th {
    font-weight: var(--font-weight-bold) !important;
}

.component button,
.component .button {
    font-weight: var(--font-weight-bold) !important;
}

/* ===========================================
   CSS VARIABLES / CUSTOM PROPERTIES
   ========================================== */
:root {
    --font-size-base: 16px;
    --font-size-lg: 18px;
    --font-size-xl: 22px;   
    --font-size-sm: 14px;
    --font-size-xs: 12px;

    /* Brand Colors */
    --color-primary: #15837a;
    --color-primary-dark: #0f6b64;
    --color-primary-darker: #0d5f57;
    --color-primary-light: #1ea89f; 
    --color-primary-lighter: #edfffd; 
    /* 38a49b */
    --color-secondary: #9d8a73;
    --color-secondary-dark: #7a6b57;

    /* Neutral Colors */
    --color-text: #333;
    --color-text-light: #666;
    --color-bg-light: #f8f9fa;
    --color-bg-lighter: #e9ecef;
    --color-border: #dee2e6;
    --color-border-light: #e9ecef;

    /* Status Colors */
    --color-success: #28a745;
    --color-success-bg: #d4edda;
    --color-success-border: #c3e6cb;
    --color-error: #dc3545;
    --color-error-bg: #f8d7da;
    --color-error-border: #f5c6cb;
    --color-warning: #ffc107;
    --color-warning-bg: #fff3cd;
    --color-warning-border: #ffeaa7;
    --color-info: #17a2b8;
    --color-info-bg: #d1ecf1;
    --color-info-border: #bee5eb;

    /* Typography */
    --font-primary: "Roboto Slab", serif;
    --font-secondary: "Roboto Slab", serif;
    --font-system: serif;
    --font-weight-light: 300;
    --font-weight-normal: 400;
    --font-weight-bold: 600;

    /* Spacing */
    --spacing-xs: 4px;
    --spacing-sm: 8px;
    --spacing-md: 16px;
    --spacing-lg: 24px;
    --spacing-xl: 32px;

    /* Border Radius */
    --radius-sm: 4px;
    --radius-md: 6px;
    --radius-lg: 8px;

    /* Shadows */
    --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 2px 4px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 2px 10px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 4px 20px rgba(0, 0, 0, 0.15);
}

/* ===========================================
   BUTTON COMPONENTS
   ========================================== */

/* Primary Button System */
.checkout-button {
    background: var(--color-primary) !important;
    color: white !important;
    /* border: none !important; */
    padding: 10px 20px;
    border-radius: var(--radius-sm);
    cursor: pointer;
    font-size: 15px;
    font-family: var(--font-primary);
    transition: all 0.2s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    -webkit-appearance: none;
    appearance: none;
    line-height: 1.2;
}

.checkout-button:hover,
.checkout-button:focus,
.checkout-button:active {
    background: var(--color-primary-dark) !important;
    color: white !important;
    transform: translateY(-1px);
    box-shadow: var(--shadow-md);
}

.checkout-button.secondary {
    background: var(--color-bg-light) !important;
    border: 2px solid var(--color-border) !important;
    color: var(--color-primary) !important;
}

.checkout-button.secondary:hover,
.checkout-button.secondary:focus,
.checkout-button.secondary:active {
    background: var(--color-bg-lighter) !important;
    color: var(--color-primary-darker) !important;
    border-color: var(--color-border) !important;
}

.checkout-button.danger {
    background: var(--color-error) !important;
    color: white !important;
}

.checkout-button.danger:hover,
.checkout-button.danger:focus,
.checkout-button.danger:active {
    background: #c82333 !important;
    color: white !important;
}

.checkout-button:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none !important;
}

.checkout-button i {
    font-size: 14px;
}

/* Small Button Variant */
.cart-button {
    background: var(--color-primary) !important;
    color: white !important;
    border: none !important;
    padding: 10px 20px;
    border-radius: var(--radius-sm);
    cursor: pointer;
    font-size: 13px;
    font-family: var(--font-primary);
    transition: all 0.2s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    -webkit-appearance: none;
    appearance: none;
}

.cart-button:hover {
    background: var(--color-primary-dark) !important;
    transform: translateY(-1px);
}

/* ===========================================
   FORM COMPONENTS
   ========================================== */

/* Form Container */
.form-section {
    margin-bottom: var(--spacing-lg);
    padding: var(--spacing-lg);
    background: white;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
}

/* Form Grid Layout */
.form-row {
    display: grid;
    grid-template-columns: 250px 1fr;
    gap: var(--spacing-md);
    margin-bottom: var(--spacing-md);
    align-items: start;
}

@media (max-width: 768px) {
    .form-row {
        grid-template-columns: 1fr;
        gap: var(--spacing-sm);
    }
}

/* Form Labels */
.form-label {
    font-weight: bold;
    color: var(--color-text);
    font-size: 15px;
    /* padding-top: 8px; */
    /* line-height: 1.4; */
}

.form-label.required::after {
    content: " *";
    color: var(--color-error);
}

/* Form Inputs */
.form-input {
    padding: 10px 12px;
    border: 2px solid var(--color-border);
    border-radius: var(--radius-sm);
    font-size: 15px;
    width: 100%;
    box-sizing: border-box;
    font-family: var(--font-system);
    transition: all 0.2s ease;
}

.form-input:focus {
    border-color: var(--color-primary);
    outline: none;
    box-shadow: 0 0 0 3px rgba(21, 131, 122, 0.1);
}

.form-input.error {
    border-color: var(--color-error);
}

.form-input.error:focus {
    box-shadow: 0 0 0 3px rgba(220, 53, 69, 0.1);
}

.form-input:disabled {
    background: var(--color-bg-light);
    cursor: not-allowed;
}

/* Form Select */
.form-select {
    padding: 10px 12px;
    border: 2px solid var(--color-border);
    border-radius: var(--radius-sm);
    font-size: 15px;
    background: white;
    width: 100%;
    box-sizing: border-box;
    cursor: pointer;
    transition: all 0.2s ease;
}

.form-select:focus {
    border-color: var(--color-primary);
    outline: none;
    box-shadow: 0 0 0 3px rgba(21, 131, 122, 0.1);
}

/* Form Textarea */
.form-textarea {
    padding: 10px 12px;
    border: 2px solid var(--color-border);
    border-radius: var(--radius-sm);
    font-size: 15px;
    width: 100%;
    min-height: 100px;
    font-family: var(--font-system);
    resize: vertical;
    box-sizing: border-box;
    transition: all 0.2s ease;
}

.form-textarea:focus {
    border-color: var(--color-primary);
    outline: none;
    box-shadow: 0 0 0 3px rgba(21, 131, 122, 0.1);
}

/* Checkbox and Radio */
.checkbox-wrapper,
.radio-wrapper {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    margin-bottom: var(--spacing-sm);
}

.checkbox-wrapper input[type="checkbox"],
.radio-wrapper input[type="radio"] {
    width: 16px;
    height: 16px;
    cursor: pointer;
}

.checkbox-wrapper label,
.radio-wrapper label {
    cursor: pointer;
    user-select: none;
}

/* ===========================================
   MESSAGE/ALERT COMPONENTS
   ========================================== */

.status-message {
    padding: 12px 16px;
    border-radius: var(--radius-sm);
    margin-bottom: var(--spacing-md);
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
}

.status-message.success {
    background: var(--color-success-bg);
    color: #155724;
    border: 1px solid var(--color-success-border);
}

.status-message.error {
    background: var(--color-error-bg);
    color: #721c24;
    border: 1px solid var(--color-error-border);
}

.status-message.warning {
    background: var(--color-warning-bg);
    color: #856404;
    border: 1px solid var(--color-warning-border);
}

.status-message.info {
    background: var(--color-info-bg);
    color: #0c5460;
    border: 1px solid var(--color-info-border);
}

.status-message i {
    font-size: 18px;
}

/* Validation Error Messages */
.validation-error {
    color: var(--color-error);
    font-size: 13px;
    margin-top: 5px;
    display: block;
}

/* ===========================================
   CONTAINER COMPONENTS
   ========================================== */

/* Admin Container */
.admin-container {
    max-width: 1200px;
    margin: 0 auto;
    font-family: var(--font-system);
    font-size: 15px;
    background: white;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    overflow: hidden;
}

/* Section Headers */
.section-header {
    background: var(--color-bg-light);
    color: var(--color-text);
    padding: var(--spacing-md) var(--spacing-lg);
    font-size: 24px;
    font-weight: bold;
    margin: 0;
    border-bottom: 3px solid var(--color-primary);
    font-family: var(--font-primary);
}

.section-header.primary {
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-darker) 100%);
    color: white;
    border-bottom: none;
}

/* Control Section */
.control-section {
    background: var(--color-bg-light);
    padding: var(--spacing-lg);
    border-radius: var(--radius-md);
    margin-bottom: var(--spacing-lg);
    border: 1px solid var(--color-border);
    border-left: 4px solid #9d8a73;
}

.control-section h3 {
    margin: 0 0 var(--spacing-md) 0;
    color: var(--color-primary);
    font-size: 18px;
    font-family: var(--font-primary);
}

/* Info Box */
.info-box {
    background: #e8f5f3;
    padding: var(--spacing-md);
    border-radius: var(--radius-md);
    margin-bottom: var(--spacing-lg);
    border-left: 4px solid var(--color-primary);
}

.info-box h3 {
    margin: 0 0 var(--spacing-sm) 0;
    color: var(--color-primary);
    font-size: 20px;
}

/* ===========================================
   TABLE COMPONENTS
   ========================================== */

.data-table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: var(--spacing-lg);
    font-size: 14px;
}

.data-table th {
    background: var(--color-bg-light);
    color: var(--color-text);
    padding: 10px 12px;
    text-align: left;
    border-bottom: 2px solid var(--color-border);
    font-weight: bold;
    position: sticky;
    top: 0;
    z-index: 10;
}

.data-table td {
    padding: 10px 12px;
    border-bottom: 1px solid var(--color-border-light);
    vertical-align: top;
}

.data-table tr:hover {
    background: var(--color-bg-light);
}

.data-table tr.selected {
    background: #e8f5f3;
}

/* ===========================================
   UTILITY CLASSES FOR INLINE STYLE REPLACEMENT
   ========================================== */

/* Display utilities */
.d-none { display: none !important; }
.d-block { display: block !important; }
.d-inline { display: inline !important; }
.d-inline-block { display: inline-block !important; }
.d-flex { display: flex !important; }
.d-inline-flex { display: inline-flex !important; }

/* Margin utilities */
.mt-10 { margin-top: 10px !important; }
.mt-15 { margin-top: 15px !important; }
.mt-20 { margin-top: 20px !important; }
.mb-10 { margin-bottom: 10px !important; }
.mb-15 { margin-bottom: 15px !important; }
.mb-20 { margin-bottom: 20px !important; }
.ml-10 { margin-left: 10px !important; }
.mr-5 { margin-right: 5px !important; }

/* Float utilities */
.float-left { float: left !important; }
.float-right { float: right !important; }
.float-clear { clear: both !important; }

/* Width utilities */
.w-48 { width: 48% !important; }
.w-50 { width: 50% !important; }
.wpc-100 { width: 100% !important; }

/* Text color utilities */
.text-red { color: #dc3545 !important; }
.text-green { color: #28a745 !important; }
.text-primary { color: var(--color-primary) !important; }
.text-muted { color: #666 !important; }

/* Text size utilities */
.text-xs { font-size: 11px !important; }
.text-sm { font-size: 12px !important; }
.text-base { font-size: 13px !important; }
.text-lg { font-size: 15px !important; }
.text-xl { font-size: 16px !important; }

/* Font weight utilities */
.font-bold { font-weight: bold !important; }
.font-normal { font-weight: normal !important; }

/* Admin specific utilities */
.admin-section-title {
    display: block;
    margin-bottom: 15px;
    font-size: 16px;
    color: var(--color-primary);
    font-weight: bold;
}

.admin-note {
    display: block;
    margin-bottom: 15px;
    color: #666;
    font-size: 13px;
}

.admin-error-text {
    display: block;
    margin-bottom: 15px;
    color: #dc3545;
    font-weight: bold;
    font-size: 13px;
}

/* Removed display: none - was hiding Cropper.js generated container */
/* Use specific IDs like #productCropperContainer or #categoryCropperContainer for hiding/showing */

.current-image {
    width: 138px;
    height: 136px;
    border-radius: 4px;
}

.current-image-large {
    width: 350px;
    height: 280px;
    border-radius: 4px;
}

.current-image-content {
    width: 400px;
    height: 300px;
    border-radius: 4px;
}

.price-input {
    width: 100px;
}

/* Date range form utilities */
.date-range-item {
    float: left;
    margin: 12px 5px 0px 0px;
}

.date-range-label {
    float: left;
    margin: 15px 5px 0px 0px;
}

.date-range-select {
    float: left;
    margin: 5px 5px 0px 0px;
}

/* Sales table utilities */
.sales-table {
    font-size: 13px;
    border: 0px solid #cccccc;
    width: 960px;
}

.sales-table-body {
    font-size: 13px;
}

.sales-table-header {
    color: black;
    font-size: 13px;
    background-color: #E4D2E6;
    font-weight: bold;
    text-align: center;
}

.sales-table-header-left {
    color: black;
    font-size: 13px;
    background-color: #E4D2E6;
    font-weight: bold;
    text-align: left;
    padding-left: 10px;
}

.sales-table-header-right {
    color: black;
    font-size: 13px;
    background-color: #E4D2E6;
    font-weight: bold;
    text-align: right;
    padding-right: 10px;
}

.sales-table-cell {
    font-size: 13px;
    text-align: center;
    vertical-align: top;
}

.sales-table-cell-left {
    font-size: 13px;
    text-align: left;
    vertical-align: top;
    padding-left: 10px;
}

.sales-table-cell-right {
    font-size: 13px;
    text-align: right;
    vertical-align: top;
    padding-right: 10px;
}

.sales-table-row {
    font-weight: bold;
}

.sales-table-row-details {
    display: none;
    background-color: #f9f9f9;
}

.sales-table-details-cell {
    font-size: 12px;
    color: var(--color-primary);
    text-align: right;
    padding-right: 10px;
}

.sales-table-footer-row {
    background-color: #f0f0f0;
    font-weight: bold;
}

.sales-table-footer-cell {
    font-size: 14px;
    text-align: right;
    padding: 10px;
    color: var(--color-primary);
    font-weight: bold;
}

.sales-view-link {
    color: var(--color-primary);
    text-decoration: none;
}

.sales-view-icon {
    font-size: 16px;
}

/* Width utilities for table columns */
.w-40 { width: 40px; }
.w-60 { width: 60px; }
.w-100 { width: 100px; }
.w-120 { width: 120px; }
.w-150 { width: 150px; }
.w-250 { width: 250px; }

/* Sales table title cells */
.sales-table-title {
    font-size: 15px;
    color: black;
}

/* Alert/error message */
.alert-danger {
    background: #f8d7da;
    border: 1px solid #f5c6cb;
    color: #721c24;
    padding: 15px;
    border-radius: 4px;
    margin: 20px 0;
    text-align: center;
}

/* Register form utilities */
.register-toggle {
    cursor: pointer;
    color: var(--color-primary);
    text-decoration: underline;
}

.register-hidden {
    display: none;
}

.register-centered {
    text-align: center;
    margin-bottom: 20px;
}

.register-required {
    color: #dc3545;
    font-weight: bold;
}

.register-link {
    color: #dc3545;
    text-decoration: underline;
}

.register-note {
    color: #dc3545;
    font-size: 12px;
    margin-top: 10px;
}

.underline-text {
    text-decoration: underline;
}

.no-margin {
    margin: 0 !important;
}

.padding-left-25 {
    padding-left: 25px;
}

/* Content editor utilities */
.checkbox-group-spaced {
    margin-top: 15px;
}

.form-group-spaced {
    margin-top: 15px;
}

.button-spaced {
    margin-top: 10px;
}

.image-placeholder-large {
    width: 400px;
    height: 300px;
    background: #f8f9fa;
    border: 2px dashed #dee2e6;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #6c757d;
    font-size: 12px;
    border-radius: 4px;
}

/* Bulk edit utilities */
.products-table-scrollable {
    max-height: 400px;
    overflow-y: auto;
}

.table-cell-truncated {
    max-width: 200px;
    overflow: hidden;
    text-overflow: ellipsis;
}

.select-narrow {
    width: 150px;
}

.select-xs {
    width: 60px;
}

.input-xs {
    width: 80px;
}

.label-inline {
    margin: 0 10px;
    font-weight: normal;
}

.text-center-spaced {
    text-align: center;
    margin-top: 20px;
}

.status-message-info {
    background: #e7f3ff;
    color: #004085;
    border: 1px solid #b3d4fc;
}

/* Page editor utilities */
.page-empty-state {
    text-align: center;
    padding: 40px;
    color: #666;
}

.page-section-meta {
    font-size: 13px;
    color: #666;
    margin-top: 5px;
}

.page-status-hidden {
    color: #dc3545;
    margin-left: 15px;
}

.page-status-image {
    color: #28a745;
    margin-left: 15px;
}

.page-section-image {
    max-width: 200px;
    height: auto;
    margin: 0 15px 15px 0;
    border-radius: 4px;
}

.page-section-image-left {
    float: left;
}

.page-section-image-right {
    float: right;
}

.clear-float {
    clear: both;
}

/* ===========================================
   IMAGE UPLOAD COMPONENTS
   ========================================== */

.image-section {
    background: var(--color-bg-light);
    padding: var(--spacing-lg);
    border-radius: var(--radius-lg);
    margin-bottom: var(--spacing-lg);
    border: 1px solid var(--color-border);
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-lg);
}

@media (max-width: 768px) {
    .image-section {
        grid-template-columns: 1fr;
    }
}

.image-controls {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-sm);
}

.current-image-section {
    display: flex;
    flex-direction: column;
}

.image-display {
    display: flex;
    justify-content: center;
    align-items: center;
    background: transparent;
    padding: var(--spacing-md);
    border-radius: var(--radius-sm);
    border: 1px solid var(--color-border-light);
}

.image-placeholder {
    border: 2px dashed var(--color-border);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-text-light);
    border-radius: var(--radius-sm);
    background: var(--color-bg-lighter);
    font-family: var(--font-primary);
    width: 100%;
    height: 200px;
}

/* File Input Styling */
.file-input-wrapper {
    position: relative;
    display: inline-block;
    width: 100%;
    box-sizing: border-box;
}

.file-input-wrapper input[type=file] {
    width: 0.1px;
    height: 0.1px;
    opacity: 0;
    overflow: hidden;
    position: absolute;
    z-index: -1;
}

.file-input-label {
    background: var(--color-primary);
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: var(--radius-sm);
    cursor: pointer;
    font-size: 15px;
    font-family: var(--font-primary);
    font-weight: bold;
    transition: background-color 0.2s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    width: 100%;
    justify-content: center;
    box-sizing: border-box;
}

.file-input-label:hover {
    background: var(--color-primary-dark);
}

/* Cropper Container */
.cropper-container {
    margin: var(--spacing-md) 0;
    /* max-height: 400px; */
    width: 100%;
    overflow: hidden;
    background: white;
    border-radius: var(--radius-sm);
}

/* ===========================================
   LEGACY INLINE STYLE REPLACEMENTS
   Common patterns extracted from inline styles
   ========================================== */

/* Admin Form Inputs */
.admin-input {
    font-size: 8pt !important;
    font-family: "Roboto Slab", serif !important;
    background-color: #F7E7F7 !important;
}

.admin-input-small {
    font-size: 8pt !important;
     font-family: "Roboto Slab", serif !important;
}

/* Icon Spacing */
.icon-spaced {
    margin-right: 8px;
}

.icon-left {
    margin-right: 8px;
    float: left;
}

/* Error and Status Text */
.error-text {
    color: red !important;
}

.success-text {
    color: green !important;
}

.warning-text {
    color: orange !important;
}

.black-text {
    color: black !important;
}

/* Form Layout Helpers */
.form-field {
    float: left;
    margin: 12px 5px 0px 0px;
}

.form-field-inline {
    display: inline-block;
    margin-right: 10px;
}

/* Section Layouts */
.section-spacing {
    margin-top: 20px;
    font-size: 15px;
}

.section-divider {
    margin-top: 20px;
    margin-bottom: 20px;
}

/* Image Dimensions */
.image-small {
    width: 138px;
    height: 136px;
}

.image-medium {
    width: 350px;
    height: 280px;
    border-radius: 4px;
}

.image-thumbnail {
    width: 150px;
    height: auto;
}

.responsive-image {
    max-width: 100%;
    height: auto;
}

/* Legacy Admin Styles */
.admin-cell {
    font-size: 8pt;
    font-family: "Roboto Slab", serif;
    background-color: #F7E7F7;
    padding: 5px;
}

.admin-header {
    font-size: 10pt;
    font-family: "Roboto Slab", serif;
    font-weight: bold;
    background-color: #cccccc;
    padding: 5px;
}

/* Basket Specific Styles */
.basket-text {
    margin-left: 70px;
    margin-top: 7px;
    float: left;
    font-size: 14px;
    font-family: "Roboto Slab", serif;
    text-shadow: 0px 0px 4px #ffffff;
}

.basket-icon {
    margin-top: 7px;
    float: left;
    display: flex;
    align-items: center;
}


.basket-icon i {
    line-height: 1;
    display: block;
}

.basket-icon a:hover {
  color: var(--color-primary-dark);
}

.basket-price {
    margin-top: 7px;
    float: left;
    font-size: 14px;
    font-family: "Roboto Slab", serif;
    font-weight: bold;
    text-shadow: 0px 0px 4px #ffffff;
}

.basket-price a {
  line-height: 1;
  display: inline;
  vertical-align: baseline;
}

.basket-price a:hover {
  color: var(--color-primary-dark);
  text-decoration: none;
}


/* Mobile Header Styles */
.mobile-basket {
    position: absolute;
    top: 8%;
    transform: translateY(-50%);
    display: flex;
    align-items: center;
    gap: 5px;
    text-shadow: 1px 1px 4px #ffffff;
}

.mobile-menu-icon {
    font-size: 24px;
    color: #15837a;
}

/* Button Inline Replacements */



.button-green {
    background: #15837a !important;
    color: white !important;
    padding: 8px 16px;
    border: none !important;
    border-radius: 4px;
    cursor: pointer;
    font-weight: 600;
}

.button-newsletter {
    display: inline-block;
    background: #15837a !important;
    color: white !important;
    padding: 8px 16px;
    border-radius: 4px;
    text-decoration: none;
    font-size: 14px;
     font-weight: 600;
}

.button-secondary-inline {
    background: #f8f9fa !important;
    color: #15837a !important;
    padding: 8px 16px;
    border: 2px solid #dee2e6 !important;
    border-radius: 4px;
    cursor: pointer;
    font-weight: bold;
}

/* Visibility Helpers */
.hidden {
    display: none !important;
}

.visible {
    display: block !important;
}

.invisible {
    visibility: hidden !important;
}

/* Center Alignment */
.center-auto {
    margin-left: auto;
    margin-right: auto;
}

.center-text {
    text-align: center;
}

/* Common Widths */
.width-full {
    width: 100%;
}

.width-half {
    width: 50%;
}

.width-150 {
    width: 150px;
}

.width-200 {
    width: 200px;
}

.width-250 {
    width: 250px;
}

.width-300 {
    width: 300px;
}

/* Common Heights */
.height-30 {
    height: 30px;
}

.height-50 {
    height: 50px;
}

.height-100 {
    height: 100px;
}

.height-150 {
    height: 150px;
}

/* Z-Index Layers */
.z-top {
    z-index: 5000;
}

.z-high {
    z-index: 1000;
}

.z-medium {
    z-index: 500;
}

.z-low {
    z-index: 100;
}

/* ===========================================
   UTILITY CLASSES
   ========================================== */

/* Spacing */
.mt-0 { margin-top: 0 !important; }
.mt-1 { margin-top: var(--spacing-xs) !important; }
.mt-2 { margin-top: var(--spacing-sm) !important; }
.mt-3 { margin-top: var(--spacing-md) !important; }
.mt-4 { margin-top: var(--spacing-lg) !important; }
.mt-5 { margin-top: var(--spacing-xl) !important; }

.mb-0 { margin-bottom: 0 !important; }
.mb-1 { margin-bottom: var(--spacing-xs) !important; }
.mb-2 { margin-bottom: var(--spacing-sm) !important; }
.mb-3 { margin-bottom: var(--spacing-md) !important; }
.mb-4 { margin-bottom: var(--spacing-lg) !important; }
.mb-5 { margin-bottom: var(--spacing-xl) !important; }

.p-0 { padding: 0 !important; }
.p-1 { padding: var(--spacing-xs) !important; }
.p-2 { padding: var(--spacing-sm) !important; }
.p-3 { padding: var(--spacing-md) !important; }
.p-4 { padding: var(--spacing-lg) !important; }
.p-5 { padding: var(--spacing-xl) !important; }

/* Text Alignment */
.text-left { text-align: left !important; }
.text-center { text-align: center !important; }
.text-right { text-align: right !important; }

/* Display */
.d-none { display: none !important; }
.d-block { display: block !important; }
.d-inline { display: inline !important; }
.d-inline-block { display: inline-block !important; }
.d-flex { display: flex !important; }
.d-grid { display: grid !important; }

/* Flexbox */
.justify-content-start { justify-content: flex-start !important; }
.justify-content-center { justify-content: center !important; }
.justify-content-end { justify-content: flex-end !important; }
.justify-content-between { justify-content: space-between !important; }
.justify-content-around { justify-content: space-around !important; }

.align-items-start { align-items: flex-start !important; }
.align-items-center { align-items: center !important; }
.align-items-end { align-items: flex-end !important; }

.flex-wrap { flex-wrap: wrap !important; }
.flex-nowrap { flex-wrap: nowrap !important; }

/* Width */
.w-25 { width: 25% !important; }
.w-50 { width: 50% !important; }
.w-75 { width: 75% !important; }
.wpc-100 { width: 100% !important; }

/* Colors */
.text-primary { color: var(--color-primary) !important; }
.text-secondary { color: var(--color-secondary) !important; }
.text-success { color: var(--color-success) !important; }
.text-danger { color: var(--color-error) !important; }
.text-warning { color: var(--color-warning) !important; }
.text-info { color: var(--color-info) !important; }
.text-muted { color: var(--color-text-light) !important; }

.bg-primary { background-color: var(--color-primary) !important; }
.bg-secondary { background-color: var(--color-secondary) !important; }
.bg-success { background-color: var(--color-success) !important; }
.bg-danger { background-color: var(--color-error) !important; }
.bg-warning { background-color: var(--color-warning) !important; }
.bg-info { background-color: var(--color-info) !important; }
.bg-light { background-color: var(--color-bg-light) !important; }

/* Borders */
.border { border: 1px solid var(--color-border) !important; }
.border-0 { border: 0 !important; }
.border-top { border-top: 1px solid var(--color-border) !important; }
.border-bottom { border-bottom: 1px solid var(--color-border) !important; }
.border-left { border-left: 1px solid var(--color-border) !important; }
.border-right { border-right: 1px solid var(--color-border) !important; }

.border-primary { border-color: var(--color-primary) !important; }
.border-success { border-color: var(--color-success) !important; }
.border-danger { border-color: var(--color-error) !important; }
.border-warning { border-color: var(--color-warning) !important; }

/* Border Radius */
.rounded { border-radius: var(--radius-sm) !important; }
.rounded-0 { border-radius: 0 !important; }
.rounded-top { border-radius: var(--radius-sm) var(--radius-sm) 0 0 !important; }
.rounded-bottom { border-radius: 0 0 var(--radius-sm) var(--radius-sm) !important; }
.rounded-left { border-radius: var(--radius-sm) 0 0 var(--radius-sm) !important; }
.rounded-right { border-radius: 0 var(--radius-sm) var(--radius-sm) 0 !important; }

/* Shadows */
.shadow-sm { box-shadow: var(--shadow-sm) !important; }
.shadow { box-shadow: var(--shadow-md) !important; }
.shadow-lg { box-shadow: var(--shadow-lg) !important; }
.shadow-none { box-shadow: none !important; }

/* Cursor */
.cursor-pointer { cursor: pointer !important; }
.cursor-not-allowed { cursor: not-allowed !important; }

/* Font Weight */
.fw-normal { font-weight: normal !important; }
.fw-bold { font-weight: bold !important; }
.fw-light { font-weight: 300 !important; }

/* Font Size */
.fs-small { font-size: 13px !important; }
.fs-normal { font-size: 15px !important; }
.fs-large { font-size: 18px !important; }
.fs-xlarge { font-size: 24px !important; }

/* Login Section Styling */
.login-section {
    background: white;
    max-width: 800px;
    margin: 20px auto;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.login-section form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.login-section .form-row {
    display: flex;
    align-items: center;
    gap: 15px;
}

.login-section .form-label {
    min-width: 120px;
    font-weight: bold;
    color: #333;
    font-family: "Roboto Slab", serif;
}

.login-section .loginboxes {
    flex: 1;
    padding: 10px 15px;
    border: 2px solid #dee2e6;
    border-radius: 4px;
    font-size: 15px;
    font-family: "Roboto Slab", serif;
}

.login-section .loginboxes:focus {
    border-color: #15837a;
    outline: none;
    box-shadow: 0 0 0 2px rgba(21, 131, 122, 0.1);
}

/* ===========================================
   BREADCRUMB NAVIGATION
   Modern, clean breadcrumb navigation with subtle styling
   ========================================== */
.breadcrumb-nav {
    margin: 0 0 25px 0;
    padding: 0;
}

.breadcrumb {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    list-style: none;
    margin: 0;
    padding: 12px 18px;
    font-size: var(--font-size-sm);
    background: var(--color-bg-light);
    border-left: 3px solid var(--color-primary);
    border-radius: 0 6px 6px 6px;
}

.breadcrumb-item {
    display: flex;
    align-items: center;
    line-height: 1.5;
}

.breadcrumb-item + .breadcrumb-item::before {
    content: "\f054";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    font-size: 10px;
    padding: 0 12px;
    color: var(--color-text-light);
    opacity: 0.6;
}

.breadcrumb-item a {
    color: var(--color-primary);
    text-decoration: none;
    padding: 4px 8px;
    border-radius: 4px;
    transition: all 0.2s ease;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.breadcrumb-item a:hover {
    color: var(--color-primary-dark);
    background: rgba(21, 131, 122, 0.08);
}

.breadcrumb-item.active {
    color: var(--color-text);
    font-weight: var(--font-weight-bold);
    padding: 4px 8px;
}

.breadcrumb-item i.fa-home {
    font-size: 13px;
}

/* Mobile responsive */
@media (max-width: 768px) {
    .breadcrumb {
        font-size: var(--font-size-xs);
        padding: 10px 14px;
    }

    .breadcrumb-item + .breadcrumb-item::before {
        padding: 0 8px;
        font-size: 9px;
    }

    .breadcrumb-item a {
        padding: 3px 6px;
        gap: 4px;
    }

    .breadcrumb-item.active {
        padding: 3px 6px;
    }
}

/* Product Detail Page - Modern product detail layout */
.product-detail-container {
    max-width: 1200px;
    margin: 0 auto;
}

.product-detail-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

.product-image-section {
    position: relative;
}

.product-detail-image {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.product-image-section .product-image-placeholder {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 400px;
    background: #f8f9fa;
    border-radius: 8px;
    color: #999;
    font-size: 18px;
}

.product-image-section .product-image-placeholder i {
    font-size: 64px;
    margin-bottom: 15px;
}

.product-info-section {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.product-price-section {
    border-bottom: 2px solid var(--color-border, #dee2e6);
    padding-bottom: 15px;
}

.product-category {
    font-size: var(--font-size-sm, 14px);
    color: var(--color-secondary, #9d8a73);
    margin: 0 0 10px 0;
    font-weight: normal;
}

.product-price {
    font-size: 32px;
    font-weight: bold;
    color: var(--color-primary, #15837a);
    font-family: 'Rockwell', serif;
}

.product-description h3,
.product-details h3,
.product-measurements h3 {
    font-size: var(--font-size-lg, 18px);
    color: var(--color-text, #333);
    margin: 0 0 10px 0;
    font-weight: bold;
}

.product-description p {
    line-height: 1.6;
    color: var(--color-text, #333);
}

.product-details-content {
    line-height: 1.6;
    color: var(--color-text, #333);
}

.product-measurements ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.product-measurements li {
    padding: 5px 0;
    color: var(--color-text, #333);
}

.product-actions {
    margin-top: 20px;
}

.checkout-button.add-to-basket-btn {
    display: inline-flex !important;
    justify-content: center;
    font-size: 14px !important;
    padding: 10px 16px !important;
    max-width: 100%;
    box-sizing: border-box;
    width: auto !important;
}

.out-of-stock-message {
    background: #f8d7da;
    border: 1px solid #f5c6cb;
    color: #721c24;
    padding: 15px;
    border-radius: 4px;
    text-align: center;
    font-weight: bold;
}

.product-meta {
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid var(--color-border, #dee2e6);
}

.product-meta p {
    margin: 5px 0;
    color: #666;
    font-size: var(--font-size-sm, 14px);
}

/* Associated Products Section */
.associated-products-section {
    margin-top: 60px;
    padding-top: 40px;
    border-top: 2px solid var(--color-border, #dee2e6);
}

.associated-products-section h2 {
    font-size: 24px;
    color: var(--color-text, #333);
    margin: 0 0 30px 0;
    font-family: 'Rockwell', serif;
}

.associated-products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 20px;
}

.associated-product-card {
    background: white;
    border: 1px solid var(--color-border, #dee2e6);
    border-radius: 8px;
    overflow: hidden;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.associated-product-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.associated-product-card a {
    text-decoration: none;
    display: block;
}

.associated-product-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.associated-product-card h3 {
    font-size: var(--font-size-base, 15px);
    color: var(--color-text, #333);
    padding: 15px;
    margin: 0;
    font-weight: bold;
    line-height: 1.4;
}

.associated-product-price {
    font-size: 18px;
    color: var(--color-primary, #15837a);
    font-weight: bold;
    padding: 0 15px 15px 15px;
    margin: 0;
    font-family: 'Rockwell', serif;
}

/* Responsive Design for Product Detail */
@media (max-width: 768px) {
    .product-detail-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .product-price {
        font-size: 24px;
    }

    .checkout-button.add-to-basket-btn {
        font-size: 14px !important;
        padding: 10px 16px !important;
        width: auto !important;
    }

    .associated-products-grid {
        grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
        gap: 15px;
    }

    .associated-product-card img {
        height: 150px;
    }

    .associated-product-card h3 {
        font-size: var(--font-size-sm, 14px);
        padding: 10px;
    }

    .associated-product-price {
        font-size: 16px;
        padding: 0 10px 10px 10px;
    }
}

/* Product Title Link - Make product titles clickable */
.product-title-link {
    color: var(--color-text, #333);
    text-decoration: none;
    display: block;
    transition: color 0.2s ease;
}

.product-title-link:hover {
    color: var(--color-primary, #15837a);
    text-decoration: none;
}

/* Related Categories Section */
.related-category-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    border-color: var(--color-primary, #15837a) !important;
}

.related-categories-section h2 {
    font-family: 'Rockwell', serif;
    color: var(--color-secondary, #9d8a73);
}