*{margin:0;padding:0;box-sizing:border-box}
body{font-family:'Noto Sans JP',sans-serif;color:#1a1a1a;background:#fff;-webkit-font-smoothing:antialiased;line-height:1.7}
a{text-decoration:none;color:inherit}
img{max-width:100%;height:auto;display:block}
button{cursor:pointer;font-family:inherit}

.topbar{position:sticky;top:0;z-index:900;background:#fff;border-bottom:1px solid #e8e8e8}
.topbar_in{max-width:1200px;margin:0 auto;display:flex;align-items:center;justify-content:space-between;padding:0 24px;height:58px}
.topbar_logo{
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    max-width: 150px;
}
.topbar_logo img{display:block}
.topbar_nav{display:flex;gap:32px}
.topbar_nav a{font-size:13px;color:#444;font-weight:500;letter-spacing:0.02em;transition:color .2s}
.topbar_nav a:hover{color:#2a7f85}
.topbar_acts{display:flex;align-items:center;gap:16px}
.cart_toggle{position:relative;cursor:pointer;padding:6px}
.cart_toggle i{font-size:20px;color:#333}
.cart_badge{position:absolute;top:-2px;right:-6px;background:#c0392b;color:#fff;font-size:10px;font-weight:700;width:18px;height:18px;border-radius:50%;display:none;align-items:center;justify-content:center}
.mob_toggle{display:none;flex-direction:column;gap:5px;padding:8px;cursor:pointer}
.mob_toggle span{width:20px;height:2px;background:#333;display:block}
.mob_menu{display:none;position:fixed;top:58px;left:0;width:100%;background:#fff;z-index:899;box-shadow:0 8px 30px rgba(0,0,0,0.08);transform:translateY(-100%);transition:transform .3s}
.mob_menu.mob_open{display:block;transform:translateY(0)}
.mob_menu_in{padding:16px 24px;display:flex;flex-direction:column;gap:0}
.mob_menu_in a{padding:14px 0;border-bottom:1px solid #f0f0f0;font-size:15px;color:#333}

.hero{position:relative;min-height:520px;display:flex;align-items:center;justify-content:flex-start;background:url('../assets/dsc_pool-terrace.webp') center/cover no-repeat #2c4a52}
.hero_shade{position:absolute;inset:0;background:linear-gradient(135deg,rgba(15,25,30,0.72) 0%,rgba(15,25,30,0.35) 100%)}
.hero_body{position:relative;z-index:2;max-width:1200px;width:100%;margin:0 auto;padding:80px 24px}
.hero h1{font-size:clamp(28px,4.5vw,48px);color:#fff;font-weight:900;line-height:1.25;letter-spacing:-0.02em;margin-bottom:18px}
.hero_lead{font-size:clamp(14px,1.6vw,17px);color:rgba(255,255,255,0.82);font-weight:300;margin-bottom:32px;max-width:520px;line-height:1.8}
.btn_primary{display:inline-block;background:#2a7f85;color:#fff;font-size:14px;font-weight:600;padding:13px 34px;border:2px solid #2a7f85;border-radius:3px;transition:all .25s;letter-spacing:0.03em}
.btn_primary:hover{background:#1e6268;border-color:#1e6268}
button.btn_primary{font-size:14px}
.btn_outline{display:inline-block;color:#2a7f85;font-size:14px;font-weight:600;padding:12px 32px;border:2px solid #2a7f85;border-radius:3px;background:transparent;transition:all .25s}
.btn_outline:hover{background:#2a7f85;color:#fff}
.btn_ghost{display:inline-block;background:none;border:1px solid #ccc;color:#666;padding:10px 22px;border-radius:3px;font-size:13px;transition:all .2s}
.btn_ghost:hover{border-color:#999;color:#333}
.btn_light{display:inline-block;background:rgba(255,255,255,0.15);color:#fff;border:1px solid rgba(255,255,255,0.4);padding:12px 30px;border-radius:3px;font-size:14px;font-weight:500;transition:all .25s;backdrop-filter:blur(4px)}
.btn_light:hover{background:rgba(255,255,255,0.25)}

.sec_title{font-size:clamp(22px,2.8vw,30px);font-weight:800;text-align:center;margin-bottom:16px;letter-spacing:-0.02em;color:#1a1a1a}
.sec_intro{text-align:center;color:#666;font-size:14px;line-height:1.9;max-width:600px;margin:0 auto 48px}

.why_sec{padding:72px 0 64px;background:#fafaf9}
.why_wrap{max-width:1100px;margin:0 auto;padding:0 24px}
.why_grid{display:flex;flex-direction:column;gap:0}
.why_item{display:flex;gap:36px;align-items:center;padding:36px 0;border-bottom:1px solid #e8e8e8;opacity:0;transform:translateY(20px);transition:opacity .5s,transform .5s}
.why_item.in_view{opacity:1;transform:translateY(0)}
.why_item:last-child{border-bottom:none}
.why_item:nth-child(even){flex-direction:row-reverse}
.why_item img{width:280px;height:200px;object-fit:cover;border-radius:4px;flex-shrink:0}
.why_txt h3{font-size:18px;font-weight:700;margin-bottom:10px;color:#1a1a1a}
.why_txt p{font-size:14px;color:#555;line-height:1.85}

.products_sec{padding:72px 0 60px}
.products_wrap{max-width:1200px;margin:0 auto;padding:0 24px}
.prod_grid{display:grid;grid-template-columns:repeat(3,1fr);gap:24px;margin-top:40px}
.prod_card{background:#fff;border:1px solid #eaeaea;border-radius:4px;overflow:hidden;transition:transform .3s,box-shadow .3s,opacity .5s;opacity:0;transform:translateY(20px)}
.prod_card.in_view{opacity:1;transform:translateY(0)}
.prod_card:hover{transform:translateY(-4px);box-shadow:0 12px 36px rgba(0,0,0,0.08)}
.prod_img{aspect-ratio:4/3;overflow:hidden;background:#f5f5f3}
.prod_img img{width:100%;height:100%;object-fit:cover;transition:transform .4s}
.prod_card:hover .prod_img img{transform:scale(1.04)}
.prod_info{padding:18px 20px 20px}
.prod_tag{display:inline-block;font-size:11px;font-weight:600;color:#2a7f85;background:#e8f5f5;padding:3px 10px;border-radius:2px;margin-bottom:10px;letter-spacing:0.04em}
.prod_info h3{font-size:15px;font-weight:700;margin-bottom:6px;line-height:1.4}
.prod_desc{font-size:12.5px;color:#777;line-height:1.6;margin-bottom:14px}
.prod_bottom{display:flex;align-items:center;justify-content:space-between;gap:10px}
.prod_price{font-size:18px;font-weight:800;color:#1a1a1a;letter-spacing:-0.02em}
.prod_price small{font-size:12px;font-weight:400;color:#999}
.btn_cart{display:inline-flex;align-items:center;gap:6px;background:#2a7f85;color:#fff;border:none;padding:8px 16px;border-radius:3px;font-size:12px;font-weight:600;transition:background .2s}
.btn_cart:hover{background:#1e6268}
.btn_cart_added{background:#27ae60}

.reviews_sec{padding:72px 0 60px;background:#fafaf9}
.reviews_wrap{max-width:1200px;margin:0 auto;padding:0 24px}
.rev_grid{display:grid;grid-template-columns:repeat(3,1fr);gap:20px;margin-top:40px}
.rev_card{background:#fff;border:1px solid #eaeaea;border-radius:4px;overflow:hidden;opacity:0;transform:translateY(20px);transition:opacity .5s,transform .5s}
.rev_card.in_view{opacity:1;transform:translateY(0)}
.rev_prod_img{height:180px;overflow:hidden;background:#f5f5f3}
.rev_prod_img img{width:100%;height:100%;object-fit:cover}
.rev_body{padding:18px 20px 22px}
.rev_stars{margin-bottom:10px;display:flex;gap:2px}
.rev_stars i{color:#e8a838;font-size:13px}
.rev_body p{font-size:13px;color:#555;line-height:1.8;margin-bottom:12px}
.rev_author{font-size:12px;color:#999;font-weight:500}

.gallery_sec{padding:72px 0 60px}
.gallery_wrap{max-width:1200px;margin:0 auto;padding:0 24px}
.gal_grid{display:grid;grid-template-columns:repeat(4,1fr);grid-auto-rows:220px;gap:12px;margin-top:40px}
.gal_item{overflow:hidden;border-radius:4px;opacity:0;transform:translateY(16px);transition:opacity .45s,transform .45s}
.gal_item.in_view{opacity:1;transform:translateY(0)}
.gal_item img{width:100%;height:100%;object-fit:cover;transition:transform .5s}
.gal_item:hover img{transform:scale(1.06)}
.gal_wide{grid-column:span 2}
.gal_more{text-align:center;margin-top:36px}

.article_sec{padding:72px 0 60px;background:#fafaf9}
.article_wrap{max-width:1100px;margin:0 auto;padding:0 24px;display:flex;gap:40px;align-items:flex-start}
.article_img{flex:0 0 380px;border-radius:4px;overflow:hidden}
.article_img img{width:100%;height:auto;object-fit:cover}
.article_body{flex:1}
.article_tag{display:inline-block;font-size:11px;font-weight:700;color:#2a7f85;text-transform:uppercase;letter-spacing:0.1em;margin-bottom:14px}
.article_body h2{font-size:clamp(20px,2.5vw,26px);font-weight:800;margin-bottom:20px;line-height:1.4;letter-spacing:-0.01em}
.article_body p{font-size:14px;color:#555;line-height:1.9;margin-bottom:16px}
.article_body p:last-child{margin-bottom:0}

.about_sec{position:relative;min-height:420px;display:flex;align-items:center;background:url('../assets/picture_team-outdoor.webp') center/cover no-repeat #2c3e50}
.about_shade{position:absolute;inset:0;background:rgba(15,20,25,0.75)}
.about_body{position:relative;z-index:2;max-width:680px;padding:60px 24px;margin:0 auto;text-align:center}
.about_body h2{font-size:clamp(22px,3vw,30px);font-weight:800;color:#fff;margin-bottom:20px}
.about_body p{font-size:14px;color:rgba(255,255,255,0.78);line-height:1.9;margin-bottom:16px}
.about_body .btn_light{margin-top:12px}

.faq_sec{padding:72px 0 60px}
.faq_wrap{max-width:760px;margin:0 auto;padding:0 24px}
.faq_list{margin-top:36px}
.faq_item{border-bottom:1px solid #e8e8e8;opacity:0;transform:translateY(12px);transition:opacity .4s,transform .4s}
.faq_item.in_view{opacity:1;transform:translateY(0)}
.faq_q{display:flex;align-items:center;justify-content:space-between;padding:20px 0;cursor:pointer;gap:16px}
.faq_q span{font-size:15px;font-weight:600;color:#1a1a1a;flex:1}
.faq_q i{font-size:18px;color:#999;transition:transform .3s}
.faq_item.faq_open .faq_q i{transform:rotate(45deg);color:#2a7f85}
.faq_a{max-height:0;overflow:hidden;transition:max-height .35s ease,padding .35s}
.faq_item.faq_open .faq_a{max-height:300px;padding-bottom:20px}
.faq_a p{font-size:14px;color:#666;line-height:1.85}

.contact_sec{padding:72px 0 64px;background:#f5f4f2}
.contact_wrap{max-width:1100px;margin:0 auto;padding:0 24px;display:flex;gap:48px}
.contact_info{flex:0 0 340px}
.contact_info h2{font-size:clamp(22px,2.8vw,28px);font-weight:800;margin-bottom:14px}
.contact_info>p{font-size:14px;color:#666;line-height:1.85;margin-bottom:28px}
.contact_details{display:flex;flex-direction:column;gap:14px}
.contact_details div{display:flex;align-items:flex-start;gap:10px;font-size:13px;color:#555}
.contact_details i{color:#2a7f85;font-size:16px;margin-top:2px;flex-shrink:0}
.contact_form_wrap{flex:1}
.field_row{display:flex;gap:16px}
.field_group{display:flex;flex-direction:column;gap:6px;margin-bottom:18px;width:100%}
.field_group label{font-size:12.5px;font-weight:600;color:#444}
.field_group input,
.field_group textarea{border:1px solid #d5d5d5;border-radius:3px;padding:11px 14px;font-size:14px;font-family:inherit;transition:border-color .2s;background:#fff;width:100%;resize:vertical}
.field_group input:focus,
.field_group textarea:focus{outline:none;border-color:#2a7f85}
.field_check{flex-direction:row;align-items:center;gap:8px}
.field_check input[type="checkbox"]{width:16px;height:16px;accent-color:#2a7f85}
.field_check label{font-size:12.5px;color:#666}
.field_check a{color:#2a7f85;text-decoration:underline}

.footer{background:#1a1a1a;color:#aaa;padding:52px 0 0}
.footer_in{max-width:1200px;margin:0 auto;padding:0 24px;display:flex;gap:48px;flex-wrap:wrap}
.ftr_col{flex:1;min-width:160px;display:flex;flex-direction:column;gap:8px}
.ftr_brand{min-width:220px}
.ftr_brand img{margin-bottom:10px;filter:brightness(10)}
.ftr_brand p{font-size:12.5px;line-height:1.7;color:#777}
.ftr_col h4{font-size:12px;font-weight:700;text-transform:uppercase;color:#fff;letter-spacing:0.08em;margin-bottom:6px}
.ftr_col a{font-size:13px;color:#888;transition:color .2s}
.ftr_col a:hover{color:#3ec1c9}
.ftr_col span{font-size:12.5px;color:#777}
.footer_btm{max-width:1200px;margin:0 auto;padding:20px 24px;border-top:1px solid #2a2a2a;margin-top:40px;text-align:center}
.footer_btm span{font-size:11px;color:#555}

.cart_overlay,
.modal_overlay{position:fixed;inset:0;background:rgba(0,0,0,0.45);z-index:1000;opacity:0;pointer-events:none;transition:opacity .3s}
.cart_overlay.vis,
.modal_overlay.vis{opacity:1;pointer-events:auto}
.cart_popup{position:fixed;top:50%;left:50%;transform:translate(-50%,-50%) scale(0.95);width:520px;max-width:94vw;max-height:86vh;background:#fff;border-radius:8px;z-index:1001;display:flex;flex-direction:column;opacity:0;pointer-events:none;transition:transform .3s,opacity .3s;box-shadow:0 20px 60px rgba(0,0,0,0.18)}
.cart_popup.vis{transform:translate(-50%,-50%) scale(1);opacity:1;pointer-events:auto}
.cart_header{display:flex;align-items:center;justify-content:space-between;padding:18px 24px;border-bottom:1px solid #eee}
.cart_header h3{font-size:16px;font-weight:700;display:flex;align-items:center;gap:8px}
.cart_close{background:none;border:none;font-size:18px;color:#999;padding:4px}
.cart_body{flex:1;overflow-y:auto;padding:16px 24px;min-height:120px}
.cart_empty{text-align:center;padding:40px 0;color:#bbb}
.cart_empty i{font-size:40px;margin-bottom:10px;display:block}
.cart_item{display:flex;align-items:center;gap:14px;padding:12px 0;border-bottom:1px solid #f0f0f0}
.cart_item:last-child{border-bottom:none}
.cart_item_img{width:60px;height:60px;border-radius:4px;overflow:hidden;flex-shrink:0;background:#f5f5f3}
.cart_item_img img{width:100%;height:100%;object-fit:cover}
.cart_item_info{flex:1;min-width:0}
.cart_item_name{display:block;font-size:13px;font-weight:600;white-space:nowrap;overflow:hidden;text-overflow:ellipsis}
.cart_item_price{font-size:12px;color:#888}
.cart_item_qty{display:flex;align-items:center;gap:0;border:1px solid #ddd;border-radius:3px;overflow:hidden}
.cart_item_qty button{width:30px;height:30px;border:none;background:#f8f8f8;font-size:14px;color:#555;transition:background .15s}
.cart_item_qty button:hover{background:#eee}
.cart_item_qty span{width:32px;text-align:center;font-size:13px;font-weight:600;height:30px;line-height:30px}
.cart_item_rm{background:none;border:none;color:#ccc;font-size:14px;padding:6px;transition:color .2s}
.cart_item_rm:hover{color:#c0392b}
.cart_footer{padding:16px 24px;border-top:1px solid #eee;display:none}
.cart_total{display:flex;justify-content:space-between;align-items:center;margin-bottom:14px;font-size:15px}
.cart_total strong{font-size:20px;font-weight:800;color:#1a1a1a}
.cart_actions{display:flex;gap:10px;justify-content:flex-end}

.modal_box{position:fixed;top:50%;left:50%;transform:translate(-50%,-50%) scale(0.95);width:560px;max-width:94vw;max-height:88vh;background:#fff;border-radius:8px;z-index:1001;display:flex;flex-direction:column;opacity:0;pointer-events:none;transition:transform .3s,opacity .3s;box-shadow:0 20px 60px rgba(0,0,0,0.2);overflow:hidden}
.modal_box.vis{transform:translate(-50%,-50%) scale(1);opacity:1;pointer-events:auto}
.modal_header{display:flex;align-items:center;justify-content:space-between;padding:18px 24px;border-bottom:1px solid #eee}
.modal_header h3{font-size:16px;font-weight:700}
.modal_header button{background:none;border:none;font-size:18px;color:#999}
.modal_body{flex:1;overflow-y:auto;padding:20px 24px}
.order_items{background:#f9f9f7;border-radius:4px;padding:14px 18px;margin-bottom:24px}
.ord_line{display:flex;justify-content:space-between;font-size:13px;padding:5px 0;color:#555}
.ord_total{border-top:1px solid #ddd;margin-top:8px;padding-top:10px;font-weight:700;color:#1a1a1a}
.order_fields .field_group{margin-bottom:14px}
.modal_footer{padding:16px 24px;border-top:1px solid #eee;display:flex;justify-content:flex-end;gap:10px}

.thankyou_popup{position:fixed;inset:0;background:rgba(0,0,0,0.45);z-index:1100;display:flex;align-items:center;justify-content:center;opacity:0;pointer-events:none;transition:opacity .3s}
.thankyou_popup.vis{opacity:1;pointer-events:auto}
.thankyou_box{background:#fff;border-radius:8px;padding:48px 40px;text-align:center;max-width:400px;width:90%;box-shadow:0 20px 60px rgba(0,0,0,0.15)}
.thankyou_box i{font-size:48px;color:#27ae60;margin-bottom:16px;display:block}
.thankyou_box h3{font-size:20px;font-weight:700;margin-bottom:8px}
.thankyou_box p{font-size:14px;color:#666;margin-bottom:24px;line-height:1.7}

.pg_hero_sm{background:#1a2a2e;padding:56px 24px 48px;text-align:center}
.pg_hero_sm h1{font-size:clamp(24px,3.5vw,34px);font-weight:800;color:#fff;margin-bottom:8px;letter-spacing:-0.02em}
.pg_hero_sm p{font-size:14px;color:rgba(255,255,255,0.6);font-weight:300}

.legal_sec{padding:52px 0 64px}
.legal_wrap{max-width:760px;margin:0 auto;padding:0 24px}
.legal_wrap>p{font-size:14px;color:#555;line-height:1.85;margin-bottom:20px}
.legal_wrap h2{font-size:17px;font-weight:700;color:#1a1a1a;margin:32px 0 10px;padding-bottom:8px;border-bottom:1px solid #eee}

.gp_section{padding:56px 0 48px}
.gp_section.gp_alt{background:#fafaf9}
.gp_wrap{max-width:1200px;margin:0 auto;padding:0 24px}
.gp_heading{font-size:clamp(20px,2.5vw,26px);font-weight:800;margin-bottom:12px;color:#1a1a1a}
.gp_desc{font-size:14px;color:#666;line-height:1.85;margin-bottom:28px;max-width:700px}
.gp_grid{display:grid;grid-template-columns:repeat(4,1fr);grid-auto-rows:210px;gap:10px}
.gp_item{overflow:hidden;border-radius:3px;background:#e8e8e8}
.gp_item img{width:100%;height:100%;object-fit:cover;transition:transform .45s}
.gp_item:hover img{transform:scale(1.05)}
.gp_lg{grid-column:span 2}
.gp_cta_bar{background:#1a2a2e;padding:48px 24px;text-align:center}
.gp_cta_inner h3{font-size:clamp(18px,2.2vw,24px);font-weight:700;color:#fff;margin-bottom:8px}
.gp_cta_inner p{font-size:14px;color:rgba(255,255,255,0.6);margin-bottom:24px}

.sv_section{padding:0}
.sv_section.sv_alt{background:#fafaf9}
.sv_wrap{max-width:1200px;margin:0 auto;padding:0}
.sv_block{display:flex;align-items:stretch;min-height:360px}
.sv_block.sv_reverse{flex-direction:row-reverse}
.sv_img{flex:0 0 45%;overflow:hidden;background:#e0e0e0}
.sv_img img{width:100%;height:100%;object-fit:cover}
.sv_text{flex:1;padding:48px 44px;display:flex;flex-direction:column;justify-content:center}
.sv_num{font-size:13px;font-weight:700;color:#2a7f85;letter-spacing:0.08em;margin-bottom:12px;display:block}
.sv_text h2{font-size:clamp(19px,2.2vw,24px);font-weight:800;margin-bottom:16px;line-height:1.35;color:#1a1a1a}
.sv_text p{font-size:14px;color:#555;line-height:1.85}

.ms_section{position:relative;min-height:400px;display:flex;align-items:center;background-size:cover;background-position:center;background-color:#2c3e50}
.ms_hero_bg{background-image:url('../assets/picture_team-outdoor.webp')}
.ms_overlay{position:absolute;inset:0;background:rgba(15,20,25,0.78)}
.ms_content{position:relative;z-index:2;max-width:720px;padding:60px 24px;margin:0 auto}
.ms_content h2{font-size:clamp(22px,2.8vw,28px);font-weight:800;color:#fff;margin-bottom:18px}
.ms_content p{font-size:14px;color:rgba(255,255,255,0.8);line-height:1.9}
.ms_plain{padding:56px 0 52px}
.ms_plain.ms_vision_bg{background:#fafaf9}
.ms_plain_in{max-width:760px;margin:0 auto;padding:0 24px}
.ms_plain_in h2{font-size:clamp(20px,2.5vw,24px);font-weight:800;margin-bottom:18px;color:#1a1a1a;line-height:1.4}
.ms_plain_in p{font-size:14px;color:#555;line-height:1.9}
.ms_team{padding:56px 0 48px;background:#fff}
.ms_team_in{max-width:1000px;margin:0 auto;padding:0 24px}
.ms_team_in h2{font-size:clamp(20px,2.5vw,24px);font-weight:800;margin-bottom:28px;color:#1a1a1a}
.ms_team_grid{display:flex;gap:32px;align-items:center}
.ms_team_img{flex:0 0 380px;border-radius:4px;overflow:hidden}
.ms_team_img img{width:100%;height:auto}
.ms_team_txt p{font-size:14px;color:#555;line-height:1.9}

.rv_summary{padding:48px 0 40px;background:#fafaf9;border-bottom:1px solid #e8e8e8}
.rv_summary_in{max-width:700px;margin:0 auto;padding:0 24px;display:flex;gap:40px;align-items:center}
.rv_avg{text-align:center;flex-shrink:0}
.rv_avg_num{font-size:52px;font-weight:900;color:#1a1a1a;line-height:1;display:block;font-family:'Cormorant Garamond',serif}
.rv_avg_stars{margin:6px 0;display:flex;gap:2px;justify-content:center}
.rv_avg_stars i{color:#e8a838;font-size:16px}
.rv_avg_count{font-size:12px;color:#999}
.rv_bars{flex:1}
.rv_bar_row{display:flex;align-items:center;gap:8px;margin-bottom:5px;font-size:12px;color:#888}
.rv_bar{flex:1;height:8px;background:#e8e8e8;border-radius:4px;overflow:hidden}
.rv_bar_fill{height:100%;background:#e8a838;border-radius:4px}
.rv_section{padding:48px 0 40px}
.rv_section.rv_section_alt{background:#fafaf9}
.rv_wrap{max-width:900px;margin:0 auto;padding:0 24px}
.rv_cat_title{font-size:clamp(18px,2.2vw,22px);font-weight:800;color:#1a1a1a;margin-bottom:24px;padding-bottom:12px;border-bottom:2px solid #2a7f85}
.rv_list{display:flex;flex-direction:column;gap:0}
.rv_item{display:flex;gap:20px;padding:24px 0;border-bottom:1px solid #eee}
.rv_item:last-child{border-bottom:none}
.rv_item_img{flex:0 0 120px;height:100px;border-radius:4px;overflow:hidden;background:#f0f0f0}
.rv_item_img img{width:100%;height:100%;object-fit:cover}
.rv_item_body{flex:1}
.rv_item_head{display:flex;justify-content:space-between;align-items:flex-start;margin-bottom:6px;flex-wrap:wrap;gap:4px}
.rv_item_head strong{font-size:14px;color:#1a1a1a}
.rv_item_head span{font-size:11.5px;color:#aaa;margin-left:8px}
.rv_item_stars{display:flex;gap:1px}
.rv_item_stars i{color:#e8a838;font-size:12px}
.rv_item_body h4{font-size:13px;font-weight:600;color:#2a7f85;margin-bottom:6px}
.rv_item_body p{font-size:13.5px;color:#555;line-height:1.8}
.rv_item_text_only .rv_item_body{flex:1}

@media(max-width:1024px){
.prod_grid{grid-template-columns:repeat(2,1fr)}
.rev_grid{grid-template-columns:repeat(2,1fr)}
.gal_grid{grid-template-columns:repeat(3,1fr);grid-auto-rows:180px}
.gp_grid{grid-template-columns:repeat(3,1fr);grid-auto-rows:180px}
.article_wrap{flex-direction:column}
.article_img{flex:none;width:100%}
.contact_wrap{flex-direction:column}
.contact_info{flex:none}
.sv_block,.sv_block.sv_reverse{flex-direction:column}
.sv_img{flex:none;height:260px}
.sv_text{padding:32px 24px}
.ms_team_grid{flex-direction:column}
.ms_team_img{flex:none;width:100%}
}

@media(max-width:768px){
.topbar_nav{display:none}
.mob_toggle{display:flex}
.hero{min-height:400px}
.hero_body{padding:60px 20px}
.why_item{flex-direction:column !important;gap:20px;padding:28px 0}
.why_item img{width:100%;height:200px}
.prod_grid{grid-template-columns:1fr 1fr;gap:14px}
.rev_grid{grid-template-columns:1fr}
.gal_grid{grid-template-columns:1fr 1fr;grid-auto-rows:160px}
.gal_wide{grid-column:span 2}
.gp_grid{grid-template-columns:1fr 1fr;grid-auto-rows:160px}
.gp_lg{grid-column:span 2}
.footer_in{flex-direction:column;gap:28px}
.field_row{flex-direction:column;gap:0}
.cart_popup{width:100%;max-width:100%;height:100%;max-height:100%;border-radius:0;top:0;left:0;transform:translate(0,100%)}
.cart_popup.vis{transform:translate(0,0)}
.modal_box{width:100%;max-width:100%;max-height:100%;height:100%;border-radius:0;top:0;left:0;transform:translate(0,100%)}
.modal_box.vis{transform:translate(0,0)}
.rv_summary_in{flex-direction:column;text-align:center;gap:24px}
.rv_item{flex-direction:column;gap:12px}
.rv_item_img{flex:none;width:100%;height:160px}
}

@media(max-width:480px){
.prod_grid{grid-template-columns:1fr;gap:16px}
.gal_grid{grid-template-columns:1fr;grid-auto-rows:200px}
.gal_wide{grid-column:span 1}
.gp_grid{grid-template-columns:1fr;grid-auto-rows:200px}
.gp_lg{grid-column:span 1}
.prod_bottom{flex-direction:column;align-items:flex-start;gap:8px}
.btn_cart{width:100%;justify-content:center}
}
