/* ============================================
   LAS VEGAS DAY THEME
   ============================================ */

/* --- Reset --- */
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, main,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
    margin: 0;
    padding: 0;
    border: 0;
    font-size: 100%;
    font: inherit;
    vertical-align: baseline;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}
article, aside, details, figcaption, figure,
footer, header, main, menu, nav, section {
    display: block;
}
body {
    line-height: 1;
}
ol, ul {
    list-style: none;
}
blockquote, q {
    quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
    content: '';
    content: none;
}
select, input, textarea {
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}
table {
    border-collapse: collapse;
    border-spacing: 0;
}
html {
    font-size: 14px;
}

/* --- Keyframe Animations --- */
@keyframes sunPulse {
    0%, 100% { text-shadow: 0 0 10px rgba(212,160,23,0.6), 0 0 25px rgba(212,160,23,0.3), 0 0 45px rgba(255,107,53,0.2); }
    50% { text-shadow: 0 0 5px rgba(212,160,23,0.4), 0 0 15px rgba(212,160,23,0.2), 0 0 25px rgba(255,107,53,0.1); }
}
@keyframes warmGlow {
    0%, 100% { box-shadow: 0 2px 10px rgba(212,160,23,0.3), 0 0 5px rgba(255,107,53,0.1); }
    50% { box-shadow: 0 2px 20px rgba(212,160,23,0.5), 0 0 10px rgba(255,107,53,0.2); }
}
@keyframes shimmer {
    0% { background-position: -200% center; }
    100% { background-position: 200% center; }
}
@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-6px); }
}
@keyframes gradientShift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}
@keyframes sparkle {
    0%, 100% { opacity: 0.4; }
    50% { opacity: 0.8; }
}
@keyframes heatWave {
    0%, 100% { filter: blur(0px); opacity: 1; }
    50% { filter: blur(0.3px); opacity: 0.97; }
}

/* --- Body & Background --- */
body {
    background: linear-gradient(180deg, #87CEEB 0%, #a8d8ea 25%, #f5e6c8 60%, #f0dcc0 100%);
    background-image:
        radial-gradient(2px 2px at 10% 15%, rgba(212,160,23,0.25) 50%, transparent 50%),
        radial-gradient(1.5px 1.5px at 25% 35%, rgba(255,215,0,0.2) 50%, transparent 50%),
        radial-gradient(2px 2px at 40% 10%, rgba(212,160,23,0.15) 50%, transparent 50%),
        radial-gradient(1.5px 1.5px at 55% 20%, rgba(255,215,0,0.25) 50%, transparent 50%),
        radial-gradient(1px 1px at 70% 8%, rgba(212,160,23,0.2) 50%, transparent 50%),
        radial-gradient(2px 2px at 85% 25%, rgba(255,215,0,0.15) 50%, transparent 50%),
        radial-gradient(1.5px 1.5px at 15% 5%, rgba(212,160,23,0.2) 50%, transparent 50%),
        radial-gradient(1px 1px at 60% 30%, rgba(255,215,0,0.2) 50%, transparent 50%),
        radial-gradient(1.5px 1.5px at 90% 12%, rgba(212,160,23,0.15) 50%, transparent 50%),
        radial-gradient(2px 2px at 5% 28%, rgba(255,215,0,0.2) 50%, transparent 50%),
        radial-gradient(1px 1px at 35% 5%, rgba(212,160,23,0.15) 50%, transparent 50%),
        radial-gradient(1.5px 1.5px at 75% 18%, rgba(255,215,0,0.2) 50%, transparent 50%),
        linear-gradient(180deg, #87CEEB 0%, #a8d8ea 25%, #f5e6c8 60%, #f0dcc0 100%);
    background-attachment: fixed;
    color: #2d1b00;
    font: 14px/1.5 'Montserrat', 'Roboto Condensed Light', Arial, Helvetica, sans-serif;
}

/* --- Utility --- */
.cf:after {
    content: "";
    display: table;
    clear: both;
}

/* --- Alerts --- */
.alert {
    position: relative;
    padding: 15px;
    margin-bottom: 20px;
    border: 1px solid transparent;
    border-radius: 4px;
    background: rgba(255,255,255,0.9);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}
.alert-success {
    color: #16a34a;
    font-size: 18px;
    background: rgba(22,163,74,0.08);
    border-color: rgba(22,163,74,0.3);
    box-shadow: 0 2px 10px rgba(22,163,74,0.1);
}
.alert-danger {
    color: #dc2626;
    background: rgba(220,38,38,0.08);
    border-color: rgba(220,38,38,0.3);
    box-shadow: 0 2px 10px rgba(220,38,38,0.1);
}
.notice {
    background: rgba(255,255,255,0.9);
    padding: 15px;
    margin-bottom: 15px;
    color: #b8860b;
    border-radius: 4px;
    border: 1px solid rgba(212,160,23,0.3);
}

/* --- Links --- */
a {
    color: #0891b2;
}
a:hover, a:focus {
    color: #ff6b35;
    text-decoration: underline;
}

/* --- Layout --- */
.long-wallet {
    word-wrap: break-word;
}
.wrapper {
    display: flex;
    min-height: 100vh;
    flex-direction: column;
}
.content-wrap {
    flex: 1;
    padding-bottom: 15px;
}
.frame {
    width: 1100px;
    max-width: 95%;
    margin: auto;
}
.italic {
    font-style: italic;
}
.ex {
    font-weight: 700;
}

/* --- Transitions --- */
.p-list a,
.make-order a, .add-review a, .more-news,
.logo,
.select-list a,
.balance-btn {
    -o-transition: all .3s ease-out;
    -ms-transition: all .3s ease-out;
    -moz-transition: all .3s ease-out;
    -webkit-transition: all .3s ease-out;
    transition: all .3s ease-out;
}

/* --- Action Buttons --- */
.action-btn {
    display: inline-block;
    vertical-align: top;
    margin: 0 3px;
    background: rgba(255,107,53,0.12);
    color: #ff6b35;
    width: 27px;
    height: 27px;
    line-height: 23px;
    text-align: center;
    border: 1px solid rgba(255,107,53,0.3);
    border-radius: 3px;
    transition: all .3s ease;
}
.action-btn i:before {
    vertical-align: middle;
}
.action-btn:hover,
.action-btn:focus {
    text-decoration: none;
    background: rgba(255,107,53,0.25);
    color: #fff;
    box-shadow: 0 2px 10px rgba(255,107,53,0.25);
}

/* --- Balance Row --- */
.balance-row {
    padding: 10px 0;
    background: rgba(255,255,255,0.9);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    font-size: 14px;
    color: #2d1b00;
    text-align: right;
    text-transform: uppercase;
    border-bottom: 1px solid rgba(0,0,0,0.08);
}
.balance-status {
    color: #16a34a;
    text-shadow: none;
}
.balance,
.balance-row .balance-btn,
.balance-btn {
    display: inline-block;
    vertical-align: middle;
}
.balance-row .balance-btn,
.balance-btn {
    background: linear-gradient(135deg, #d4a017, #b8860b);
    color: #fff;
    font: 600 12px 'Montserrat', Arial, sans-serif;
    padding: 5px 14px;
    margin-right: 4px;
    border-radius: 3px;
    text-transform: uppercase;
    box-shadow: 0 2px 8px rgba(212,160,23,0.3);
}
.balance-row .balance-btn:hover,
.balance-row .balance-btn:focus,
.balance-btn:hover,
.balance-btn:focus {
    text-decoration: none;
    background: linear-gradient(135deg, #b8860b, #d4a017);
    color: #fff;
    box-shadow: 0 4px 15px rgba(212,160,23,0.4);
}

/* --- Header Wrap --- */
.header-wrap {
    background: rgba(255,255,255,0.92);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    color: #2d1b00;
    border-bottom: 2px solid transparent;
    border-image: linear-gradient(90deg, #ff6b35, #d4a017, #0891b2, #ff6b35) 1;
    box-shadow: 0 2px 20px rgba(0,0,0,0.08);
}

/* --- Top Nav --- */
.top-nav {
    text-align: right;
}
.top-nav > li {
    display: inline-block;
    vertical-align: top;
}
.top-nav > li > a {
    color: #6b5b3e;
    text-transform: uppercase;
    font: 600 13px 'Montserrat', Arial, sans-serif;
    letter-spacing: 0.5px;
    padding: 8px 12px;
    transition: all .3s ease;
}
.top-nav > li > a:hover,
.top-nav > li > a:focus {
    background: transparent;
    color: #ff6b35;
    text-shadow: none;
}

/* --- General Header --- */
.general-header {
    padding: 35px 0;
    text-align: center;
}

/* --- Logo --- */
.logo {
    display: inline-block;
    vertical-align: top;
    margin-bottom: 25px;
    text-decoration: none;
}
.logo-text {
    font: italic 700 2.8rem 'Playfair Display', Georgia, serif;
    color: transparent;
    background: linear-gradient(135deg, #ff6b35, #d4a017);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: 3px;
    filter: drop-shadow(0 0 15px rgba(212,160,23,0.3)) drop-shadow(0 0 30px rgba(255,107,53,0.15));
    animation: sunPulse 3s ease-in-out infinite;
}
.logo img {
    max-width: 100%;
}
.logo:hover,
.logo:focus {
    text-decoration: none;
}
.logo:hover .logo-text {
    filter: drop-shadow(0 0 20px rgba(212,160,23,0.5)) drop-shadow(0 0 40px rgba(255,107,53,0.25));
}

/* --- General Nav --- */
.general-nav {
    text-align: center;
}
.general-nav > li {
    display: inline-block;
    vertical-align: top;
    padding-bottom: 5px;
}
.general-nav > li > a {
    display: block;
    text-decoration: none;
    padding: 8px 20px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: #0891b2;
    transition: all .3s ease-out;
    cursor: pointer;
    background: transparent;
    border: 1px solid rgba(0,0,0,0.15);
    font: 600 13px 'Montserrat', Arial, sans-serif;
}
.general-nav > li > a:hover,
.general-nav > li > a:focus {
    color: #fff;
    background: rgba(8,145,178,0.85);
    border-color: #0891b2;
    box-shadow: 0 4px 15px rgba(8,145,178,0.2);
}

/* --- Nav / Dropdown --- */
.nav .open > a, .nav .open > a:hover, .nav .open > a:focus {
    background: rgba(255,107,53,0.1);
    color: #ff6b35;
    border-color: rgba(255,107,53,0.3);
}
.dropdown-menu {
    border: 1px solid rgba(0,0,0,0.1);
    background: rgba(255,255,255,0.97);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: 0 8px 32px rgba(0,0,0,0.12);
    border-radius: 4px;
}
.dropdown-menu > li > a {
    color: #6b5b3e;
    padding: 8px 20px;
    transition: all .2s ease;
}
.dropdown-menu > li > a:hover, .dropdown-menu > li > a:focus {
    background: rgba(8,145,178,0.08);
    outline: 0;
    color: #0891b2;
}

/* --- Lighter accent --- */
.lighter {
    font-size: 1.2em;
    color: #ff6b35;
    text-shadow: none;
}

/* --- Reviews --- */
.review-item {
    text-align: left;
    padding: 15px;
    background: rgba(255,255,255,0.9);
    margin-bottom: 25px;
    border-left: 3px solid #d4a017;
    border-radius: 4px;
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
}
.reply-item {
    padding-left: 6%;
}
.reply-user {
    float: left;
}
.reply-text {
    overflow: hidden;
    padding-left: 15px;
}
.reply-user img {
    width: 60px;
    height: auto;
}
.review-header {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    justify-content: space-between;
    padding-bottom: 10px;
    color: #2d1b00;
    font-size: 17px;
}
.review-date {
    font-size: 0.9em;
    color: #8b7355;
}
.rating {
    position: relative;
    font: 0/0 serif;
    width: 160px; height: 33px;
}
.rating:before,
.rating:after {
    position: absolute;
    top: 0; height: 100%;
    background: url("../images/la.png") repeat-x;
    content: "";
}
.rating:before {
    left: 0;
}
.rating:after {
    right: 0;
    opacity: .35;
}
.rating-1:before,
.rating-4:after {
    width: 20%;
}
.rating-1:after,
.rating-4:before {
    width: 80%;
}
.rating-2:before,
.rating-3:after {
    width: 40%;
}
.rating-2:after,
.rating-3:before {
    width: 60%;
}
.rating-5:before {
    width: 100%;
}
.add-review {
    text-align: center;
    padding: 15px 15px 45px;
}

/* --- Welcome / Error --- */
.welcome,
.error,
.select-list .error {
    display: block;
    width: 100%;
    color: #b8860b;
    font-size: 20px;
    font-weight: bold;
    padding: 25px;
    margin: 0 auto 25px;
    border: 2px solid rgba(212,160,23,0.3);
    background: rgba(255,255,255,0.85);
    border-radius: 4px;
    text-shadow: none;
}
.select-list li + .error,
.error + .error {
    display: none;
}
.select-list .error a {
    background: none transparent;
    display: inline;
    width: auto;
    padding: 0;
}
.error-page {
    padding: 5%;
    text-align: center;
    color: #dc2626;
    font-size: 2.5rem;
    text-shadow: none;
}

/* --- General Title --- */
.general-ttl {
    padding: 25px 0;
    color: #d4a017;
    text-transform: uppercase;
    font: italic 700 2.5rem 'Playfair Display', Georgia, serif;
    text-align: center;
    text-shadow: 0 1px 3px rgba(212,160,23,0.2);
}
.general-ttl a {
    color: #d4a017;
    text-decoration: none;
}
.general-ttl a:hover,
.general-ttl a:focus {
    color: #0891b2;
    text-shadow: none;
}
.general-ttl + .sub-ttl {
    margin-top: -15px;
}
.sub-ttl {
    padding: 0 15px 25px;
    color: #6b5b3e;
    text-align: center;
}

/* --- Home Text / Page Content --- */
.home-text,
.page-content {
    padding: 25px;
    margin-bottom: 15px;
    color: #3d2b10;
    font-size: 1.2rem;
    background: rgba(255,255,255,0.85);
    border-radius: 8px;
    border: 1px solid rgba(0,0,0,0.08);
}
.home-ttl,
.home-text h2,
.home-text h1 {
    font-size: 2rem;
    text-transform: uppercase;
    color: #d4a017;
}
.home-text h3 {
    font-size: 1.75rem;
    color: #d4a017;
}
.home-text h4 {
    font-size: 1.5rem;
    color: #d4a017;
}
.home-text h5 {
    font-size: 1.4rem;
    color: #d4a017;
}
.home-text h6 {
    font-size: 1.3rem;
    color: #d4a017;
}
.home-text h1, .home-text h2, .home-text h3, .home-text h4, .home-text h5, .home-text h6 {
    font-family: 'Playfair Display', "Roboto Condensed Light", serif;
    padding-bottom: 0.6em;
    text-align: left;
}
.home-text p,
.home-text ul,
.home-text ol,
.page-content p,
.page-content ul,
.page-content ol {
    margin-bottom: 15px;
}

/* --- Make Order / CTA Buttons --- */
.make-order {
    padding: 15px 0;
    text-align: center;
}
.make-order a,
.add-review a,
.more-news {
    padding: 12px 30px;
    background: linear-gradient(135deg, #ff6b35, #d4a017);
    color: #fff;
    border: none;
    font: 600 14px 'Montserrat', Arial, sans-serif;
    border-radius: 4px;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 2px;
    transition: all .3s ease-out;
    box-shadow: 0 2px 10px rgba(255,107,53,0.25);
}
.make-order a:hover, .make-order a:focus,
.add-review a:hover, .add-review a:focus,
.more-news:hover, .more-news:focus {
    background: linear-gradient(135deg, #e85d2c, #b8860b);
    color: #fff;
    text-decoration: none;
    box-shadow: 0 4px 20px rgba(255,107,53,0.35), 0 2px 10px rgba(212,160,23,0.25);
    transform: translateY(-1px);
}
.make-order p {
    padding-bottom: 15px;
}

/* --- Blockquote --- */
blockquote {
    padding: 10px 0 10px 30px;
    quotes: "\201C""\201D""\2018""\2019";
    border-left: 3px solid rgba(255,107,53,0.4);
    color: #6b5b3e;
}
blockquote:before {
    font-size: 4em;
    line-height: 0.1em;
    margin-right: 0.25em;
    vertical-align: -0.4em;
    content: open-quote;
    color: #ff6b35;
}

/* --- Breadcrumb --- */
.breadcrumb {
    padding: 10px 0;
    margin-bottom: 20px;
    list-style: none;
    background-color: transparent;
    border-radius: 0;
    font-size: 12px;
}
.breadcrumb > li {
    display: inline-block;
    vertical-align: middle;
    text-shadow: none;
}
.breadcrumb > li + li:before {
    padding: 0 5px;
    color: #a09080;
    content: "\0087";
}
.breadcrumb a {
    color: #8b7355;
    text-decoration: none;
    transition: color .2s ease;
}
.breadcrumb a:hover {
    color: #0891b2;
}
.breadcrumb .active {
    color: #a09080;
}

/* --- Select List (City Cards) --- */
.select-list {
    padding-bottom: 25px;
    text-align: center;
}
.select-list li {
    width: 25%;
    padding: 0 7px 15px;
}
.select-list a {
    position: relative;
    display: block;
    cursor: pointer;
    overflow: hidden;
    text-transform: uppercase;
    padding: 25px 15px;
    color: #2d1b00;
    background: rgba(255,255,255,0.9);
    font: 600 1.2rem 'Montserrat', Arial, sans-serif;
    border: 1px solid rgba(0,0,0,0.1);
    border-radius: 4px;
    transition: all .3s ease;
    letter-spacing: 1px;
}
.select-list a:hover,
.select-list a:focus {
    text-decoration: none;
    color: #ff6b35;
    border-color: rgba(255,107,53,0.4);
    box-shadow: 0 4px 20px rgba(255,107,53,0.15);
    background: rgba(255,255,255,0.95);
}
.select-list a:before,
.select-list a:after,
.select-list a span:before,
.select-list a span:after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    width: 0;
    background-color: rgba(255,107,53,0.06);
    transition: .4s;
}
.select-list a:after,
.select-list a span:before {
    left: auto;
    right: 0;
}
.select-list a span:before,
.select-list a span:after {
    transition-delay: .4s;
}
.select-list a:hover:before,
.select-list a:hover span:after,
.select-list a:hover span:before,
.select-list a:hover:after,
.select-list a:focus:before,
.select-list a:focus span:after,
.select-list a:focus span:before,
.select-list a:focus:after {
    width: 100%;
}

/* --- Product/Select List Flex --- */
.product-list,
.select-list {
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    justify-content: center;
}

/* --- Product Cards --- */
.product-list li {
    position: relative;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    width: 24.5%;
    padding: 0 15px 30px;
    text-align: center;
}
.product-wrap {
    width: 100%; height: 100%;
    padding: 10px;
    text-decoration: none;
    display: block;
    cursor: pointer;
    color: #2d1b00;
    background: rgba(255,255,255,0.9);
    margin-bottom: 10px;
    transition: all .3s ease-out;
    border: 1px solid rgba(0,0,0,0.08);
    border-radius: 6px;
    overflow: hidden;
}
.product-wrap:hover,
.product-wrap:focus {
    text-decoration: none;
    color: #2d1b00;
    transform: translateY(-4px);
    border-color: rgba(255,107,53,0.3);
    box-shadow: 0 8px 30px rgba(0,0,0,0.12);
}
.img-wrap {
    display: block;
    overflow: hidden;
    position: relative;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    border-radius: 4px;
}
.img-wrap:before {
    display: block;
    padding-top: 100%;
    content: "";
}
.img-wrap img {
    position: absolute;
    top: 0; left: 0;
    right: 0; bottom: 0;
    max-width: 100%;
    margin: auto;
}
.product {
    width: 100%;
    padding-bottom: 45px;
}
.product-ttl {
    font: 600 16px 'Montserrat', Arial, Helvetica, sans-serif;
    text-decoration: none;
    padding: 10px 0;
    color: #2d1b00;
}
.price {
    display: block;
    padding-bottom: 10px;
    color: #d4a017;
    font: 700 18px 'Montserrat', Arial, Helvetica, sans-serif;
    text-shadow: 0 1px 3px rgba(212,160,23,0.2);
}
.product-description {
    font-size: 0.9em;
    padding: 10px 0;
    color: #8b7355;
}
.review-qty {
    display: inline-block;
    vertical-align: top;
    background: rgba(255,107,53,0.1);
    color: #ff6b35;
    font: bold 12px 'Montserrat', Arial, Helvetica, sans-serif;
    padding: 8px 15px;
    text-transform: uppercase;
    transition: all .3s ease-out;
    border: 1px solid rgba(255,107,53,0.25);
    border-radius: 3px;
}
.review-qty:hover,
.review-qty:focus {
    color: #fff;
    background: rgba(255,107,53,0.7);
    text-decoration: none;
    box-shadow: 0 2px 10px rgba(255,107,53,0.2);
}

/* --- Posts / Blog --- */
div.post {
    background: rgba(255,255,255,0.85);
    padding: 15px;
    margin-bottom: 25px;
    border: 1px solid rgba(0,0,0,0.08);
    border-radius: 6px;
}
.news-title {
    padding: 15px 0;
    font-weight: bold;
    color: #d4a017;
}
.post img {
    max-width: 100%;
}
a.post {
    color: #3d2b10;
    text-decoration: none;
}
a.post:hover,
a.post:focus {
    color: #0891b2;
    text-decoration: none;
}
.post-meta {
    padding: 10px 0;
    color: #8b7355;
}
.post-meta > li {
    display: inline-block;
    vertical-align: top;
}
.post-meta > li + li {
    padding-left: 10px;
}

/* --- Widgets --- */
.widget {
    padding-bottom: 25px;
}
.widget-title {
    color: #8b7355;
    font-weight: bold;
}

/* --- Order Details --- */
.order-details {
    font-size: 18px;
    padding: 15px 4%;
    color: #2d1b00;
    background: rgba(255,255,255,0.85);
    margin-bottom: 25px;
    border: 1px solid rgba(0,0,0,0.08);
    border-radius: 6px;
}
.order-details span {
    font-size: 23px;
    color: #d4a017;
}
.order-details .lighter {
    font-size: 1.6em;
}

/* --- Forms --- */
.payment-form ::-webkit-input-placeholder,
::-webkit-input-placeholder {
    color: #a09080;
}
.payment-form ::-moz-placeholder,
::-moz-placeholder {
    color: #a09080;
}
.payment-form :-ms-input-placeholder,
:-ms-input-placeholder {
    color: #a09080;
}
.payment-form :-moz-placeholder,
:-moz-placeholder {
    color: #a09080;
}
.content-page {
    font-size: 17px;
    padding: 25px 0;
    margin-bottom: 25px;
    color: #3d2b10;
}
.g-recaptcha > div {
    margin: auto;
    max-width: 100%;
    overflow: hidden;
}
.close {
    position: absolute;
    top: 10px;
    right: 10px;
    color: #dc2626;
    font: 20px Arial, Helvetica, sans-serif;
    cursor: pointer;
    opacity: 1;
    text-shadow: none;
}
.content-page p,
.content-page ul,
.content-page ol {
    padding-bottom: 15px;
}
.content-page ul {
    list-style: inside circle;
}
.content-page ol {
    list-style: inside decimal;
}
.content-page ul li,
.content-page ol li {
    padding-bottom: 10px;
}
.contact-form {
    width: 800px;
    max-width: 100%;
    margin: auto;
    padding-bottom: 25px;
}
.contact-form input:not([type=submit]),
.contact-form textarea {
    width: 100%;
    border: 0;
    padding: 10px 15px;
    background: transparent;
    color: #2d1b00;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    font-size: 16px;
    box-shadow: none;
    border: 0;
    border-bottom: 1px solid #ccc;
    border-radius: 0;
    transition: border-color .3s ease;
}
.contact-form input:not([type=submit]):focus,
.contact-form textarea:focus {
    border-bottom-color: #0891b2;
    box-shadow: 0 1px 0 0 rgba(8,145,178,0.4);
    outline: 0;
}
.form-button {
    text-align: center;
}
.payment-form {
    text-align: center;
    padding: 15px;
    width: 650px;
    max-width: 100%;
    margin: auto;
}
.payment-form .has-error input:focus,
.payment-form input:focus {
    outline: 0;
    box-shadow: 0 0 10px rgba(8,145,178,0.15);
    border-color: #0891b2;
}
.payment-form select,
.payment-form input[type=text],
.payment-form input[type=email],
.payment-form input[type=password],
.payment-form textarea {
    padding: 10px 15px;
    border: 2px solid #ccc;
    background: rgba(255,255,255,0.95);
    color: #2d1b00;
    border-radius: 4px;
    display: block;
    box-shadow: none;
    width: 100%;
    height: auto;
    transition: all .3s ease;
}
.payment-form select:focus,
.payment-form input[type=text]:focus,
.payment-form input[type=email]:focus,
.payment-form input[type=password]:focus,
.payment-form textarea:focus {
    border-color: #0891b2;
    box-shadow: 0 0 10px rgba(8,145,178,0.15);
}
#statusform-verifycode,
#reviewform-verifycode,
#contactform-verifycode,
#signupform-verifycode {
    padding: 13px 15px;
}
.help-block {
    margin: 0;
    padding: 5px 0 0;
    text-align: left;
}
.has-error .help-block {
    color: #dc2626;
}
.has-error .form-control,
.has-error .form-control:focus {
    border-color: rgba(220,38,38,0.5);
    box-shadow: 0 0 8px rgba(220,38,38,0.1);
}
.has-success .form-control,
.has-success .form-control:focus {
    border-color: rgba(22,163,74,0.5);
    box-shadow: 0 0 8px rgba(22,163,74,0.1);
}
.form-control:focus {
    box-shadow: 0 0 10px rgba(8,145,178,0.15);
    border-color: #0891b2;
}
.form-row {
    padding-bottom: 15px;
}
.field-addfundsform-mode > label {
    text-align: left;
    padding-bottom: 15px;
    display: block;
}
#addfundsform-mode label,
.payment-row label {
    display: inline-block;
    vertical-align: top;
    padding: 10px 15px;
    background: rgba(255,107,53,0.1);
    color: #ff6b35;
    font: 600 15px 'Montserrat', Arial, sans-serif;
    margin-bottom: 10px;
    border: 1px solid rgba(255,107,53,0.25);
    border-radius: 3px;
    transition: all .3s ease;
}
.check-col {
    position: relative;
    display: inline-block;
    vertical-align: top;
}
.check-col + .check-col {
    margin-left: 2px;
}
.check-col input {
    position: absolute;
    top: 0; bottom: 0; left: 0;
    margin: auto;
    opacity: 0;
}
.payment-form .check-col label {
    padding: 10px 15px;
    background: rgba(0,0,0,0.04);
    display: block;
    color: #6b5b3e;
    font: 600 15px 'Montserrat', Arial, sans-serif;
    opacity: .5;
    border: 1px solid rgba(0,0,0,0.12);
    border-radius: 3px;
    transition: all .3s ease;
}
.check-col input:checked + label,
.check-col:hover label {
    opacity: 1;
    border-color: #ff6b35;
    color: #ff6b35;
    box-shadow: 0 2px 10px rgba(255,107,53,0.15);
}
.payment-form label {
    padding-right: 10px;
}
.payment-form .radio {
    display: inline-block;
    vertical-align: top;
    margin-top: 10px;
    padding: 7px 15px;
    background: rgba(255,255,255,0.85);
    color: #2d1b00;
    border: 1px solid rgba(0,0,0,0.1);
    border-radius: 3px;
}
.payment-form .field-confirmform-mode > label {
    color: #d4a017;
    text-transform: uppercase;
    font-size: 1.4rem;
    font-weight: bold;
}

/* --- Submit Buttons --- */
.payment-form input[type=submit],
.reload,
.address-form button[type=submit],
.payment-form button[type=submit],
.contact-form input[type=submit],
.contact-form button[type=submit] {
    padding: 12px 30px;
    background: linear-gradient(135deg, #ff6b35, #d4a017);
    color: #fff;
    border: none;
    text-transform: uppercase;
    font: 600 14px 'Montserrat', Arial, Helvetica, sans-serif;
    letter-spacing: 2px;
    transition: all .3s ease-out;
    border-radius: 4px;
    cursor: pointer;
    box-shadow: 0 2px 10px rgba(255,107,53,0.25);
}
.reload {
    display: inline-block;
    vertical-align: top;
    text-decoration: none;
}
.reload-wrap {
    text-align: center;
}
.captcha-img {
    float: left;
    padding-right: 10px;
}
.captcha-input {
    overflow: hidden;
}
.payment-form input[type=submit]:hover,
.payment-form input[type=submit]:focus,
.payment-form button[type=submit]:hover,
.payment-form button[type=submit]:focus,
.address-form button[type=submit]:hover,
.address-form button[type=submit]:focus,
.contact-form button[type=submit]:hover,
.contact-form button[type=submit]:focus,
.reload:focus,
.reload:hover {
    color: #fff;
    outline: 0;
    background: linear-gradient(135deg, #e85d2c, #b8860b);
    box-shadow: 0 4px 20px rgba(255,107,53,0.35), 0 2px 10px rgba(212,160,23,0.25);
    transform: translateY(-1px);
}
.review-list .summary {
    display: none;
}
.summary {
    padding-bottom: 15px;
    color: #8b7355;
}

/* --- Tables --- */
.table .action-column {
    width: 75px;
}
.table-wrap {
    width: 100%;
    overflow: auto;
}
.table-wrap .table {
    max-width: none;
    background: rgba(255,255,255,0.9);
    border: 1px solid rgba(0,0,0,0.08);
}
.table-wrap .table > thead > tr > th {
    background: linear-gradient(135deg, rgba(212,160,23,0.15), rgba(255,107,53,0.1));
    color: #2d1b00;
    vertical-align: middle;
    border-bottom: 1px solid rgba(0,0,0,0.1);
}
.table > thead > tr > th {
    background: linear-gradient(135deg, rgba(212,160,23,0.15), rgba(255,107,53,0.1));
    color: #2d1b00;
    font: 600 14px 'Montserrat', Arial, Helvetica, sans-serif;
    border-bottom: 1px solid rgba(0,0,0,0.1);
}
.table > thead > tr > th > a {
    color: #2d1b00;
}
.table-wrap thead th a {
    color: #2d1b00;
}
.table > tbody > tr {
    background: rgba(255,255,255,0.7);
    border-bottom: 1px solid rgba(0,0,0,0.05);
}
.table > tbody > tr:nth-child(even) {
    background: rgba(245,230,200,0.3);
}
.table > tbody > tr > td {
    color: #3d2b10;
    padding: 10px;
    border-top: 1px solid rgba(0,0,0,0.05);
}
.table > tbody > tr:hover {
    background: rgba(8,145,178,0.05);
}
.table .multi-width {
    min-width: 170px;
}
.responsive-table .table {
    max-width: 100%;
    table-layout: fixed;
    background: rgba(255,255,255,0.9);
}
.responsive-table img {
    max-width: 100%;
}
.table td[data-title="Номер для пополнения"] {
    overflow: hidden;
    text-overflow: ellipsis;
}

/* --- Pagination --- */
.pagination {
    display: block;
    padding-bottom: 15px;
    text-align: center;
    border-radius: 0;
}
.pagination>li {
    display: inline-block;
    vertical-align: top;
}
.pagination>li a {
    padding: 2px 10px;
    display: block;
    cursor: pointer;
    font-size: 1.4rem;
    text-decoration: none;
    background: rgba(255,255,255,0.9);
    border: 1px solid rgba(0,0,0,0.12);
    border-radius: 3px;
    color: #6b5b3e;
    margin: 0 2px;
    transition: all .3s ease;
}
.pagination>.disabled>span, .pagination>.disabled>span:hover, .pagination>.disabled>span:focus, .pagination>.disabled>a, .pagination>.disabled>a:hover, .pagination>.disabled>a:focus {
    opacity: .4;
    text-decoration: none;
    background: rgba(255,255,255,0.5);
    border: 1px solid rgba(0,0,0,0.08);
    border-radius: 3px;
    padding: 2px 10px;
    color: #a09080;
    font-size: 1.4rem;
}
.pagination>.active>a, .pagination>.active>span, .pagination>.active>a:hover, .pagination>.active>span:hover, .pagination>.active>a:focus, .pagination>.active>span:focus {
    padding: 2px 10px;
    font-size: 1.4rem;
    border: 1px solid #ff6b35;
    color: #fff;
    background: #ff6b35;
    box-shadow: 0 2px 8px rgba(255,107,53,0.25);
}
.pagination>li a:hover,
.pagination>li a:focus {
    color: #0891b2;
    background: rgba(8,145,178,0.06);
    border-color: rgba(8,145,178,0.3);
    box-shadow: 0 2px 8px rgba(8,145,178,0.1);
}
.pagination>li:first-child>a, .pagination>li:first-child>span,
.pagination>li:last-child>a, .pagination>li:last-child>span {
    border-radius: 3px;
}

/* --- Big text --- */
.big {
    font-size: 2em;
}
.big-text {
    padding-bottom: 25px;
    font-size: 1.5em;
}

/* --- Footer --- */
.main-footer {
    background: rgba(255,255,255,0.95);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    text-align: center;
    padding: 5px 0;
    border-top: 2px solid transparent;
    border-image: linear-gradient(90deg, #d4a017, #ff6b35, #0891b2, #d4a017) 1;
}
.main-footer a {
    color: #6b5b3e;
    text-transform: uppercase;
    font-size: 12px;
    transition: all .3s ease;
}
.main-footer a:hover,
.main-footer a:focus {
    color: #ff6b35;
    text-decoration: none;
    text-shadow: none;
}
.footer-nav a {
    display: inline-block;
    vertical-align: top;
    padding: 10px;
}

/* --- Tabs / Btn Well / Logout --- */
.tabs-well,
.btn-well {
    padding-bottom: 10px;
}
.tabs-well .tabs-link,
.tabs-well .btn,
.tabs-well .balance-btn,
.btn-well a,
.btn-logout,
.removeItem,
#addItem {
    display: inline-block;
    vertical-align: top;
    padding: 7px 16px;
    margin: 0 5px 5px 0;
    background: rgba(255,107,53,0.1);
    color: #ff6b35;
    border-radius: 3px;
    border: 1px solid rgba(255,107,53,0.25);
    box-shadow: none;
    font: 600 13px 'Montserrat', Arial, sans-serif;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all .3s ease;
}
.tabs-well .btn-success {
    background: rgba(22,163,74,0.1);
    color: #16a34a;
    border-color: rgba(22,163,74,0.25);
}
.tabs-well .tabs-link:hover,
.tabs-well .btn:hover,
.tabs-well .balance-btn:hover,
.tabs-well .tabs-link:focus,
.tabs-well .btn:focus,
.btn-well a:hover,
.btn-well a:focus,
.btn-logout:hover,
.btn-logout:focus,
.removeItem:hover,
.removeItem:focus,
.tabs-well .balance-btn:focus,
#addItem:hover,
#addItem:focus {
    border: 1px solid #ff6b35;
    outline: 0;
    box-shadow: 0 2px 10px rgba(255,107,53,0.2);
    background: rgba(255,107,53,0.18);
    color: #e85d2c;
    text-decoration: none;
}

/* --- Address / Items --- */
#product_items .item,
.address-wrap {
    background: rgba(255,255,255,0.7);
    padding: 15px;
    margin-bottom: 25px;
    border: 1px solid rgba(0,0,0,0.08);
    border-radius: 6px;
}
.address-form .form-body {
    padding-bottom: 20px;
    background: rgba(255,255,255,0.5);
    border-radius: 4px;
}
.address-form .form-group {
    float: left;
    width: 25%;
    padding: 0 10px;
}
.address-form .field-address-1-address_text,
.address-form .field-address-address_text,
.address-form .field-address-1-priority,
.address-form .field-address-priority {
    float: none;
    width: 100%;
}
.qr-code {
    padding-bottom: 15px;
    text-align: center;
}
body .application--wrap {
    min-height: 0;
}
body .theme--light.application {
    background: transparent;
    color: inherit;
}

/* --- Ticket / Admin Info --- */
.ticket-info {
    padding-bottom: 15px;
}
.admin-info {
    padding: 15px;
    background: rgba(255,255,255,0.85);
    font-weight: bold;
    margin-bottom: 15px;
    border: 1px solid rgba(0,0,0,0.08);
    border-radius: 6px;
    color: #3d2b10;
}
.admin-info p,
.admin-info ol,
.admin-info ul {
    padding-bottom: 10px;
}
.admin-info ol {
    list-style: decimal inside;
}
.admin-info strong {
    font-weight: bold;
    color: #d4a017;
}
.admin-info ul {
    list-style: circle inside;
}

/* --- Telegram Bots --- */
.tg-bots a {
    color: #0891b2;
    display: inline-block;
    padding: 4px 10px;
    transition: all .3s ease;
}
.tg-bots a:hover {
    color: #ff6b35;
    text-shadow: none;
    text-decoration: none;
}
.config-index .panel {
    border: 0;
    padding: 10px 15px;
    background: rgba(0, 0, 0, 0.51);
    color: #fff;
}
.config-table th {
    background: rgba(59, 17, 106, 0.81);
    padding: 10px 3px;
}
.config-inline-input input,
.config-select-wrap select  {
    background: rgb(55 21 94);
    border: 0;
    padding: 5px 3px;
    color: #fff;
}
.config-inline-input .btn-primary {
    margin: 2px 0;
}
.config-table tbody tr:nth-child(odd) {
    background: rgba(250, 250, 250, 0.1);
}
/* --- Fonts --- */
@font-face {
    font-family: "Roboto Condensed Light";
    src: url("../fonts/roboto-condensed-light.eot");
    src: url("../fonts/roboto-condensed-light.eot?#iefix") format("embedded-opentype"),
    url("../fonts/roboto-condensed-light.otf") format("opentype"),
    url("../fonts/roboto-condensed-light.svg") format("svg"),
    url("../fonts/roboto-condensed-light.ttf") format("truetype"),
    url("../fonts/roboto-condensed-light.woff") format("woff"),
    url("../fonts/roboto-condensed-light.woff2") format("woff2");
    font-weight: normal;
    font-style: normal;
}
@font-face {
    font-family: "fontello";
    src: url("../fonts/fontello.eot");
    src: url("../fonts/fontello.eot?#iefix") format("embedded-opentype"),
    url("../fonts/fontello.otf") format("opentype"),
    url("../fonts/fontello.svg") format("svg"),
    url("../fonts/fontello.ttf") format("truetype"),
    url("../fonts/fontello.woff") format("woff"),
    url("../fonts/fontello.woff2") format("woff2");
    font-weight: normal;
    font-style: normal;
}
[class^="icon-"]:before, [class*=" icon-"]:before {
    font-family: "fontello";
    font-style: normal;
    font-weight: normal;
    speak: none;
    display: inline-block;
    text-decoration: inherit;
    width: 1em;
    margin-right: .2em;
    text-align: center;
    font-variant: normal;
    text-transform: none;
    line-height: 1em;
    margin-left: .2em;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}
.icon-basket:before { content: '\e800'; }
.icon-award:before { content: '\e801'; }
.icon-login-1:before { content: '\e802'; }
.icon-briefcase:before { content: '\e803'; }
.icon-user:before { content: '\e804'; }
.icon-globe:before { content: '\e805'; }
.icon-location:before { content: '\e806'; }
.icon-dollar:before { content: '\f155'; }
.icon-user-plus:before { content: '\f234'; }
.icon-shopping-basket:before { content: '\f291'; }
.icon-clock:before { content: '\e807'; }
.icon-cancel:before { content: '\e808'; }
.icon-pencil:before { content: '\e809'; }
.icon-reply:before { content: '\f112'; }
.icon-star:before { content: '\e80a'; }
.icon-star-empty:before { content: '\e80b'; }
.icon-paper-plane:before { content: '\e80c'; }

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

@media screen and (max-width: 1040px) {
    .general-header {
        text-align: center;
    }
    .general-nav > li {
        width: 24%;
    }
    .responsive-table .table,
    .responsive-table .table tbody,
    .responsive-table .table thead,
    .responsive-table .table tr,
    .responsive-table .table td,
    .responsive-table .table thead tr.filters {
        display: block;
        width: 100%;
    }
    .responsive-table .table thead tr {
        display: none;
    }
    .responsive-table td[data-title]:before {
        padding-right: 15px;
        font-weight: bold;
        content: attr(data-title);
        color: #d4a017;
    }
    .responsive-table .table-striped > tbody > tr:nth-of-type(odd) {
        background-color: rgba(245,230,200,0.4);
    }
    .responsive-table .table td {
        border: 0;
    }
}
@media screen and (max-width: 900px) {
    .product-list li {
        width: 32.5%;
    }
    .order-details {
        padding-left: 10px;
    }
    .general-nav > li {
        width: 32%;
    }
    .product-wrap:hover,
    .product-wrap:focus {
        box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    }
}
@media screen and (max-width: 790px) {
    .general-nav > li,
    .select-list li {
        width: 49%;
    }
    .address-form .form-group:not(:last-child) {
        width: 50%;
    }
    .logo-text {
        font-size: 2.2rem;
        animation: none;
    }
}
@media screen and (max-width: 650px) {
    .product-list li {
        width: 45.5%;
    }
    .general-ttl {
        font-size: 2rem;
    }
    .general-nav li {
        width: 100%;
    }
    .select-list {
        text-align: center;
    }
    .round-wrap .sukub {
        display: none;
    }
    .address-form .form-group:not(:last-child) {
        width: 100%;
        float: none;
    }
    .review-header {
        text-align: center;
    }
    .rating {
        margin: 10px auto 0;
    }
    .review-action {
        display: block;
    }
    .select-list a:hover,
    .select-list a:focus {
        box-shadow: 0 2px 10px rgba(255,107,53,0.15);
    }
    .make-order a:hover, .make-order a:focus {
        box-shadow: 0 2px 10px rgba(255,107,53,0.2);
        transform: none;
    }
}
@media screen and (max-width: 560px) {
    .general-header {
        padding: 10px 0;
    }
    .general-nav .dropdown-menu {
        position: static;
        width: 100%;
    }
    .select-list li {
        width: 100%;
    }
    .balance-row {
        text-align: center;
    }
    .balance {
        display: block;
        margin-bottom: 5px;
    }
    .top-nav {
        text-align: left;
    }
    .top-nav > li {
        width: 48%;
    }
    .logo-text {
        font-size: 1.8rem;
    }
}
@media screen and (max-width: 480px) {
    .product-list li {
        width: 100%;
    }
    /* Disable all animations on very small screens */
    * {
        animation-duration: 0s !important;
    }
    .product-wrap:hover,
    .product-wrap:focus {
        box-shadow: 0 2px 8px rgba(0,0,0,0.1);
        transform: none;
    }
}
