★Black Friday Sale★San Martin 39.5mm Intentionally Distressed Men's Vintage Style Watch SN0116G-V6 San Martin Watch san martin watchSan Martin Watch
★Black Friday Sale★San Martin 39.5mm Intentionally Distressed Men's Vintage Style Watch SN0116G-V6 San Martin Watch san martin watchSan Martin Watch
★Black Friday Sale★San Martin 39.5mm Intentionally Distressed Men's Vintage Style Watch SN0116G-V6 San Martin Watch san martin watchSan Martin Watch
★Black Friday Sale★San Martin 39.5mm Intentionally Distressed Men's Vintage Style Watch SN0116G-V6 San Martin Watch san martin watchSan Martin Watch
★Black Friday Sale★San Martin 39.5mm Intentionally Distressed Men's Vintage Style Watch SN0116G-V6 San Martin Watch san martin watchSan Martin Watch
★Black Friday Sale★San Martin 39.5mm Intentionally Distressed Men's Vintage Style Watch SN0116G-V6 San Martin Watch san martin watchSan Martin Watch
★Black Friday Sale★San Martin 39.5mm Intentionally Distressed Men's Vintage Style Watch SN0116G-V6 San Martin Watch san martin watchSan Martin Watch
★Black Friday Sale★San Martin 39.5mm Intentionally Distressed Men's Vintage Style Watch SN0116G-V6 San Martin Watch san martin watchSan Martin Watch
★Black Friday Sale★San Martin 39.5mm Intentionally Distressed Men's Vintage Style Watch SN0116G-V6 San Martin Watch san martin watchSan Martin Watch
★Black Friday Sale★San Martin 39.5mm Intentionally Distressed Men's Vintage Style Watch SN0116G-V6 San Martin Watch san martin watchSan Martin Watch
★Black Friday Sale★San Martin 39.5mm Intentionally Distressed Men's Vintage Style Watch SN0116G-V6 San Martin Watch san martin watchSan Martin Watch
★Black Friday Sale★San Martin 39.5mm Intentionally Distressed Men's Vintage Style Watch SN0116G-V6 San Martin Watch san martin watchSan Martin Watch
★Black Friday Sale★San Martin 39.5mm Intentionally Distressed Men's Vintage Style Watch SN0116G-V6 San Martin Watch san martin watchSan Martin Watch
★Black Friday Sale★San Martin 39.5mm Intentionally Distressed Men's Vintage Style Watch SN0116G-V6 San Martin Watch san martin watchSan Martin Watch
★Black Friday Sale★San Martin 39.5mm Intentionally Distressed Men's Vintage Style Watch SN0116G-V6 San Martin Watch san martin watchSan Martin Watch
★Black Friday Sale★San Martin 39.5mm Intentionally Distressed Men's Vintage Style Watch SN0116G-V6 San Martin Watch san martin watchSan Martin Watch
★Black Friday Sale★San Martin 39.5mm Intentionally Distressed Men's Vintage Style Watch SN0116G-V6 San Martin Watch san martin watchSan Martin Watch
★Black Friday Sale★San Martin 39.5mm Intentionally Distressed Men's Vintage Style Watch SN0116G-V6 San Martin Watch san martin watchSan Martin Watch
★Black Friday Sale★San Martin 39.5mm Intentionally Distressed Men's Vintage Style Watch SN0116G-V6 San Martin Watch san martin watchSan Martin Watch
★Black Friday Sale★San Martin 39.5mm Intentionally Distressed Men's Vintage Style Watch SN0116G-V6 San Martin Watch san martin watchSan Martin Watch
★Black Friday Sale★San Martin 39.5mm Intentionally Distressed Men's Vintage Style Watch SN0116G-V6 San Martin Watch san martin watchSan Martin Watch
★Black Friday Sale★San Martin 39.5mm Intentionally Distressed Men's Vintage Style Watch SN0116G-V6 San Martin Watch san martin watchSan Martin Watch
★Black Friday Sale★San Martin 39.5mm Intentionally Distressed Men's Vintage Style Watch SN0116G-V6 San Martin Watch san martin watchSan Martin Watch
★Black Friday Sale★San Martin 39.5mm Intentionally Distressed Men's Vintage Style Watch SN0116G-V6 San Martin Watch san martin watchSan Martin Watch

★Black Friday Sale★San Martin 39.5mm Intentionally Distressed Men's Vintage Style Watch SN0116G-V6

8 sold
$236.00
$458.00
-48%
Color-Retro Dark Blue
Please select a color
Band-Leather Strap
Please select a band
Quantity
Fast & Free Delivery
Secure payments
100% Original Products
Easy Returns
Vendor by: san martin watch
/** @private {string} */ class SpzCustomAnchorScroll extends SPZ.BaseElement { static deferredMount() { return false; } constructor(element) { super(element); /** @private {Element} */ this.scrollableContainer_ = null; } isLayoutSupported(layout) { return layout == SPZCore.Layout.LOGIC; } buildCallback() { this.viewport_ = this.getViewport(); this.initActions_(); } setTarget(containerId, targetId) { this.containerId = '#' + containerId; this.targetId = '#' + targetId; } scrollToTarget() { const container = document.querySelector(this.containerId); const target = container.querySelector(this.targetId); const {scrollTop} = container; const eleOffsetTop = this.getOffsetTop_(target, container); this.viewport_ .interpolateScrollIntoView_( container, scrollTop, scrollTop + eleOffsetTop ); } initActions_() { this.registerAction( 'scrollToTarget', (invocation) => this.scrollToTarget(invocation?.caller) ); this.registerAction( 'setTarget', (invocation) => this.setTarget(invocation?.args?.containerId, invocation?.args?.targetId) ); } /** * @param {Element} element * @param {Element} container * @return {number} * @private */ getOffsetTop_(element, container) { if (!element./*OK*/ getClientRects().length) { return 0; } const rect = element./*OK*/ getBoundingClientRect(); if (rect.width || rect.height) { return rect.top - container./*OK*/ getBoundingClientRect().top; } return rect.top; } } SPZ.defineElement('spz-custom-anchor-scroll', SpzCustomAnchorScroll); const STRENGTHEN_TRUST_URL = "/api/strengthen_trust/settings"; class SpzCustomStrengthenTrust extends SPZ.BaseElement { constructor(element) { super(element); this.renderElement_ = null; } isLayoutSupported(layout) { return layout == SPZCore.Layout.CONTAINER; } buildCallback() { this.xhr_ = SPZServices.xhrFor(this.win); const renderId = this.element.getAttribute('render-id'); SPZCore.Dom.waitForChild( document.body, () => !!document.getElementById(renderId), () => { this.renderElement_ = SPZCore.Dom.scopedQuerySelector( document.body, `#${renderId}` ); if (this.renderElement_) { this.render_(); } this.registerAction('track', (invocation) => { this.track_(invocation.args); }); } ); } render_() { this.fetchData_().then((data) => { if (!data) { return; } SPZ.whenApiDefined(this.renderElement_).then((apis) => { apis?.render(data); document.querySelector('#strengthen-trust-render-1539149753700').addEventListener('click',(event)=>{ if(event.target.nodeName == 'A'){ this.track_({type: 'trust_content_click'}); } }) }); }); } track_(data = {}) { const track = window.sa && window.sa.track; if (!track) { return; } track('trust_enhancement_event', data); } parseJSON_(string) { let result = {}; try { result = JSON.parse(string); } catch (e) {} return result; } fetchData_() { return this.xhr_ .fetchJson(STRENGTHEN_TRUST_URL) .then((responseData) => { if (!responseData || !responseData.data) { return null; } const data = responseData.data; const moduleSettings = (data.module_settings || []).reduce((result, moduleSetting) => { return result.concat(Object.assign(moduleSetting, { logos: (moduleSetting.logos || []).map((item) => { return moduleSetting.logos_type == 'custom' ? this.parseJSON_(item) : item; }) })); }, []); return Object.assign(data, { module_settings: moduleSettings, isEditor: window.self !== window.top, }); }); } } SPZ.defineElement('spz-custom-strengthen-trust', SpzCustomStrengthenTrust);

Please be aware that this watch is designed with an intentional aged look on the dial, hands, and bezel, reflecting a vintage style. 
This design is not a flaw but a deliberate aesthetic choice.
Refunds or exchanges based on the 'aged appearance' will not be accepted, as this is a key feature of the watch.

Watch Specification:
Model: SN0116-6
Movement: NH34 [Automatic Mechanical Movement]
Top Hat Sapphire Glass: With AR Coating
24 Clicks Distressed Aluminum Bidirectional Bezel: Black & Red brown/ Red & Blue Color
Dial: Vintage Black Dial / Vintage Dark Blue, With Applied 3D Hexagon San Martin Logo And Applied Indices, With 6H Date Window
GMT 4 Hands Set: With Luminous Coating
Luminous Effect: Retro SLN C3 Green Light, On Hands And Markers
Screw-Down Crown: With 3D Hexagon San Martin Logo
Screw-Down Case Back: Brushed Process, No Logo
316L Solid Stainless Steel Beads Of Rice Bracelet: With On The Fly Adjustable Folding Clasp, With 3D San Martin Hexagon Logo
Water Resistant: 10Bar=100meters
Watch Dimension:
Case: Diameter - 39.5mm
Lug To Lug - 46.5mm
Thickness - 12.2mm
Band Width - 20mm
Band Length - Bracelet 190mm/7.48in
Weight: About 135g
Our Service
Warranty:2years
Returns policy: Please check the website“Return / Exchange / Warranty Policy”
Style: automatic watch, dive watch, luxury watch
Package: watch, box, warranty card

Service Support

We process orders within 2-3 days from Monday to Friday (excluding holidays). Please note that this timeframe does not apply to pre-sale orders or orders requiring extended processing due to special circumstances. For more details, please refer to our shipping regulations.

Orders at sanmartin.watch qualify for free shipping based on the following criteria. Orders totaling $120 or more will receive free standard shipping, while orders totaling $200 or more will receive free FedEx express delivery . Customers have the option to choose their preferred shipping method. Please note that customers are responsible for any applicable VAT/duties. For details regarding exceptions in remote zip codes or unserved areas, please contact sales@sanmartin.watch.

Yes, there is a 30-day return period for each order after receiving the package. You can request a return within the specified time, but please ensure that the watch remains in its original, unopened condition. (The protective film of the watch has not been removed.)Prior to returning the watch, please contact us, and the buyer will be responsible for the cost of return shipping. Thank you for choosing us.

Contact us within twelve hours after checkout, send your order number and the information that you modified, we will modify it to the correct information for you.

Customer Service Center Email: sales@sanmartin.watch

Yes, you can cancel your order before it ships. Orders cannot be canceled if more than 24 hours have passed since the order was placed. Please note that cancellations due to personal reasons may incur PayPal transaction fees (if applicable), which are non-refundable and are subject to PayPal's 2021 revised policies.

Please note that a 5% cancellation fee will be deducted from the refund for the pre-order cancellation. It is the transaction fees charged by our Payment Processing Platform like Stripe/PayPal.

For any inquiries or assistance, please contact our Customer Service Center at sales@sanmartin.watch.