.gcr-wrap {
    font-family: Arial, sans-serif;
    max-width: 1100px;
    margin: 20px auto;
    background: #fff;
}

.gcr-header {
    background: #fafafa;
    padding: 30px 20px;
    text-align: center;
    border: 1px solid #eee;
}

.gcr-header .title {
    color: #8d98a2;
    font-size: 18px;
    margin-bottom: 18px;
}

.gcr-header-action {
    padding-top: 12px;
}

.gcr-summary {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
    padding: 10px;
}

.gcr-average {
    font-size: 42px;
    color: #ffbb3a;
    display: flex;
    align-items: center;
    gap: 12px;
}

.gcr-stars {
    color: #f2b01e;
    font-size: 20px;
    margin-left: 6px;
}

.gcr-count {
    color: #56616a;
    font-size: 15px;
}

.gcr-write-btn {
    background: #ffbb3a;
    color: #fff !important;
    padding: 10px 18px;
    border-radius: 22px;
    text-decoration: none !important;
    display: inline-block;
    font-weight: 600;
}

.gcr-write-btn:hover {
    background: #eaac36;
    color: #fff !important;
}

.gcr-filters {
    display: flex;
    gap: 12px;
    padding: 12px;
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    justify-content: flex-start;
    flex-wrap: wrap;
}

.gcr-filters input[type='text'],
.gcr-filters select,
.gcr-filters label {
    font-size: 16px;
    padding: 10px 15px;
    border-radius: 25px;
    border: 1px solid #ddd;
    background-color: #f7f7f7;
    width: auto;
    transition: all 0.3s ease;
}

.gcr-filters input[type='text']:focus,
.gcr-filters select:focus {
    border-color: #ffbb3a;
    outline: none;
    box-shadow: 0 0 5px rgba(255, 187, 58, 0.5);
}

.gcr-filters select {
    width: 120px;
    margin-right: 10px;
}

.gcr-filter-toggle {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
}

.gcr-filter-toggle input[type='checkbox'] {
    margin-right: 8px;
    height: 18px;
    width: 18px;
}

.gcr-list {
    padding: 18px;
}

.gcr-item {
    display: flex;
    gap: 16px;
    padding: 20px 0;
    border-bottom: 1px solid #eee;
    align-items: flex-start;
}

.gcr-avatar {
    width: 44px;
    height: 44px;
    min-width: 44px;
    border-radius: 50%;
    background: #ffbb3a;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: #ffffff;
}

.gcr-meta {
    flex: 1;
    min-width: 0;
}

.gcr-header-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
}

.gcr-name {
    font-weight: 600;
    color: #2e4958;
}

.gcr-verified {
    display: inline-block;
    margin-left: 8px;
    color: #ffbb3a;
    font-size: 12px;
    vertical-align: middle;
}

.gcr-date {
    display: block;
    color: #9aa5ad;
    font-size: 13px;
    margin-top: 4px;
    white-space: nowrap;
}

.gcr-rating {
    margin: 8px 0;
}

.gcr-star {
    color: #f2b01e;
    margin-right: 4px;
}

.gcr-order-number {
    color: #888;
    font-size: 14px;
    margin-bottom: 6px;
}

.gcr-text {
    color: #667;
    line-height: 1.5;
    margin-bottom: 10px;
}

.gcr-text p:last-child {
    margin-bottom: 0;
}

.gcr-thumb {
    max-width: 120px;
    margin-top: 12px;
}

.gcr-thumb img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
}

.gcr-pagination {
    padding: 16px 0;
    text-align: center;
}

.gcr-page-link,
.gcr-page-dots {
    margin: 0 3px;
    padding: 6px 10px;
    display: inline-block;
    text-decoration: none;
}

.gcr-page-link.gcr-current-page {
    font-weight: 700;
    background: #0073aa;
    color: #fff;
    border-radius: 4px;
}

.gcr-no-reviews {
    padding: 20px;
    color: #556;
}

#gcr-review-form,
.gcr-review-form-wrap {
    max-width: 600px;
    margin: 40px auto;
    background: #fff;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
}

#gcr-review-form h3,
.gcr-review-form-wrap h3 {
    font-size: 24px;
    color: #333;
    margin-bottom: 20px;
    text-align: center;
}

#gcr-review-form label,
.gcr-review-form-wrap label {
    font-size: 16px;
    color: #555;
    margin-bottom: 8px;
    display: block;
}

#gcr-review-form input[type='text'],
#gcr-review-form input[type='email'],
#gcr-review-form select,
#gcr-review-form textarea,
.gcr-review-form-wrap input[type='text'],
.gcr-review-form-wrap input[type='email'],
.gcr-review-form-wrap select,
.gcr-review-form-wrap textarea {
    width: 100%;
    padding: 12px;
    margin: 10px 0;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 16px;
    box-sizing: border-box;
    transition: all 0.3s ease;
}

#gcr-review-form input[type='text']:focus,
#gcr-review-form input[type='email']:focus,
#gcr-review-form select:focus,
#gcr-review-form textarea:focus,
.gcr-review-form-wrap input[type='text']:focus,
.gcr-review-form-wrap input[type='email']:focus,
.gcr-review-form-wrap select:focus,
.gcr-review-form-wrap textarea:focus {
    border-color: #ffbb3a;
    outline: none;
    box-shadow: 0 0 5px rgba(255, 187, 58, 0.5);
}

#gcr-review-form button[type='submit'],
.gcr-review-form-wrap button[type='submit'] {
    background-color: #ffbb3a;
    color: #fff;
    padding: 12px 25px;
    border-radius: 8px;
    border: none;
    font-size: 18px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    width: 100%;
}

#gcr-review-form button[type='submit']:hover,
.gcr-review-form-wrap button[type='submit']:hover {
    background-color: #eaac36;
}

#gcr-review-form input[type='file'],
.gcr-review-form-wrap input[type='file'] {
    background-color: #ffbb3a;
    color: #fff;
    padding: 12px 25px;
    border-radius: 8px;
    border: none;
    font-size: 16px;
    cursor: pointer;
    margin-top: 12px;
    display: block;
    width: 100%;
}

#gcr-review-form textarea,
.gcr-review-form-wrap textarea {
    height: 120px;
    resize: vertical;
}

.gcr-success-message {
    padding: 12px;
    border-radius: 8px;
    background: #e6ffef;
    margin: 12px 0;
    color: #116622;
}

@media (max-width: 768px) {
    .gcr-summary {
        flex-direction: column;
        gap: 8px;
    }

    .gcr-filters {
        flex-direction: column;
        align-items: flex-start;
    }

    .gcr-filters input[type='text'],
    .gcr-filters select,
    .gcr-filters label {
        width: 100%;
        margin-bottom: 10px;
    }

    .gcr-item {
        gap: 12px;
    }

    .gcr-header-row {
        flex-direction: column;
        align-items: flex-start;
        gap: 4px;
    }
}


/* ==========================================================================
   v1.2.9 BudClub theme alignment
   Logic/data remains unchanged. These rules only restyle review shortcodes.
   ========================================================================== */

:root{
    --gcr-bc-bg:#0c0d0a;
    --gcr-bc-bg2:#141611;
    --gcr-bc-card:#1a1d16;
    --gcr-bc-line:#2a2e22;
    --gcr-bc-green:#9ef01a;
    --gcr-bc-green-dim:#7bc70f;
    --gcr-bc-cream:#f4f3ec;
    --gcr-bc-muted:#9aa08c;
    --gcr-bc-gold:#d4af37;
}

.gcr-wrap{
    background:transparent!important;
    color:var(--gcr-bc-cream)!important;
    font-family:'DM Sans',system-ui,-apple-system,BlinkMacSystemFont,'Segoe UI',sans-serif;
    max-width:760px;
    margin:30px auto;
}

.gcr-header{
    display:flex;
    align-items:flex-start;
    justify-content:space-between;
    gap:16px;
    padding:0 0 18px!important;
    margin:0 0 16px!important;
    border-bottom:1px solid var(--gcr-bc-line)!important;
    background:transparent!important;
}

.gcr-header .title{
    color:var(--gcr-bc-muted)!important;
    font-size:11px!important;
    letter-spacing:2px!important;
    font-weight:700!important;
    text-transform:uppercase!important;
    line-height:1.2;
}

.gcr-summary{
    display:flex!important;
    align-items:center!important;
    gap:16px!important;
    background:transparent!important;
    border:0!important;
    padding:0!important;
    margin:0!important;
    box-shadow:none!important;
}

.gcr-average{
    display:flex!important;
    align-items:center!important;
    gap:14px!important;
}

.gcr-average-number{
    font-family:'Anton',Impact,sans-serif!important;
    color:var(--gcr-bc-green)!important;
    font-size:46px!important;
    line-height:1!important;
    font-weight:400!important;
}

.gcr-stars,
.gcr-rating,
.gcr-star{
    color:var(--gcr-bc-gold)!important;
}

.gcr-count{
    color:var(--gcr-bc-muted)!important;
    font-size:12px!important;
    line-height:1.35!important;
    margin-top:2px!important;
}

.gcr-header-action{
    flex:0 0 auto;
}

.gcr-write-btn{
    display:inline-flex!important;
    align-items:center!important;
    justify-content:center!important;
    border:1px solid rgba(158,240,26,.38)!important;
    background:rgba(158,240,26,.08)!important;
    color:var(--gcr-bc-green)!important;
    border-radius:999px!important;
    padding:9px 14px!important;
    font-size:12px!important;
    font-weight:700!important;
    text-decoration:none!important;
    transition:.18s ease!important;
    white-space:nowrap;
}

.gcr-write-btn:hover{
    background:var(--gcr-bc-green)!important;
    color:#0c0d0a!important;
    transform:translateY(-1px);
}

.gcr-filters{
    display:flex!important;
    align-items:center!important;
    gap:10px!important;
    flex-wrap:wrap!important;
    background:var(--gcr-bc-bg2)!important;
    border:1px solid var(--gcr-bc-line)!important;
    border-radius:14px!important;
    padding:12px!important;
    margin:0 0 14px!important;
    box-shadow:none!important;
}

.gcr-filters input[type='text'],
.gcr-filters select{
    background:var(--gcr-bc-card)!important;
    border:1px solid var(--gcr-bc-line)!important;
    color:var(--gcr-bc-cream)!important;
    border-radius:10px!important;
    height:42px!important;
    padding:0 12px!important;
    font-size:13px!important;
    box-shadow:none!important;
}

.gcr-filters input[type='text']::placeholder{
    color:var(--gcr-bc-muted)!important;
}

.gcr-filters input[type='text']:focus,
.gcr-filters select:focus{
    border-color:rgba(158,240,26,.65)!important;
    box-shadow:0 0 0 3px rgba(158,240,26,.12)!important;
    outline:none!important;
}

.gcr-filter-toggle{
    color:var(--gcr-bc-muted)!important;
    font-size:13px!important;
    font-weight:700!important;
}

.gcr-filter-toggle input[type='checkbox']{
    accent-color:var(--gcr-bc-green);
}

.gcr-list{
    padding:0!important;
    background:transparent!important;
}

.gcr-item,
.gcr-budclub-review-card{
    display:flex!important;
    gap:14px!important;
    background:var(--gcr-bc-card)!important;
    border:1px solid var(--gcr-bc-line)!important;
    border-radius:12px!important;
    padding:16px!important;
    margin-bottom:10px!important;
    box-shadow:none!important;
}

.gcr-item:last-child{
    border-bottom:1px solid var(--gcr-bc-line)!important;
}

.gcr-avatar{
    width:38px!important;
    height:38px!important;
    min-width:38px!important;
    border-radius:50%!important;
    background:linear-gradient(135deg,var(--gcr-bc-green),var(--gcr-bc-green-dim))!important;
    color:#0c0d0a!important;
    font-size:13px!important;
    font-weight:800!important;
    letter-spacing:.2px!important;
}

.gcr-header-row{
    display:flex!important;
    justify-content:space-between!important;
    align-items:center!important;
    gap:12px!important;
    margin-bottom:8px!important;
}

.gcr-name-wrap{
    display:flex!important;
    align-items:center!important;
    gap:8px!important;
    flex-wrap:wrap!important;
}

.gcr-name{
    color:var(--gcr-bc-cream)!important;
    font-size:13px!important;
    font-weight:700!important;
}

.gcr-verified{
    color:var(--gcr-bc-green)!important;
    margin-left:0!important;
    font-size:11px!important;
    font-weight:800!important;
    letter-spacing:.3px!important;
    text-transform:uppercase!important;
}

.gcr-date{
    color:var(--gcr-bc-muted)!important;
    font-size:11px!important;
    margin:0!important;
}

.gcr-rating{
    margin:0 0 7px!important;
    font-size:12px!important;
    line-height:1!important;
}

.gcr-star{
    margin-right:1px!important;
}

.gcr-order-number{
    color:var(--gcr-bc-muted)!important;
    font-size:12px!important;
    margin:0 0 7px!important;
}

.gcr-order-number strong{
    color:var(--gcr-bc-cream)!important;
}

.gcr-text{
    color:#cfd1c4!important;
    line-height:1.5!important;
    font-size:14px!important;
    margin:0!important;
}

.gcr-text p{
    margin:0 0 8px!important;
}

.gcr-text p:last-child{
    margin-bottom:0!important;
}

.gcr-thumb{
    max-width:160px!important;
    margin-top:12px!important;
}

.gcr-thumb img{
    border-radius:12px!important;
    border:1px solid var(--gcr-bc-line)!important;
}

.gcr-pagination{
    padding:16px 0!important;
}

.gcr-page-link,
.gcr-page-dots{
    border:1px solid var(--gcr-bc-line)!important;
    color:var(--gcr-bc-muted)!important;
    background:var(--gcr-bc-bg2)!important;
    border-radius:9px!important;
    padding:8px 11px!important;
    text-decoration:none!important;
}

.gcr-page-link:hover,
.gcr-page-link.gcr-current-page{
    background:var(--gcr-bc-green)!important;
    color:#0c0d0a!important;
    border-color:var(--gcr-bc-green)!important;
}

.gcr-no-reviews{
    color:var(--gcr-bc-muted)!important;
    background:var(--gcr-bc-card)!important;
    border:1px solid var(--gcr-bc-line)!important;
    border-radius:12px!important;
    padding:18px!important;
}

/* Review form */
#gcr-review-form,
.gcr-review-form-wrap,
.gcr-budclub-review-form{
    max-width:620px!important;
    margin:40px auto!important;
    background:var(--gcr-bc-bg2)!important;
    border:1px solid var(--gcr-bc-line)!important;
    color:var(--gcr-bc-cream)!important;
    padding:24px!important;
    border-radius:16px!important;
    box-shadow:none!important;
    font-family:'DM Sans',system-ui,-apple-system,BlinkMacSystemFont,'Segoe UI',sans-serif;
}

#gcr-review-form h3,
.gcr-review-form-wrap h3{
    color:var(--gcr-bc-cream)!important;
    font-family:'Anton',Impact,sans-serif!important;
    font-size:28px!important;
    line-height:1!important;
    font-weight:400!important;
    text-transform:uppercase!important;
    text-align:center!important;
    margin:0 0 20px!important;
}

#gcr-review-form label,
.gcr-review-form-wrap label{
    color:var(--gcr-bc-muted)!important;
    font-size:13px!important;
    font-weight:700!important;
    letter-spacing:.2px!important;
}

#gcr-review-form input[type='text'],
#gcr-review-form input[type='email'],
#gcr-review-form select,
#gcr-review-form textarea,
.gcr-review-form-wrap input[type='text'],
.gcr-review-form-wrap input[type='email'],
.gcr-review-form-wrap select,
.gcr-review-form-wrap textarea{
    background:var(--gcr-bc-card)!important;
    border:1px solid var(--gcr-bc-line)!important;
    color:var(--gcr-bc-cream)!important;
    border-radius:10px!important;
    padding:12px!important;
    margin:8px 0 0!important;
    box-shadow:none!important;
}

#gcr-review-form input:focus,
#gcr-review-form select:focus,
#gcr-review-form textarea:focus,
.gcr-review-form-wrap input:focus,
.gcr-review-form-wrap select:focus,
.gcr-review-form-wrap textarea:focus{
    border-color:rgba(158,240,26,.65)!important;
    box-shadow:0 0 0 3px rgba(158,240,26,.12)!important;
    outline:none!important;
}

#gcr-review-form button[type='submit'],
.gcr-review-form-wrap button[type='submit']{
    background:var(--gcr-bc-green)!important;
    color:#0c0d0a!important;
    border:0!important;
    border-radius:12px!important;
    font-weight:800!important;
    height:52px!important;
    font-size:15px!important;
    transition:.18s ease!important;
}

#gcr-review-form button[type='submit']:hover,
.gcr-review-form-wrap button[type='submit']:hover{
    background:var(--gcr-bc-cream)!important;
    transform:translateY(-1px);
}

#gcr-review-form input[type='file'],
.gcr-review-form-wrap input[type='file']{
    background:var(--gcr-bc-card)!important;
    border:1px dashed rgba(158,240,26,.42)!important;
    color:var(--gcr-bc-muted)!important;
    border-radius:10px!important;
}

.gcr-success-message{
    background:rgba(158,240,26,.12)!important;
    color:var(--gcr-bc-green)!important;
    border:1px solid rgba(158,240,26,.35)!important;
}

@media(max-width:680px){
    .gcr-header{
        flex-direction:column!important;
        align-items:stretch!important;
    }

    .gcr-summary{
        justify-content:flex-start!important;
    }

    .gcr-filters{
        display:grid!important;
        grid-template-columns:1fr!important;
    }

    .gcr-filters select{
        width:100%!important;
    }

    .gcr-item,
    .gcr-budclub-review-card{
        padding:14px!important;
    }

    .gcr-avatar{
        width:34px!important;
        height:34px!important;
        min-width:34px!important;
        font-size:12px!important;
    }
}


/* ==========================================================================
   v1.2.14 BudClub plugin-owned review summary/header polish
   This belongs to the plugin because [reviews_list] generates the header.
   ========================================================================== */

.gcr-wrap .gcr-budclub-summary-header{
	display:grid!important;
	grid-template-columns:minmax(118px, 160px) minmax(0, 1fr) auto!important;
	align-items:center!important;
	gap:18px!important;
	width:100%!important;
	padding:18px 20px!important;
	margin:0 0 18px!important;
	background:linear-gradient(160deg,#141611,#10120d)!important;
	border:1px solid #2a2e22!important;
	border-radius:16px!important;
	box-shadow:inset 0 0 0 1px rgba(244,243,236,.025)!important;
}

.gcr-wrap .gcr-header-title,
.gcr-wrap .gcr-budclub-summary-header .title{
	color:#f4f3ec!important;
	font-size:12px!important;
	line-height:1.15!important;
	letter-spacing:2px!important;
	font-weight:800!important;
	text-transform:uppercase!important;
	max-width:140px!important;
}

.gcr-wrap .gcr-header-summary{
	min-width:0!important;
}

.gcr-wrap .gcr-header-summary .gcr-summary{
	display:flex!important;
	align-items:center!important;
	justify-content:flex-start!important;
	gap:18px!important;
	margin:0!important;
	padding:0!important;
	background:transparent!important;
	border:0!important;
	box-shadow:none!important;
}

.gcr-wrap .gcr-header-summary .gcr-average{
	display:flex!important;
	align-items:center!important;
	gap:16px!important;
	margin:0!important;
	padding:0!important;
}

.gcr-wrap .gcr-header-summary .gcr-average-number{
	font-family:'Anton',Impact,sans-serif!important;
	font-size:58px!important;
	line-height:.9!important;
	font-weight:400!important;
	letter-spacing:.5px!important;
	color:#9ef01a!important;
	min-width:78px!important;
	text-align:left!important;
}

.gcr-wrap .gcr-header-summary .gcr-stars{
	display:flex!important;
	align-items:center!important;
	color:#d4af37!important;
	font-size:18px!important;
	line-height:1!important;
	letter-spacing:1.5px!important;
	white-space:nowrap!important;
	margin:0!important;
}

.gcr-wrap .gcr-header-summary .gcr-star{
	color:#d4af37!important;
	margin-right:1px!important;
}

.gcr-wrap .gcr-header-summary .gcr-count{
	color:#9aa08c!important;
	font-size:13px!important;
	line-height:1.25!important;
	margin:0!important;
	max-width:120px!important;
}

.gcr-wrap .gcr-budclub-summary-header .gcr-header-action{
	display:flex!important;
	align-items:center!important;
	justify-content:flex-end!important;
	min-width:max-content!important;
}

.gcr-wrap .gcr-budclub-summary-header .gcr-write-btn{
	display:inline-flex!important;
	align-items:center!important;
	justify-content:center!important;
	min-width:145px!important;
	height:46px!important;
	padding:0 18px!important;
	background:rgba(158,240,26,.08)!important;
	border:1px solid rgba(158,240,26,.55)!important;
	border-radius:999px!important;
	color:#9ef01a!important;
	font-size:13px!important;
	line-height:1!important;
	font-weight:800!important;
	text-decoration:none!important;
	white-space:nowrap!important;
	box-shadow:none!important;
	transition:background .18s ease,color .18s ease,border-color .18s ease!important;
}

.gcr-wrap .gcr-budclub-summary-header .gcr-write-btn:hover{
	background:#9ef01a!important;
	color:#0c0d0a!important;
	border-color:#9ef01a!important;
}

@media(max-width:760px){
	.gcr-wrap .gcr-budclub-summary-header{
		grid-template-columns:1fr!important;
		gap:14px!important;
		padding:16px!important;
	}

	.gcr-wrap .gcr-header-title,
	.gcr-wrap .gcr-budclub-summary-header .title{
		max-width:none!important;
	}

	.gcr-wrap .gcr-header-summary .gcr-average-number{
		font-size:50px!important;
		min-width:68px!important;
	}

	.gcr-wrap .gcr-header-summary .gcr-average{
		gap:13px!important;
	}

	.gcr-wrap .gcr-header-summary .gcr-stars{
		font-size:16px!important;
	}

	.gcr-wrap .gcr-header-summary .gcr-count{
		max-width:none!important;
		font-size:13px!important;
	}

	.gcr-wrap .gcr-budclub-summary-header .gcr-header-action{
		justify-content:stretch!important;
	}

	.gcr-wrap .gcr-budclub-summary-header .gcr-write-btn{
		width:100%!important;
		min-width:0!important;
	}
}


/* ==========================================================================
   v1.2.15 BudClub mobile product-review card alignment
   Keeps desktop unchanged and fixes name / verified / date alignment on mobile.
   ========================================================================== */

@media(max-width:680px){
	.gcr-wrap .gcr-item,
	.gcr-wrap .gcr-budclub-review-card{
		display:grid!important;
		grid-template-columns:40px minmax(0, 1fr)!important;
		gap:12px!important;
		align-items:flex-start!important;
		padding:14px!important;
	}

	.gcr-wrap .gcr-avatar{
		grid-column:1!important;
		grid-row:1!important;
		width:36px!important;
		height:36px!important;
		min-width:36px!important;
		font-size:12px!important;
		margin-top:2px!important;
	}

	.gcr-wrap .gcr-meta{
		grid-column:2!important;
		min-width:0!important;
		width:100%!important;
	}

	.gcr-wrap .gcr-header-row{
		display:flex!important;
		flex-direction:row!important;
		align-items:flex-start!important;
		justify-content:space-between!important;
		gap:8px!important;
		width:100%!important;
		margin:0 0 8px!important;
		text-align:left!important;
	}

	.gcr-wrap .gcr-name-wrap{
		display:flex!important;
		flex-direction:row!important;
		align-items:center!important;
		justify-content:flex-start!important;
		gap:6px!important;
		flex-wrap:wrap!important;
		min-width:0!important;
		text-align:left!important;
	}

	.gcr-wrap .gcr-name{
		font-size:13px!important;
		line-height:1.2!important;
		text-align:left!important;
		white-space:normal!important;
	}

	.gcr-wrap .gcr-verified{
		font-size:11px!important;
		line-height:1.2!important;
		white-space:nowrap!important;
	}

	.gcr-wrap .gcr-date{
		flex:0 0 auto!important;
		margin:0!important;
		font-size:11px!important;
		line-height:1.2!important;
		text-align:right!important;
		white-space:nowrap!important;
		color:#9aa08c!important;
	}

	.gcr-wrap .gcr-rating{
		display:flex!important;
		justify-content:flex-start!important;
		align-items:center!important;
		margin:8px 0 6px!important;
		text-align:left!important;
	}

	.gcr-wrap .gcr-order-number{
		text-align:left!important;
		margin:0 0 7px!important;
	}

	.gcr-wrap .gcr-text{
		text-align:left!important;
		margin:0!important;
	}

	.gcr-wrap .gcr-text p{
		text-align:left!important;
	}
}

@media(max-width:380px){
	.gcr-wrap .gcr-header-row{
		flex-direction:column!important;
		align-items:flex-start!important;
		gap:4px!important;
	}

	.gcr-wrap .gcr-date{
		text-align:left!important;
	}
}


/* ==========================================================================
   v1.2.16 BudClub review header responsive no-overlap fix
   The single product review area can be narrow even on desktop, so the header
   must wrap based on available container space, not only viewport width.
   ========================================================================== */

.gcr-wrap .gcr-budclub-summary-header{
	display:flex!important;
	flex-wrap:wrap!important;
	align-items:center!important;
	justify-content:space-between!important;
	gap:14px 18px!important;
	width:100%!important;
	overflow:hidden!important;
}

.gcr-wrap .gcr-budclub-summary-header .gcr-header-title{
	flex:0 1 145px!important;
	min-width:118px!important;
	max-width:150px!important;
}

.gcr-wrap .gcr-budclub-summary-header .gcr-header-summary{
	flex:1 1 240px!important;
	min-width:220px!important;
	max-width:100%!important;
}

.gcr-wrap .gcr-budclub-summary-header .gcr-header-action{
	flex:0 0 auto!important;
	margin-left:auto!important;
	position:relative!important;
	z-index:1!important;
}

.gcr-wrap .gcr-budclub-summary-header .gcr-summary,
.gcr-wrap .gcr-budclub-summary-header .gcr-average{
	min-width:0!important;
	max-width:100%!important;
}

.gcr-wrap .gcr-budclub-summary-header .gcr-average{
	display:flex!important;
	align-items:center!important;
	gap:14px!important;
}

.gcr-wrap .gcr-budclub-summary-header .gcr-average-number{
	flex:0 0 auto!important;
	min-width:70px!important;
}

.gcr-wrap .gcr-budclub-summary-header .gcr-average > span{
	min-width:0!important;
	display:flex!important;
	flex-direction:column!important;
	gap:5px!important;
}

.gcr-wrap .gcr-budclub-summary-header .gcr-stars{
	max-width:100%!important;
	overflow:hidden!important;
	text-overflow:clip!important;
}

.gcr-wrap .gcr-budclub-summary-header .gcr-count{
	max-width:none!important;
	white-space:normal!important;
	text-align:left!important;
}

/* Container-query version for modern browsers: fixes narrow desktop columns. */
.gcr-wrap{
	container-type:inline-size;
}

@container (max-width: 520px){
	.gcr-wrap .gcr-budclub-summary-header{
		display:grid!important;
		grid-template-columns:1fr auto!important;
		align-items:center!important;
		gap:12px!important;
		padding:16px!important;
	}

	.gcr-wrap .gcr-budclub-summary-header .gcr-header-title{
		grid-column:1 / 2!important;
		min-width:0!important;
		max-width:none!important;
	}

	.gcr-wrap .gcr-budclub-summary-header .gcr-header-summary{
		grid-column:1 / -1!important;
		min-width:0!important;
		width:100%!important;
	}

	.gcr-wrap .gcr-budclub-summary-header .gcr-header-action{
		grid-column:2 / 3!important;
		grid-row:1 / 2!important;
		margin-left:0!important;
		justify-self:end!important;
	}

	.gcr-wrap .gcr-budclub-summary-header .gcr-write-btn{
		min-width:118px!important;
		height:42px!important;
		padding:0 14px!important;
		font-size:12px!important;
	}

	.gcr-wrap .gcr-budclub-summary-header .gcr-average-number{
		font-size:50px!important;
		min-width:62px!important;
	}

	.gcr-wrap .gcr-budclub-summary-header .gcr-stars{
		font-size:16px!important;
		letter-spacing:1px!important;
	}

	.gcr-wrap .gcr-budclub-summary-header .gcr-count{
		font-size:12px!important;
		line-height:1.25!important;
	}
}

@container (max-width: 390px){
	.gcr-wrap .gcr-budclub-summary-header{
		grid-template-columns:1fr!important;
	}

	.gcr-wrap .gcr-budclub-summary-header .gcr-header-action{
		grid-column:1 / -1!important;
		grid-row:auto!important;
		justify-self:stretch!important;
	}

	.gcr-wrap .gcr-budclub-summary-header .gcr-write-btn{
		width:100%!important;
	}
}


/* ==========================================================================
   v1.2.17 BudClub desktop review header stacked structure
   Desktop target:
   WHAT BUYERS SAY
   4.9 + stars                                Based on ___ reviews
   Write A Review
   ========================================================================== */

@media(min-width:761px){
	.gcr-wrap .gcr-budclub-summary-header{
		display:grid!important;
		grid-template-columns:1fr auto!important;
		grid-template-rows:auto auto auto!important;
		align-items:center!important;
		gap:12px 20px!important;
		padding:22px 26px!important;
		min-height:150px!important;
		overflow:visible!important;
	}

	.gcr-wrap .gcr-budclub-summary-header .gcr-header-title{
		grid-column:1 / -1!important;
		grid-row:1!important;
		justify-self:center!important;
		text-align:center!important;
		max-width:none!important;
		width:auto!important;
		flex:none!important;
		color:#f4f3ec!important;
		font-size:13px!important;
		line-height:1!important;
		letter-spacing:2.2px!important;
		font-weight:900!important;
	}

	.gcr-wrap .gcr-budclub-summary-header .gcr-header-summary{
		grid-column:1 / -1!important;
		grid-row:2!important;
		width:100%!important;
		min-width:0!important;
		max-width:none!important;
		flex:none!important;
	}

	.gcr-wrap .gcr-budclub-summary-header .gcr-summary{
		width:100%!important;
		display:block!important;
		margin:0!important;
		padding:0!important;
		background:transparent!important;
		border:0!important;
		box-shadow:none!important;
	}

	.gcr-wrap .gcr-budclub-summary-header .gcr-average{
		width:100%!important;
		display:grid!important;
		grid-template-columns:auto minmax(120px,1fr) auto!important;
		align-items:center!important;
		gap:14px!important;
		margin:0!important;
		padding:0!important;
	}

	.gcr-wrap .gcr-budclub-summary-header .gcr-average-number{
		grid-column:1!important;
		font-size:62px!important;
		line-height:.9!important;
		min-width:82px!important;
		text-align:left!important;
	}

	.gcr-wrap .gcr-budclub-summary-header .gcr-average > span{
		display:contents!important;
	}

	.gcr-wrap .gcr-budclub-summary-header .gcr-stars{
		grid-column:2!important;
		justify-self:start!important;
		align-self:center!important;
		font-size:20px!important;
		letter-spacing:2px!important;
		line-height:1!important;
		white-space:nowrap!important;
		overflow:visible!important;
	}

	.gcr-wrap .gcr-budclub-summary-header .gcr-count{
		grid-column:3!important;
		justify-self:end!important;
		align-self:center!important;
		text-align:right!important;
		max-width:none!important;
		white-space:nowrap!important;
		font-size:14px!important;
		line-height:1.25!important;
		color:#b4baa7!important;
	}

	.gcr-wrap .gcr-budclub-summary-header .gcr-header-action{
		grid-column:1 / -1!important;
		grid-row:3!important;
		justify-self:center!important;
		margin:0!important;
		min-width:0!important;
		position:static!important;
		z-index:auto!important;
	}

	.gcr-wrap .gcr-budclub-summary-header .gcr-write-btn{
		min-width:178px!important;
		height:48px!important;
		padding:0 24px!important;
		font-size:14px!important;
		border-radius:999px!important;
	}
}

/* For medium/narrow product columns on desktop, keep the same structure but
   allow the count to wrap softly instead of overlapping. */
@container (min-width:521px) and (max-width:680px){
	.gcr-wrap .gcr-budclub-summary-header .gcr-average{
		grid-template-columns:auto minmax(90px,1fr) auto!important;
		gap:10px!important;
	}

	.gcr-wrap .gcr-budclub-summary-header .gcr-average-number{
		font-size:56px!important;
		min-width:72px!important;
	}

	.gcr-wrap .gcr-budclub-summary-header .gcr-stars{
		font-size:17px!important;
		letter-spacing:1px!important;
	}

	.gcr-wrap .gcr-budclub-summary-header .gcr-count{
		font-size:12px!important;
		white-space:normal!important;
		max-width:110px!important;
	}
}


/* ==========================================================================
   v1.2.18 BudClub exact desktop review header structure
   Target:
   WHAT BUYERS SAY
   4.9      stars      Based on ___ reviews
             Write A Review
   ========================================================================== */

@media(min-width:761px){
	.gcr-wrap .gcr-budclub-summary-header{
		display:grid!important;
		grid-template-columns:1fr!important;
		grid-template-rows:auto auto auto!important;
		justify-items:center!important;
		align-items:center!important;
		gap:16px!important;
		padding:24px 28px!important;
		min-height:178px!important;
		background:linear-gradient(160deg,#11130e,#0c0d0a)!important;
		border:1px solid #2a2e22!important;
		border-radius:16px!important;
		overflow:visible!important;
	}

	.gcr-wrap .gcr-budclub-summary-header .gcr-header-title{
		grid-column:1!important;
		grid-row:1!important;
		justify-self:center!important;
		text-align:center!important;
		width:100%!important;
		max-width:none!important;
		min-width:0!important;
		margin:0!important;
		color:#f4f3ec!important;
		font-size:15px!important;
		line-height:1!important;
		letter-spacing:3px!important;
		font-weight:900!important;
		text-transform:uppercase!important;
	}

	.gcr-wrap .gcr-budclub-summary-header .gcr-header-summary{
		grid-column:1!important;
		grid-row:2!important;
		width:100%!important;
		min-width:0!important;
		max-width:100%!important;
		margin:0!important;
		padding:0!important;
	}

	.gcr-wrap .gcr-budclub-summary-header .gcr-summary{
		display:block!important;
		width:100%!important;
		margin:0!important;
		padding:0!important;
		background:transparent!important;
		border:0!important;
		box-shadow:none!important;
	}

	.gcr-wrap .gcr-budclub-summary-header .gcr-average{
		display:grid!important;
		grid-template-columns:auto minmax(110px,1fr) auto!important;
		align-items:center!important;
		width:100%!important;
		max-width:540px!important;
		margin:0 auto!important;
		gap:22px!important;
	}

	.gcr-wrap .gcr-budclub-summary-header .gcr-average-number{
		grid-column:1!important;
		justify-self:start!important;
		align-self:center!important;
		min-width:0!important;
		font-family:'Anton',Impact,sans-serif!important;
		font-size:70px!important;
		font-weight:400!important;
		line-height:.86!important;
		letter-spacing:1px!important;
		color:#9ef01a!important;
		text-align:left!important;
	}

	.gcr-wrap .gcr-budclub-summary-header .gcr-average > span{
		display:contents!important;
	}

	.gcr-wrap .gcr-budclub-summary-header .gcr-stars{
		grid-column:2!important;
		justify-self:start!important;
		align-self:center!important;
		margin:0!important;
		color:#d4af37!important;
		font-size:22px!important;
		line-height:1!important;
		letter-spacing:2px!important;
		white-space:nowrap!important;
		overflow:visible!important;
	}

	.gcr-wrap .gcr-budclub-summary-header .gcr-star{
		color:#d4af37!important;
	}

	.gcr-wrap .gcr-budclub-summary-header .gcr-count{
		grid-column:3!important;
		justify-self:end!important;
		align-self:center!important;
		margin:0!important;
		max-width:none!important;
		color:#b4baa7!important;
		font-size:15px!important;
		line-height:1.25!important;
		text-align:right!important;
		white-space:nowrap!important;
	}

	.gcr-wrap .gcr-budclub-summary-header .gcr-header-action{
		grid-column:1!important;
		grid-row:3!important;
		justify-self:center!important;
		align-self:center!important;
		margin:2px 0 0!important;
		min-width:0!important;
		width:auto!important;
		position:static!important;
	}

	.gcr-wrap .gcr-budclub-summary-header .gcr-write-btn{
		display:inline-flex!important;
		align-items:center!important;
		justify-content:center!important;
		min-width:210px!important;
		height:54px!important;
		padding:0 30px!important;
		border-radius:999px!important;
		border:2px solid rgba(158,240,26,.72)!important;
		background:rgba(158,240,26,.03)!important;
		color:#9ef01a!important;
		font-size:15px!important;
		line-height:1!important;
		font-weight:900!important;
		text-decoration:none!important;
	}

	.gcr-wrap .gcr-budclub-summary-header .gcr-write-btn:hover{
		background:#9ef01a!important;
		border-color:#9ef01a!important;
		color:#0c0d0a!important;
	}
}

/* Keep the exact structure but compress it for narrower desktop columns. */
@container (min-width:521px) and (max-width:680px){
	.gcr-wrap .gcr-budclub-summary-header{
		padding:22px 20px!important;
		min-height:168px!important;
		gap:14px!important;
	}

	.gcr-wrap .gcr-budclub-summary-header .gcr-header-title{
		font-size:13px!important;
		letter-spacing:2.4px!important;
	}

	.gcr-wrap .gcr-budclub-summary-header .gcr-average{
		max-width:460px!important;
		grid-template-columns:auto minmax(80px,1fr) auto!important;
		gap:14px!important;
	}

	.gcr-wrap .gcr-budclub-summary-header .gcr-average-number{
		font-size:62px!important;
	}

	.gcr-wrap .gcr-budclub-summary-header .gcr-stars{
		font-size:18px!important;
		letter-spacing:1px!important;
	}

	.gcr-wrap .gcr-budclub-summary-header .gcr-count{
		font-size:13px!important;
		white-space:normal!important;
		max-width:130px!important;
	}

	.gcr-wrap .gcr-budclub-summary-header .gcr-write-btn{
		min-width:180px!important;
		height:48px!important;
		font-size:13px!important;
	}
}


/* ==========================================================================
   v1.2.19 BudClub review header grouped alignment fix
   Keeps rating number, stars, and count together as one centered row instead
   of spreading them awkwardly across the full card.
   ========================================================================== */

@media(min-width:761px){
	.gcr-wrap .gcr-budclub-summary-header{
		display:grid!important;
		grid-template-columns:1fr!important;
		grid-template-rows:auto auto auto!important;
		justify-items:center!important;
		align-items:center!important;
		gap:15px!important;
		padding:22px 24px!important;
		min-height:170px!important;
		overflow:visible!important;
	}

	.gcr-wrap .gcr-budclub-summary-header .gcr-header-title{
		grid-column:1!important;
		grid-row:1!important;
		justify-self:center!important;
		text-align:center!important;
		width:100%!important;
		max-width:none!important;
		margin:0!important;
		font-size:14px!important;
		line-height:1!important;
		letter-spacing:2.8px!important;
		font-weight:900!important;
	}

	.gcr-wrap .gcr-budclub-summary-header .gcr-header-summary{
		grid-column:1!important;
		grid-row:2!important;
		width:auto!important;
		max-width:100%!important;
		min-width:0!important;
		justify-self:center!important;
		margin:0!important;
		padding:0!important;
	}

	.gcr-wrap .gcr-budclub-summary-header .gcr-summary{
		display:block!important;
		width:auto!important;
		max-width:100%!important;
		margin:0 auto!important;
		padding:0!important;
		background:transparent!important;
		border:0!important;
		box-shadow:none!important;
	}

	.gcr-wrap .gcr-budclub-summary-header .gcr-average{
		display:grid!important;
		grid-template-columns:auto auto auto!important;
		justify-content:center!important;
		align-items:center!important;
		width:auto!important;
		max-width:100%!important;
		margin:0 auto!important;
		gap:18px!important;
	}

	.gcr-wrap .gcr-budclub-summary-header .gcr-average-number{
		grid-column:1!important;
		justify-self:end!important;
		align-self:center!important;
		min-width:0!important;
		font-family:'Anton',Impact,sans-serif!important;
		font-size:68px!important;
		line-height:.86!important;
		letter-spacing:.5px!important;
		text-align:right!important;
		color:#9ef01a!important;
	}

	.gcr-wrap .gcr-budclub-summary-header .gcr-average > span{
		display:contents!important;
	}

	.gcr-wrap .gcr-budclub-summary-header .gcr-stars{
		grid-column:2!important;
		justify-self:center!important;
		align-self:center!important;
		margin:0!important;
		font-size:20px!important;
		line-height:1!important;
		letter-spacing:1.7px!important;
		white-space:nowrap!important;
		overflow:visible!important;
		color:#d4af37!important;
		transform:translateY(1px);
	}

	.gcr-wrap .gcr-budclub-summary-header .gcr-count{
		grid-column:3!important;
		justify-self:start!important;
		align-self:center!important;
		margin:0!important;
		max-width:150px!important;
		font-size:14px!important;
		line-height:1.25!important;
		text-align:left!important;
		white-space:normal!important;
		color:#b4baa7!important;
	}

	.gcr-wrap .gcr-budclub-summary-header .gcr-header-action{
		grid-column:1!important;
		grid-row:3!important;
		justify-self:center!important;
		align-self:center!important;
		margin:0!important;
		width:auto!important;
		min-width:0!important;
		position:static!important;
	}

	.gcr-wrap .gcr-budclub-summary-header .gcr-write-btn{
		min-width:190px!important;
		height:50px!important;
		padding:0 28px!important;
		font-size:14px!important;
		border-radius:999px!important;
	}
}

/* Narrow desktop/product-column compression: keep same structure, just tighter. */
@container (min-width:521px) and (max-width:680px){
	.gcr-wrap .gcr-budclub-summary-header{
		padding:20px 18px!important;
		min-height:164px!important;
		gap:13px!important;
	}

	.gcr-wrap .gcr-budclub-summary-header .gcr-header-title{
		font-size:13px!important;
		letter-spacing:2.4px!important;
	}

	.gcr-wrap .gcr-budclub-summary-header .gcr-average{
		gap:12px!important;
	}

	.gcr-wrap .gcr-budclub-summary-header .gcr-average-number{
		font-size:62px!important;
	}

	.gcr-wrap .gcr-budclub-summary-header .gcr-stars{
		font-size:17px!important;
		letter-spacing:1px!important;
	}

	.gcr-wrap .gcr-budclub-summary-header .gcr-count{
		font-size:12px!important;
		max-width:104px!important;
	}

	.gcr-wrap .gcr-budclub-summary-header .gcr-write-btn{
		min-width:178px!important;
		height:48px!important;
		font-size:13px!important;
	}
}

/* Very narrow mobile/card columns: stack safely to avoid any overlap. */
@container (max-width:520px){
	.gcr-wrap .gcr-budclub-summary-header{
		display:grid!important;
		grid-template-columns:1fr!important;
		justify-items:center!important;
		text-align:center!important;
		gap:12px!important;
		padding:18px 14px!important;
	}

	.gcr-wrap .gcr-budclub-summary-header .gcr-header-title,
	.gcr-wrap .gcr-budclub-summary-header .gcr-header-summary,
	.gcr-wrap .gcr-budclub-summary-header .gcr-header-action{
		grid-column:1 / -1!important;
		width:100%!important;
		justify-self:center!important;
	}

	.gcr-wrap .gcr-budclub-summary-header .gcr-average{
		display:grid!important;
		grid-template-columns:auto auto!important;
		grid-template-rows:auto auto!important;
		justify-content:center!important;
		align-items:center!important;
		gap:8px 12px!important;
		width:100%!important;
	}

	.gcr-wrap .gcr-budclub-summary-header .gcr-average-number{
		grid-column:1!important;
		grid-row:1!important;
		font-size:54px!important;
		text-align:right!important;
	}

	.gcr-wrap .gcr-budclub-summary-header .gcr-stars{
		grid-column:2!important;
		grid-row:1!important;
		font-size:16px!important;
		text-align:left!important;
	}

	.gcr-wrap .gcr-budclub-summary-header .gcr-count{
		grid-column:1 / -1!important;
		grid-row:2!important;
		justify-self:center!important;
		text-align:center!important;
		max-width:none!important;
		font-size:12px!important;
	}

	.gcr-wrap .gcr-budclub-summary-header .gcr-write-btn{
		width:auto!important;
		min-width:168px!important;
	}
}


/* ==========================================================================
   v1.2.20 BudClub single-product review header exact 3-row layout
   Row 1: WHAT BUYERS SAY
   Row 2: 4.9 + stars + Based on ___ reviews  (horizontal)
   Row 3: Write A Review
   ========================================================================== */

@media (min-width: 761px){
	.gcr-wrap .gcr-budclub-summary-header{
		display:grid !important;
		grid-template-columns:1fr !important;
		grid-template-rows:auto auto auto !important;
		justify-items:center !important;
		align-items:center !important;
		gap:16px !important;
		padding:24px 26px !important;
		min-height:170px !important;
		overflow:visible !important;
	}

	.gcr-wrap .gcr-budclub-summary-header .gcr-header-title{
		grid-column:1 !important;
		grid-row:1 !important;
		justify-self:center !important;
		align-self:center !important;
		width:100% !important;
		margin:0 !important;
		text-align:center !important;
		font-size:14px !important;
		line-height:1 !important;
		letter-spacing:2.8px !important;
		font-weight:900 !important;
		text-transform:uppercase !important;
	}

	.gcr-wrap .gcr-budclub-summary-header .gcr-header-summary{
		grid-column:1 !important;
		grid-row:2 !important;
		width:auto !important;
		max-width:100% !important;
		min-width:0 !important;
		justify-self:center !important;
		margin:0 !important;
		padding:0 !important;
	}

	.gcr-wrap .gcr-budclub-summary-header .gcr-summary{
		display:block !important;
		width:auto !important;
		margin:0 auto !important;
		padding:0 !important;
		background:transparent !important;
		border:0 !important;
		box-shadow:none !important;
	}

	/* Force one horizontal alignment row */
	.gcr-wrap .gcr-budclub-summary-header .gcr-average{
		display:flex !important;
		flex-direction:row !important;
		flex-wrap:nowrap !important;
		align-items:center !important;
		justify-content:center !important;
		gap:16px !important;
		width:auto !important;
		max-width:100% !important;
		margin:0 auto !important;
	}

	.gcr-wrap .gcr-budclub-summary-header .gcr-average-number{
		flex:0 0 auto !important;
		margin:0 !important;
		min-width:0 !important;
		font-family:'Anton', Impact, sans-serif !important;
		font-size:68px !important;
		line-height:.88 !important;
		letter-spacing:.5px !important;
		text-align:center !important;
		color:#9ef01a !important;
	}

	/* This wrapper contains stars + count */
	.gcr-wrap .gcr-budclub-summary-header .gcr-average > span{
		display:flex !important;
		flex-direction:row !important;
		flex-wrap:nowrap !important;
		align-items:center !important;
		justify-content:center !important;
		gap:14px !important;
		min-width:0 !important;
	}

	.gcr-wrap .gcr-budclub-summary-header .gcr-stars{
		display:inline-flex !important;
		flex:0 0 auto !important;
		align-items:center !important;
		margin:0 !important;
		font-size:20px !important;
		line-height:1 !important;
		letter-spacing:1.6px !important;
		white-space:nowrap !important;
		color:#d4af37 !important;
	}

	.gcr-wrap .gcr-budclub-summary-header .gcr-star{
		color:#d4af37 !important;
	}

	.gcr-wrap .gcr-budclub-summary-header .gcr-count{
		display:inline-block !important;
		flex:0 0 auto !important;
		margin:0 !important;
		max-width:none !important;
		font-size:14px !important;
		line-height:1.2 !important;
		text-align:left !important;
		white-space:nowrap !important;
		color:#b4baa7 !important;
	}

	.gcr-wrap .gcr-budclub-summary-header .gcr-header-action{
		grid-column:1 !important;
		grid-row:3 !important;
		justify-self:center !important;
		align-self:center !important;
		margin:0 !important;
		width:auto !important;
		min-width:0 !important;
		position:static !important;
	}

	.gcr-wrap .gcr-budclub-summary-header .gcr-write-btn{
		display:inline-flex !important;
		align-items:center !important;
		justify-content:center !important;
		min-width:180px !important;
		height:50px !important;
		padding:0 28px !important;
		border-radius:999px !important;
		font-size:14px !important;
		line-height:1 !important;
		font-weight:900 !important;
	}
}

/* Narrow desktop safety */
@container (min-width:521px) and (max-width:680px){
	.gcr-wrap .gcr-budclub-summary-header{
		padding:20px 18px !important;
		gap:14px !important;
	}

	.gcr-wrap .gcr-budclub-summary-header .gcr-average{
		gap:12px !important;
	}

	.gcr-wrap .gcr-budclub-summary-header .gcr-average-number{
		font-size:60px !important;
	}

	.gcr-wrap .gcr-budclub-summary-header .gcr-average > span{
		gap:10px !important;
	}

	.gcr-wrap .gcr-budclub-summary-header .gcr-stars{
		font-size:17px !important;
		letter-spacing:1px !important;
	}

	.gcr-wrap .gcr-budclub-summary-header .gcr-count{
		font-size:12px !important;
	}
}


/* ==========================================================================
   v1.2.21 BudClub mobile Write A Review button center alignment
   Keeps desktop 3-row layout unchanged.
   ========================================================================== */
@media(max-width:760px){
	.gcr-wrap .gcr-budclub-summary-header .gcr-header-action{
		width:100%!important;
		display:flex!important;
		align-items:center!important;
		justify-content:center!important;
		text-align:center!important;
		margin:0 auto!important;
	}

	.gcr-wrap .gcr-budclub-summary-header .gcr-write-btn{
		width:auto!important;
		min-width:180px!important;
		max-width:260px!important;
		margin:0 auto!important;
		justify-content:center!important;
		text-align:center!important;
	}
}

@container(max-width:520px){
	.gcr-wrap .gcr-budclub-summary-header .gcr-header-action{
		width:100%!important;
		display:flex!important;
		align-items:center!important;
		justify-content:center!important;
		justify-self:center!important;
		text-align:center!important;
		margin:0 auto!important;
	}

	.gcr-wrap .gcr-budclub-summary-header .gcr-write-btn{
		width:auto!important;
		min-width:180px!important;
		max-width:260px!important;
		margin:0 auto!important;
	}
}
